colorbox.theme.inc in Colorbox 8
Same filename and directory in other branches
Colorbox theme functions.
File
colorbox.theme.incView source
<?php
/**
* @file
* Colorbox theme functions.
*/
use Drupal\file\Entity\File;
use Drupal\image\Entity\ImageStyle;
/**
* Prepares variables for colorbox formatter templates.
*
* Default template: colorbox-formatter.html.twig.
*
* @param array $variables
* An associative array containing:
* - item: An ImageItem object.
* - item_attributes: An optional associative array of html attributes to be
* placed in the img tag.
* - entity: An entity object.
* - settings: Formatter settings array.
*
* @codingStandardsIgnoreStart
*/
function template_preprocess_colorbox_formatter(&$variables) {
// @codingStandardsIgnoreEnd
$item = $variables['item'];
$item_attributes = isset($variables['item_attributes']) ? $variables['item_attributes'] : [];
$entity = $variables['entity'];
$settings = $variables['settings'];
$image_uri = $item->entity
->getFileUri();
$classes_array = [
'colorbox',
];
$data_cbox_img_attrs = [];
// Build the caption.
$entity_title = $entity
->label();
$entity_type = $entity
->getEntityTypeId();
switch ($settings['colorbox_caption']) {
case 'auto':
// If the title is empty use alt or the entity title in that order.
if (!empty($item->title)) {
$caption = $item->title;
}
elseif (!empty($item->alt)) {
$caption = $item->alt;
}
elseif (!empty($entity_title)) {
$caption = $entity_title;
}
else {
$caption = '';
}
break;
case 'title':
$caption = $item->title;
break;
case 'alt':
$caption = $item->alt;
break;
case 'entity_title':
$caption = $entity_title;
break;
case 'custom':
$token_service = \Drupal::token();
$caption = $token_service
->replace($settings['colorbox_caption_custom'], [
$entity_type => $entity,
'file' => $item,
], [
'clear' => TRUE,
]);
break;
default:
$caption = '';
}
// Shorten the caption for the example styles or when caption
// shortening is active.
$config = \Drupal::config('colorbox.settings');
$colorbox_style = $config
->get('colorbox_style');
$trim_length = $config
->get('colorbox_caption_trim_length');
if ((strpos($colorbox_style, 'colorbox/example') !== FALSE || $config
->get('colorbox_caption_trim')) && strlen($caption) > $trim_length) {
$caption = substr($caption, 0, $trim_length - 5) . '...';
}
$gallery_id = \Drupal::service('colorbox.gallery_id_generator')
->generateId($entity, $item, $settings);
// Set up the $variables['image'] parameter.
if ($settings['style_name'] == 'hide') {
$variables['image'] = [];
$classes_array[] = 'js-hide';
}
elseif (!empty($settings['style_name'])) {
$variables['image'] = [
'#theme' => 'image_style',
'#style_name' => $settings['style_name'],
];
}
else {
$variables['image'] = [
'#theme' => 'image',
];
}
if (!empty($variables['image'])) {
$variables['image']['#attributes'] = $item_attributes;
// Do not output an empty 'title' attribute.
if (strlen($item->title) != 0) {
$variables['image']['#title'] = $item->title;
$data_cbox_img_attrs['title'] = '"title":"' . $item->title . '"';
}
foreach ([
'width',
'height',
'alt',
] as $key) {
$variables['image']["#{$key}"] = $item->{$key};
if ($key == 'alt') {
$data_cbox_img_attrs['alt'] = '"alt":"' . $item->alt . '"';
}
}
$variables['image']['#uri'] = empty($item->uri) ? $image_uri : $item->uri;
}
if (!empty($settings['colorbox_image_style'])) {
$style = ImageStyle::load($settings['colorbox_image_style']);
$variables['url'] = $style
->buildUrl($image_uri);
}
else {
$variables['url'] = file_create_url($image_uri);
}
// If File Entity module is enabled, load attribute values from file entity.
if (\Drupal::moduleHandler()
->moduleExists('file_entity')) {
// File id of the save file.
$fid = $item->target_id;
// Load file object.
$file_obj = File::load($fid);
$file_array = $file_obj
->toArray();
// Populate the image title.
if (!empty($file_array['field_image_title_text'][0]['value']) && empty($item->title) && $settings['colorbox_caption'] == 'title') {
$caption = $file_array['field_image_title_text'][0]['value'];
}
// Populate the image alt text.
if (!empty($file_array['field_image_alt_text'][0]['value']) && empty($item->alt) && $settings['colorbox_caption'] == 'alt') {
$caption = $file_array['field_image_alt_text'][0]['value'];
}
}
$variables['attributes']['title'] = $caption;
$variables['attributes']['data-colorbox-gallery'] = $gallery_id;
$variables['attributes']['class'] = $classes_array;
if (!empty($data_cbox_img_attrs)) {
$variables['attributes']['data-cbox-img-attrs'] = '{' . implode(',', $data_cbox_img_attrs) . '}';
}
}
Functions
Name | Description |
---|---|
template_preprocess_colorbox_formatter | Prepares variables for colorbox formatter templates. |