Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
140
web/core/modules/views/views.tokens.inc
Normal file
140
web/core/modules/views/views.tokens.inc
Normal file
|
@ -0,0 +1,140 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Token integration for the views module.
|
||||
*/
|
||||
|
||||
use Drupal\Core\Render\BubbleableMetadata;
|
||||
|
||||
/**
|
||||
* Implements hook_token_info().
|
||||
*/
|
||||
function views_token_info() {
|
||||
$info['types']['view'] = array(
|
||||
'name' => t('View', [], ['context' => 'View entity type']),
|
||||
'description' => t('Tokens related to views.'),
|
||||
'needs-data' => 'view',
|
||||
);
|
||||
$info['tokens']['view']['label'] = array(
|
||||
'name' => t('Label'),
|
||||
'description' => t('The label of the view.'),
|
||||
);
|
||||
$info['tokens']['view']['description'] = array(
|
||||
'name' => t('Description'),
|
||||
'description' => t('The description of the view.'),
|
||||
);
|
||||
$info['tokens']['view']['id'] = array(
|
||||
'name' => t('ID'),
|
||||
'description' => t('The machine-readable ID of the view.'),
|
||||
);
|
||||
$info['tokens']['view']['title'] = array(
|
||||
'name' => t('Title'),
|
||||
'description' => t('The title of current display of the view.'),
|
||||
);
|
||||
$info['tokens']['view']['url'] = array(
|
||||
'name' => t('URL'),
|
||||
'description' => t('The URL of the view.'),
|
||||
'type' => 'url',
|
||||
);
|
||||
$info['tokens']['view']['base-table'] = array(
|
||||
'name' => t('Base table'),
|
||||
'description' => t('The base table used for this view.'),
|
||||
);
|
||||
$info['tokens']['view']['base-field'] = array(
|
||||
'name' => t('Base field'),
|
||||
'description' => t('The base field used for this view.'),
|
||||
);
|
||||
$info['tokens']['view']['total-rows'] = array(
|
||||
'name' => t('Total rows'),
|
||||
'description' => t('The total amount of results returned from the view. The current display will be used.'),
|
||||
);
|
||||
$info['tokens']['view']['items-per-page'] = array(
|
||||
'name' => t('Items per page'),
|
||||
'description' => t('The number of items per page.'),
|
||||
);
|
||||
$info['tokens']['view']['current-page'] = array(
|
||||
'name' => t('Current page'),
|
||||
'description' => t('The current page of results the view is on.'),
|
||||
);
|
||||
$info['tokens']['view']['page-count'] = array(
|
||||
'name' => t('Page count'),
|
||||
'description' => t('The total page count.'),
|
||||
);
|
||||
|
||||
return $info;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_tokens().
|
||||
*/
|
||||
function views_tokens($type, $tokens, array $data, array $options, BubbleableMetadata $bubbleable_metadata) {
|
||||
$url_options = array('absolute' => TRUE);
|
||||
if (isset($options['language'])) {
|
||||
$url_options['language'] = $options['language'];
|
||||
}
|
||||
$replacements = array();
|
||||
|
||||
if ($type == 'view' && !empty($data['view'])) {
|
||||
/** @var \Drupal\views\ViewExecutable $view */
|
||||
$view = $data['view'];
|
||||
|
||||
$bubbleable_metadata->addCacheableDependency($view->storage);
|
||||
|
||||
foreach ($tokens as $name => $original) {
|
||||
switch ($name) {
|
||||
case 'label':
|
||||
$replacements[$original] = $view->storage->label();
|
||||
break;
|
||||
|
||||
case 'description':
|
||||
$replacements[$original] = $view->storage->get('description');
|
||||
break;
|
||||
|
||||
case 'id':
|
||||
$replacements[$original] = $view->storage->id();
|
||||
break;
|
||||
|
||||
case 'title':
|
||||
$title = $view->getTitle();
|
||||
$replacements[$original] = $title;
|
||||
break;
|
||||
|
||||
case 'url':
|
||||
try {
|
||||
if ($url = $view->getUrl()) {
|
||||
$replacements[$original] = $url->setOptions($url_options)
|
||||
->toString();
|
||||
}
|
||||
}
|
||||
catch (\InvalidArgumentException $e) {
|
||||
// The view has no URL so we leave the value empty.
|
||||
$replacements[$original] = '';
|
||||
}
|
||||
break;
|
||||
case 'base-table':
|
||||
$replacements[$original] = $view->storage->get('base_table');
|
||||
break;
|
||||
case 'base-field':
|
||||
$replacements[$original] = $view->storage->get('base_field');
|
||||
break;
|
||||
case 'total-rows':
|
||||
$replacements[$original] = count($view->result);
|
||||
break;
|
||||
case 'items-per-page':
|
||||
$replacements[$original] = (int) $view->getItemsPerPage();
|
||||
break;
|
||||
case 'current-page':
|
||||
$replacements[$original] = (int) $view->getCurrentPage() + 1;
|
||||
break;
|
||||
case 'page-count':
|
||||
// If there are no items per page, set this to 1 for the division.
|
||||
$per_page = $view->getItemsPerPage() ?: 1;
|
||||
$replacements[$original] = max(1, (int) ceil(count($view->result) / $per_page));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $replacements;
|
||||
}
|
Reference in a new issue