View source
<?php
namespace Drupal\colorbox\Plugin\Field\FieldFormatter;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Link;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Url;
use Drupal\image\Entity\ImageStyle;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Cache\Cache;
use Drupal\colorbox\ElementAttachmentInterface;
use Drupal\image\Plugin\Field\FieldFormatter\ImageFormatterBase;
class ColorboxFormatter extends ImageFormatterBase implements ContainerFactoryPluginInterface {
protected $currentUser;
protected $imageStyleStorage;
private $moduleHandler;
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, AccountInterface $current_user, EntityStorageInterface $image_style_storage, ElementAttachmentInterface $attachment, ModuleHandlerInterface $moduleHandler) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
$this->currentUser = $current_user;
$this->imageStyleStorage = $image_style_storage;
$this->attachment = $attachment;
$this->moduleHandler = $moduleHandler;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings'], $container
->get('current_user'), $container
->get('entity_type.manager')
->getStorage('image_style'), $container
->get('colorbox.attachment'), $container
->get('module_handler'));
}
public static function defaultSettings() {
return [
'colorbox_node_style' => '',
'colorbox_node_style_first' => '',
'colorbox_image_style' => '',
'colorbox_gallery' => 'post',
'colorbox_gallery_custom' => '',
'colorbox_caption' => 'auto',
'colorbox_caption_custom' => '',
] + parent::defaultSettings();
}
public function settingsForm(array $form, FormStateInterface $form_state) {
$image_styles = image_style_options(FALSE);
$image_styles_hide = $image_styles;
$image_styles_hide['hide'] = $this
->t('Hide (do not display image)');
$description_link = Link::fromTextAndUrl($this
->t('Configure Image Styles'), Url::fromRoute('entity.image_style.collection'));
$element['colorbox_node_style'] = [
'#title' => $this
->t('Image style for content'),
'#type' => 'select',
'#default_value' => $this
->getSetting('colorbox_node_style'),
'#empty_option' => $this
->t('None (original image)'),
'#options' => $image_styles_hide,
'#description' => $description_link
->toRenderable() + [
'#access' => $this->currentUser
->hasPermission('administer image styles'),
],
];
$element['colorbox_node_style_first'] = [
'#title' => $this
->t('Image style for first image in content'),
'#type' => 'select',
'#default_value' => $this
->getSetting('colorbox_node_style_first'),
'#empty_option' => $this
->t('No special style.'),
'#options' => $image_styles,
'#description' => $description_link
->toRenderable() + [
'#access' => $this->currentUser
->hasPermission('administer image styles'),
],
];
$element['colorbox_image_style'] = [
'#title' => $this
->t('Image style for Colorbox'),
'#type' => 'select',
'#default_value' => $this
->getSetting('colorbox_image_style'),
'#empty_option' => $this
->t('None (original image)'),
'#options' => $image_styles,
'#description' => $description_link
->toRenderable() + [
'#access' => $this->currentUser
->hasPermission('administer image styles'),
],
];
$gallery = [
'post' => $this
->t('Per post gallery'),
'page' => $this
->t('Per page gallery'),
'field_post' => $this
->t('Per field in post gallery'),
'field_page' => $this
->t('Per field in page gallery'),
'custom' => $this
->t('Custom (with tokens)'),
'none' => $this
->t('No gallery'),
];
$element['colorbox_gallery'] = [
'#title' => $this
->t('Gallery (image grouping)'),
'#type' => 'select',
'#default_value' => $this
->getSetting('colorbox_gallery'),
'#options' => $gallery,
'#description' => $this
->t('How Colorbox should group the image galleries.'),
];
$element['colorbox_gallery_custom'] = [
'#title' => $this
->t('Custom gallery'),
'#type' => 'textfield',
'#default_value' => $this
->getSetting('colorbox_gallery_custom'),
'#description' => $this
->t('All images on a page with the same gallery value (rel attribute) will be grouped together. It must only contain lowercase letters, numbers, and underscores.'),
'#required' => FALSE,
'#states' => [
'visible' => [
':input[name$="[settings_edit_form][settings][colorbox_gallery]"]' => [
'value' => 'custom',
],
],
],
];
if ($this->moduleHandler
->moduleExists('token')) {
$entity_type = '';
if (isset($form['#entity_type']) && !empty($form['#entity_type'])) {
$entity_type = $form['#entity_type'];
}
$element['colorbox_token_gallery'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Replacement patterns'),
'#theme' => 'token_tree_link',
'#token_types' => [
$entity_type,
'file',
],
'#states' => [
'visible' => [
':input[name$="[settings_edit_form][settings][colorbox_gallery]"]' => [
'value' => 'custom',
],
],
],
];
}
else {
$element['colorbox_token_gallery'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Replacement patterns'),
'#description' => '<strong class="error">' . $this
->t('For token support the <a href="@token_url">token module</a> must be installed.', [
'@token_url' => 'http://drupal.org/project/token',
]) . '</strong>',
'#states' => [
'visible' => [
':input[name$="[settings_edit_form][settings][colorbox_gallery]"]' => [
'value' => 'custom',
],
],
],
];
}
$caption = [
'auto' => $this
->t('Automatic'),
'title' => $this
->t('Title text'),
'alt' => $this
->t('Alt text'),
'entity_title' => $this
->t('Content title'),
'custom' => $this
->t('Custom (with tokens)'),
'none' => $this
->t('None'),
];
$element['colorbox_caption'] = [
'#title' => $this
->t('Caption'),
'#type' => 'select',
'#default_value' => $this
->getSetting('colorbox_caption'),
'#options' => $caption,
'#description' => $this
->t('Automatic will use the first non-empty value out of the title, the alt text and the content title.'),
];
$element['colorbox_caption_custom'] = [
'#title' => $this
->t('Custom caption'),
'#type' => 'textfield',
'#default_value' => $this
->getSetting('colorbox_caption_custom'),
'#states' => [
'visible' => [
':input[name$="[settings_edit_form][settings][colorbox_caption]"]' => [
'value' => 'custom',
],
],
],
];
if ($this->moduleHandler
->moduleExists('token')) {
$entity_type = '';
if (isset($form['#entity_type']) && !empty($form['#entity_type'])) {
$entity_type = $form['#entity_type'];
}
$element['colorbox_token_caption'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Replacement patterns'),
'#theme' => 'token_tree_link',
'#token_types' => [
$entity_type,
'file',
],
'#states' => [
'visible' => [
':input[name$="[settings_edit_form][settings][colorbox_caption]"]' => [
'value' => 'custom',
],
],
],
];
}
else {
$element['colorbox_token_caption'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Replacement patterns'),
'#description' => '<strong class="error">' . $this
->t('For token support the <a href="@token_url">token module</a> must be installed.', [
'@token_url' => 'http://drupal.org/project/token',
]) . '</strong>',
'#states' => [
'visible' => [
':input[name$="[settings_edit_form][settings][colorbox_caption]"]' => [
'value' => 'custom',
],
],
],
];
}
return $element;
}
public function settingsSummary() {
$summary = [];
$image_styles = image_style_options(FALSE);
unset($image_styles['']);
if (isset($image_styles[$this
->getSetting('colorbox_node_style')])) {
$summary[] = $this
->t('Content image style: @style', [
'@style' => $image_styles[$this
->getSetting('colorbox_node_style')],
]);
}
elseif ($this
->getSetting('colorbox_node_style') == 'hide') {
$summary[] = $this
->t('Content image style: Hide');
}
else {
$summary[] = $this
->t('Content image style: Original image');
}
if (isset($image_styles[$this
->getSetting('colorbox_node_style_first')])) {
$summary[] = $this
->t('Content image style of first image: @style', [
'@style' => $image_styles[$this
->getSetting('colorbox_node_style_first')],
]);
}
if (isset($image_styles[$this
->getSetting('colorbox_image_style')])) {
$summary[] = $this
->t('Colorbox image style: @style', [
'@style' => $image_styles[$this
->getSetting('colorbox_image_style')],
]);
}
else {
$summary[] = $this
->t('Colorbox image style: Original image');
}
$gallery = [
'post' => $this
->t('Per post gallery'),
'page' => $this
->t('Per page gallery'),
'field_post' => $this
->t('Per field in post gallery'),
'field_page' => $this
->t('Per field in page gallery'),
'custom' => $this
->t('Custom (with tokens)'),
'none' => $this
->t('No gallery'),
];
if ($this
->getSetting('colorbox_gallery')) {
$summary[] = $this
->t('Colorbox gallery type: @type', [
'@type' => $gallery[$this
->getSetting('colorbox_gallery')],
]) . ($this
->getSetting('colorbox_gallery') == 'custom' ? ' (' . $this
->getSetting('colorbox_gallery_custom') . ')' : '');
}
$caption = [
'auto' => $this
->t('Automatic'),
'title' => $this
->t('Title text'),
'alt' => $this
->t('Alt text'),
'entity_title' => $this
->t('Content title'),
'custom' => $this
->t('Custom (with tokens)'),
'none' => $this
->t('None'),
];
if ($this
->getSetting('colorbox_caption')) {
$summary[] = $this
->t('Colorbox caption: @type', [
'@type' => $caption[$this
->getSetting('colorbox_caption')],
]);
}
return $summary;
}
public function viewElements(FieldItemListInterface $items, $langcode) {
$elements = [];
$settings = $this
->getSettings();
$files = $this
->getEntitiesToView($items, $langcode);
if (empty($files)) {
return $elements;
}
$cache_tags = [];
if (!empty($settings['colorbox_node_style']) && $settings['colorbox_node_style'] != 'hide') {
$image_style = $this->imageStyleStorage
->load($settings['colorbox_node_style']);
$cache_tags = $image_style
->getCacheTags();
}
$cache_tags_first = [];
if (!empty($settings['colorbox_node_style_first'])) {
$image_style_first = $this->imageStyleStorage
->load($settings['colorbox_node_style_first']);
$cache_tags_first = $image_style_first
->getCacheTags();
}
foreach ($files as $delta => $file) {
if ($delta == 0 && !empty($settings['colorbox_node_style_first'])) {
$settings['style_first'] = TRUE;
$settings['style_name'] = $settings['colorbox_node_style_first'];
$cache_tags = Cache::mergeTags($cache_tags_first, $file
->getCacheTags());
}
else {
$settings['style_first'] = FALSE;
$settings['style_name'] = $settings['colorbox_node_style'];
$cache_tags = Cache::mergeTags($cache_tags, $file
->getCacheTags());
}
$item = $file->_referringItem;
$item_attributes = $item->_attributes;
unset($item->_attributes);
$elements[$delta] = [
'#theme' => 'colorbox_formatter',
'#item' => $item,
'#item_attributes' => $item_attributes,
'#entity' => $items
->getEntity(),
'#settings' => $settings,
'#cache' => [
'tags' => $cache_tags,
],
];
}
if ($this->attachment
->isApplicable()) {
$this->attachment
->attach($elements);
}
return $elements;
}
public function calculateDependencies() {
$dependencies = parent::calculateDependencies();
$style_ids = [];
$style_ids[] = $this
->getSetting('colorbox_node_style');
if (!empty($this
->getSetting('colorbox_node_style_first'))) {
$style_ids[] = $this
->getSetting('colorbox_node_style_first');
}
$style_ids[] = $this
->getSetting('colorbox_image_style');
foreach ($style_ids as $style_id) {
if ($style_id && ($style = ImageStyle::load($style_id))) {
$dependencies[$style
->getConfigDependencyKey()][] = $style
->getConfigDependencyName();
}
}
return $dependencies;
}
public function onDependencyRemoval(array $dependencies) {
$changed = parent::onDependencyRemoval($dependencies);
$style_ids = [];
$style_ids['colorbox_node_style'] = $this
->getSetting('colorbox_node_style');
if (!empty($this
->getSetting('colorbox_node_style_first'))) {
$style_ids['colorbox_node_style_first'] = $this
->getSetting('colorbox_node_style_first');
}
$style_ids['colorbox_image_style'] = $this
->getSetting('colorbox_image_style');
foreach ($style_ids as $name => $style_id) {
if ($style_id && ($style = ImageStyle::load($style_id))) {
if (!empty($dependencies[$style
->getConfigDependencyKey()][$style
->getConfigDependencyName()])) {
$replacement_id = $this->imageStyleStorage
->getReplacementId($style_id);
if ($replacement_id && ImageStyle::load($replacement_id)) {
$this
->setSetting($name, $replacement_id);
$changed = TRUE;
}
}
}
}
return $changed;
}
}