Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 55 |
PrerenderList | |
0.00% |
0 / 1 |
|
0.00% |
0 / 4 |
56 | |
0.00% |
0 / 55 |
defineOptions | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
|||
buildOptionsForm | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 22 |
|||
renderItems | |
0.00% |
0 / 1 |
12 | |
0.00% |
0 / 22 |
|||
getItems | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 6 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\views\Plugin\views\field\PrerenderList. | |
*/ | |
namespace Drupal\views\Plugin\views\field; | |
use Drupal\Core\Form\FormStateInterface; | |
use Drupal\views\ResultRow; | |
/** | |
* Field handler to provide a list of items. | |
* | |
* The items are expected to be loaded by a child object during preRender, | |
* and 'my field' is expected to be the pointer to the items in the list. | |
* | |
* Items to render should be in a list in $this->items | |
* | |
* @ingroup views_field_handlers | |
*/ | |
abstract class PrerenderList extends FieldPluginBase implements MultiItemsFieldHandlerInterface { | |
/** | |
* Stores all items which are used to render the items. | |
* It should be keyed first by the id of the base table, for example nid. | |
* The second key is the id of the thing which is displayed multiple times | |
* per row, for example the tid. | |
* | |
* @var array | |
*/ | |
var $items = array(); | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function defineOptions() { | |
$options = parent::defineOptions(); | |
$options['type'] = array('default' => 'separator'); | |
$options['separator'] = array('default' => ', '); | |
return $options; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function buildOptionsForm(&$form, FormStateInterface $form_state) { | |
$form['type'] = array( | |
'#type' => 'radios', | |
'#title' => $this->t('Display type'), | |
'#options' => array( | |
'ul' => $this->t('Unordered list'), | |
'ol' => $this->t('Ordered list'), | |
'separator' => $this->t('Simple separator'), | |
), | |
'#default_value' => $this->options['type'], | |
); | |
$form['separator'] = array( | |
'#type' => 'textfield', | |
'#title' => $this->t('Separator'), | |
'#default_value' => $this->options['separator'], | |
'#states' => array( | |
'visible' => array( | |
':input[name="options[type]"]' => array('value' => 'separator'), | |
), | |
), | |
); | |
parent::buildOptionsForm($form, $form_state); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function renderItems($items) { | |
if (!empty($items)) { | |
if ($this->options['type'] == 'separator') { | |
$render = [ | |
'#type' => 'inline_template', | |
'#template' => '{{ items|safe_join(separator) }}', | |
'#context' => [ | |
'items' => $items, | |
'separator' => $this->sanitizeValue($this->options['separator'], 'xss_admin') | |
] | |
]; | |
} | |
else { | |
$render = array( | |
'#theme' => 'item_list', | |
'#items' => $items, | |
'#title' => NULL, | |
'#list_type' => $this->options['type'], | |
); | |
} | |
return drupal_render($render); | |
} | |
} | |
/** | |
* {@inheritdoc} | |
* | |
* Items should be stored in the result array, if possible, as an array | |
* with 'value' as the actual displayable value of the item, plus | |
* any items that might be found in the 'alter' options array for | |
* creating links, such as 'path', 'fragment', 'query' etc, such a thing | |
* is to be made. Additionally, items that might be turned into tokens | |
* should also be in this array. | |
*/ | |
public function getItems(ResultRow $values) { | |
$field = $this->getValue($values); | |
if (!empty($this->items[$field])) { | |
return $this->items[$field]; | |
} | |
return array(); | |
} | |
} |