Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Image.php

class Image

Same name in this branch
  1. 11.1.x vendor/symfony/validator/Constraints/Image.php \Symfony\Component\Validator\Constraints\Image
  2. 11.1.x vendor/symfony/dom-crawler/Image.php \Symfony\Component\DomCrawler\Image
  3. 11.1.x core/lib/Drupal/Core/Image/Image.php \Drupal\Core\Image\Image
  4. 11.1.x core/lib/Drupal/Component/Utility/Image.php \Drupal\Component\Utility\Image
  5. 11.1.x core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Image.php \Drupal\ckeditor5\Plugin\CKEditor5Plugin\Image

Image entity media source.

Hierarchy

  • class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
    • class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
      • class \Drupal\media\MediaSourceBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\media\MediaSourceInterface, \Drupal\Core\Plugin\ContainerFactoryPluginInterface
        • class \Drupal\media\Plugin\media\Source\File extends \Drupal\media\MediaSourceBase
          • class \Drupal\media\Plugin\media\Source\Image extends \Drupal\media\Plugin\media\Source\File

Expanded class hierarchy of Image

See also

\Drupal\Core\Image\ImageInterface

129 string references to 'Image'
banner.component.yml in core/profiles/demo_umami/themes/umami/components/banner/banner.component.yml
core/profiles/demo_umami/themes/umami/components/banner/banner.component.yml
BrowserKitDriver::canSubmitForm in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
BrowserKitDriver::getFormField in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
Returns form field from XPath query.
BrowserKitDriver::getValue in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
Returns element's value by its XPath query.
BrowserKitDriver::mergeForms in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
Merges second form values into first one.

... See full list

File

core/modules/media/src/Plugin/media/Source/Image.php, line 23

Namespace

Drupal\media\Plugin\media\Source
View source
class Image extends File {
    
    /**
     * Key for "image width" metadata attribute.
     *
     * @var string
     */
    const METADATA_ATTRIBUTE_WIDTH = 'width';
    
    /**
     * Key for "image height" metadata attribute.
     *
     * @var string
     */
    const METADATA_ATTRIBUTE_HEIGHT = 'height';
    
    /**
     * The image factory service.
     *
     * @var \Drupal\Core\Image\ImageFactory
     */
    protected $imageFactory;
    
    /**
     * The file system service.
     *
     * @var \Drupal\Core\File\FileSystemInterface
     */
    protected $fileSystem;
    
    /**
     * Constructs a new class instance.
     *
     * @param array $configuration
     *   A configuration array containing information about the plugin instance.
     * @param string $plugin_id
     *   The plugin ID for the plugin instance.
     * @param mixed $plugin_definition
     *   The plugin implementation definition.
     * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
     *   Entity type manager service.
     * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
     *   Entity field manager service.
     * @param \Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_manager
     *   The field type plugin manager service.
     * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
     *   The config factory service.
     * @param \Drupal\Core\Image\ImageFactory $image_factory
     *   The image factory.
     * @param \Drupal\Core\File\FileSystemInterface $file_system
     *   The file system service.
     */
    public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, EntityFieldManagerInterface $entity_field_manager, FieldTypePluginManagerInterface $field_type_manager, ConfigFactoryInterface $config_factory, ImageFactory $image_factory, FileSystemInterface $file_system) {
        parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $entity_field_manager, $field_type_manager, $config_factory);
        $this->imageFactory = $image_factory;
        $this->fileSystem = $file_system;
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
        return new static($configuration, $plugin_id, $plugin_definition, $container->get('entity_type.manager'), $container->get('entity_field.manager'), $container->get('plugin.manager.field.field_type'), $container->get('config.factory'), $container->get('image.factory'), $container->get('file_system'));
    }
    
    /**
     * {@inheritdoc}
     */
    public function getMetadataAttributes() {
        $attributes = parent::getMetadataAttributes();
        $attributes += [
            static::METADATA_ATTRIBUTE_WIDTH => $this->t('Width'),
            static::METADATA_ATTRIBUTE_HEIGHT => $this->t('Height'),
        ];
        return $attributes;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getMetadata(MediaInterface $media, $name) {
        // Get the file and image data.
        
        /** @var \Drupal\file\FileInterface $file */
        $file = $media->get($this->configuration['source_field'])->entity;
        // If the source field is not required, it may be empty.
        if (!$file) {
            return parent::getMetadata($media, $name);
        }
        $uri = $file->getFileUri();
        switch ($name) {
            case static::METADATA_ATTRIBUTE_WIDTH:
                $image = $this->imageFactory
                    ->get($uri);
                return $image->getWidth() ?: NULL;
            case static::METADATA_ATTRIBUTE_HEIGHT:
                $image = $this->imageFactory
                    ->get($uri);
                return $image->getHeight() ?: NULL;
            case 'thumbnail_uri':
                return $uri;
            case 'thumbnail_alt_value':
                return $media->get($this->configuration['source_field'])->alt ?? parent::getMetadata($media, $name);
        }
        return parent::getMetadata($media, $name);
    }
    
    /**
     * {@inheritdoc}
     */
    public function createSourceField(MediaTypeInterface $type) {
        
        /** @var \Drupal\field\FieldConfigInterface $field */
        $field = parent::createSourceField($type);
        // Reset the field to its default settings so that we don't inherit the
        // settings from the parent class' source field.
        $settings = $this->fieldTypeManager
            ->getDefaultFieldSettings($field->getType());
        return $field->set('settings', $settings);
    }
    
    /**
     * {@inheritdoc}
     */
    public function prepareViewDisplay(MediaTypeInterface $type, EntityViewDisplayInterface $display) {
        parent::prepareViewDisplay($type, $display);
        // Use the `large` image style and do not link the image to anything.
        // This will prevent the out-of-the-box configuration from outputting very
        // large raw images. If the `large` image style has been deleted, do not
        // set an image style.
        $field_name = $this->getSourceFieldDefinition($type)
            ->getName();
        $component = $display->getComponent($field_name);
        $component['settings']['image_link'] = '';
        $component['settings']['image_style'] = '';
        if ($this->entityTypeManager
            ->getStorage('image_style')
            ->load('large')) {
            $component['settings']['image_style'] = 'large';
        }
        $display->setComponent($field_name, $component);
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
File::getThumbnail protected function Gets the thumbnail image URI based on a file entity.
File::METADATA_ATTRIBUTE_MIME constant Key for "MIME type" metadata attribute.
File::METADATA_ATTRIBUTE_NAME constant Key for "Name" metadata attribute.
File::METADATA_ATTRIBUTE_SIZE constant Key for "File size" metadata attribute.
Image::$fileSystem protected property The file system service.
Image::$imageFactory protected property The image factory service.
Image::create public static function Creates an instance of the plugin. Overrides MediaSourceBase::create
Image::createSourceField public function Creates the source field definition for a type. Overrides File::createSourceField
Image::getMetadata public function Gets the value for a metadata attribute for a given media item. Overrides File::getMetadata
Image::getMetadataAttributes public function Gets a list of metadata attributes provided by this plugin. Overrides File::getMetadataAttributes
Image::METADATA_ATTRIBUTE_HEIGHT constant Key for "image height" metadata attribute.
Image::METADATA_ATTRIBUTE_WIDTH constant Key for "image width" metadata attribute.
Image::prepareViewDisplay public function Prepares the media type fields for this source in the view display. Overrides MediaSourceBase::prepareViewDisplay
Image::__construct public function Constructs a new class instance. Overrides MediaSourceBase::__construct
MediaSourceBase::$configFactory protected property The config factory service.
MediaSourceBase::$entityFieldManager protected property The entity field manager service.
MediaSourceBase::$entityTypeManager protected property The entity type manager service.
MediaSourceBase::$fieldTypeManager protected property The field type plugin manager service.
MediaSourceBase::$label protected property Plugin label.
MediaSourceBase::buildConfigurationForm public function Form constructor. Overrides PluginFormInterface::buildConfigurationForm 1
MediaSourceBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
MediaSourceBase::createSourceFieldStorage protected function Creates the source field storage definition.
MediaSourceBase::defaultConfiguration public function Gets default configuration for this plugin. Overrides ConfigurableInterface::defaultConfiguration 1
MediaSourceBase::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurableInterface::getConfiguration
MediaSourceBase::getSourceFieldDefinition public function Get the source field definition for a media type. Overrides MediaSourceInterface::getSourceFieldDefinition
MediaSourceBase::getSourceFieldName protected function Determine the name of the source field.
MediaSourceBase::getSourceFieldOptions protected function Get the source field options for the media type form.
MediaSourceBase::getSourceFieldStorage protected function Returns the source field storage definition.
MediaSourceBase::getSourceFieldValue public function Get the primary value stored in the source field. Overrides MediaSourceInterface::getSourceFieldValue
MediaSourceBase::prepareFormDisplay public function Prepares the media type fields for this source in the form display. Overrides MediaSourceInterface::prepareFormDisplay 1
MediaSourceBase::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurableInterface::setConfiguration
MediaSourceBase::submitConfigurationForm public function Form submission handler. Overrides PluginFormInterface::submitConfigurationForm 1
MediaSourceBase::validateConfigurationForm public function Form validation handler. Overrides PluginFormInterface::validateConfigurationForm 1
MediaSourceInterface::METADATA_FIELD_EMPTY constant Default empty value for metadata fields.
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 5
PluginInspectionInterface::getPluginId public function Gets the plugin ID of the plugin instance. 2
RSS feed
Powered by Drupal