DisplayTest.php in Views (for Drupal 7) 8.3
Definition of Drupal\views_test_data\Plugin\views\display\DisplayTest.
File
tests/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.phpView source
<?php
/**
* @file
* Definition of Drupal\views_test_data\Plugin\views\display\DisplayTest.
*/
namespace Drupal\views_test_data\Plugin\views\display;
use Drupal\views\Plugin\views\display\DisplayPluginBase;
use Drupal\Core\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;
/**
* Defines a Display test plugin.
*
* @Plugin(
* id = "display_test",
* title = @Translation("Display test"),
* theme = "views_view",
* contextual_links_locations = {"view"}
* )
*/
class DisplayTest extends DisplayPluginBase {
/**
* Whether the display allows attachments.
*
* @var bool
*/
protected $usesAttachments = TRUE;
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::defineOptions().
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['test_option'] = array(
'default' => '',
);
return $options;
}
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::optionsSummaryv().
*/
public function optionsSummary(&$categories, &$options) {
parent::optionsSummary($categories, $options);
$categories['display_test'] = array(
'title' => t('Display test settings'),
'column' => 'second',
'build' => array(
'#weight' => -100,
),
);
$test_option = $this
->getOption('test_option') ?: t('Empty');
$options['test_option'] = array(
'category' => 'display_test',
'title' => t('Test option'),
'value' => views_ui_truncate($test_option, 24),
);
}
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::buildOptionsForm().
*/
public function buildOptionsForm(&$form, &$form_state) {
parent::buildOptionsForm($form, $form_state);
switch ($form_state['section']) {
case 'test_option':
$form['#title'] .= t('Test option');
$form['test_option'] = array(
'#type' => 'textfield',
'#description' => t('This is a textfield for test_option.'),
'#default_value' => $this
->getOption('test_option'),
);
break;
}
}
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::validateOptionsForm().
*/
public function validateOptionsForm(&$form, &$form_state) {
parent::validateOptionsForm($form, $form_state);
watchdog('views', $form_state['values']['test_option']);
switch ($form_state['section']) {
case 'test_option':
if (!trim($form_state['values']['test_option'])) {
form_error($form['test_option'], t('You cannot have an empty option.'));
}
break;
}
}
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::submitOptionsForm().
*/
public function submitOptionsForm(&$form, &$form_state) {
parent::submitOptionsForm($form, $form_state);
switch ($form_state['section']) {
case 'test_option':
$this
->setOption('test_option', $form_state['values']['test_option']);
break;
}
}
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::execute().
*/
public function execute() {
$this->view
->build();
// Render the test option as the title before the view output.
$render = '<h1>' . filter_xss_admin($this->options['test_option']) . '</h1>';
// And now render the view.
$render .= $this->view
->render();
return $render;
}
/**
* Overrides Drupal\views\Plugin\views\display\DisplayPluginBase::preview().
*
* Override so preview and execute are the same output.
*/
public function preview() {
return $this
->execute();
}
}
Classes
Name | Description |
---|---|
DisplayTest | Defines a Display test plugin. |