TextCustom.php in Zircon Profile 8
File
core/modules/views/src/Plugin/views/area/TextCustom.php
View source
<?php
namespace Drupal\views\Plugin\views\area;
use Drupal\Core\Form\FormStateInterface;
class TextCustom extends TokenizeAreaPluginBase {
protected function defineOptions() {
$options = parent::defineOptions();
$options['content'] = array(
'default' => '',
);
return $options;
}
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['content'] = array(
'#title' => $this
->t('Content'),
'#type' => 'textarea',
'#default_value' => $this->options['content'],
'#rows' => 6,
);
}
public function render($empty = FALSE) {
if (!$empty || !empty($this->options['empty'])) {
return array(
'#markup' => $this
->renderTextarea($this->options['content']),
);
}
return array();
}
public function renderTextarea($value) {
if ($value) {
return $this
->sanitizeValue($this
->tokenizeValue($value), 'xss_admin');
}
}
}