View.php in Views (for Drupal 7) 8.3
Definition of Views\comment\Plugin\views\row\View.
Namespace
Views\comment\Plugin\views\rowFile
lib/Views/comment/Plugin/views/row/View.phpView source
<?php
/**
* @file
* Definition of Views\comment\Plugin\views\row\View.
*/
namespace Views\comment\Plugin\views\row;
use Views\system\Plugin\views\row\Entity;
use Drupal\Core\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;
/**
* Plugin which performs a comment_view on the resulting object.
*
* @Plugin(
* id = "comment",
* module = "comment",
* title = @Translation("Comment"),
* help = @Translation("Display the comment with standard comment view."),
* theme = "views_view_row_comment",
* base = {"comment"},
* entity_type = "comment",
* type = "normal"
* )
*/
class View extends Entity {
/**
* Overrides Views\system\Plugin\views\row\Entity::defineOptions().
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['links'] = array(
'default' => TRUE,
);
$options['view_mode']['default'] = 'full';
return $options;
}
/**
* Overrides Views\system\Plugin\views\row\Entity::buildOptionsForm().
*/
public function buildOptionsForm(&$form, &$form_state) {
parent::buildOptionsForm($form, $form_state);
$form['links'] = array(
'#type' => 'checkbox',
'#title' => t('Display links'),
'#default_value' => $this->options['links'],
);
}
/**
* Overrides Views\system\Plugin\views\row\Entity::render().
*/
function render($row) {
$entity_id = $row->{$this->field_alias};
$build = $this->build[$entity_id];
if (!$this->options['links']) {
unset($build['links']);
}
return drupal_render($build);
}
}