ezcontent-8.x-dev/modules/ezcontent_node/modules/ezcontent_smart_article/src/EzcontentImageTaggingPluginBase.php
modules/ezcontent_node/modules/ezcontent_smart_article/src/EzcontentImageTaggingPluginBase.php
<?php
namespace Drupal\ezcontent_smart_article;
use Drupal\Component\Plugin\PluginBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\file\Entity\File;
/**
* A base class implementation for image tagging plugin manager.
*/
abstract class EzcontentImageTaggingPluginBase extends PluginBase implements EzcontentImageTaggingInterface {
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition);
}
/**
* {@inheritdoc}
*/
public function getImageTags(File $file) {
}
}
