Newer
Older

Andrei Mateescu
committed
* Definition of Views\node\Plugin\views\wizard\NodeRevision.

Andrei Mateescu
committed
namespace Views\node\Plugin\views\wizard;
use Drupal\views\Plugin\views\wizard\WizardPluginBase;
use Drupal\Core\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;
/**
* @todo: replace numbers with constants.
*/
/**
* Tests creating node revision views with the wizard.

Andrei Mateescu
committed
* module = "node",
* base_table = "node_revision",
* title = @Translation("Content revisions")
class NodeRevision extends WizardPluginBase {
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* Set the created column.
*/
protected $createdColumn = 'timestamp';
/**
* Set default values for the path field options.
*/
protected $pathField = array(
'id' => 'vid',
'table' => 'node_revision',
'field' => 'vid',
'exclude' => TRUE,
'alter' => array(
'alter_text' => TRUE,
'text' => 'node/[nid]/revisions/[vid]/view'
)
);
/**
* Set the additional information for the pathField property.
*/
protected $pathFieldsSupplemental = array(
array(
'id' => 'nid',
'table' => 'node',
'field' => 'nid',
'exclude' => TRUE,
'link_to_node' => FALSE
)
);
/**
* Set default values for the filters.
*/
protected $filters = array(
'status' => array(
'value' => TRUE,

Daniel Wehner
committed
'table' => 'node_revision',
'field' => 'status'
)
);

Ramon Vilar Gavaldà
committed
/**
* Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().
*

Ramon Vilar Gavaldà
committed
* Node revisions do not support full posts or teasers, so remove them.
*/
protected function row_style_options() {
$options = parent::row_style_options();

Ramon Vilar Gavaldà
committed
unset($options['teasers']);
unset($options['full_posts']);
return $options;
}

Daniel Wehner
committed
/**
* Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::default_display_options().
*/
protected function default_display_options() {
$display_options = parent::default_display_options();
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Add permission-based access control.
$display_options['access']['type'] = 'perm';
$display_options['access']['perm'] = 'view revisions';
// Remove the default fields, since we are customizing them here.
unset($display_options['fields']);
/* Field: Content revision: Created date */
$display_options['fields']['timestamp']['id'] = 'timestamp';
$display_options['fields']['timestamp']['table'] = 'node_revision';
$display_options['fields']['timestamp']['field'] = 'timestamp';
$display_options['fields']['timestamp']['alter']['alter_text'] = 0;
$display_options['fields']['timestamp']['alter']['make_link'] = 0;
$display_options['fields']['timestamp']['alter']['absolute'] = 0;
$display_options['fields']['timestamp']['alter']['trim'] = 0;
$display_options['fields']['timestamp']['alter']['word_boundary'] = 0;
$display_options['fields']['timestamp']['alter']['ellipsis'] = 0;
$display_options['fields']['timestamp']['alter']['strip_tags'] = 0;
$display_options['fields']['timestamp']['alter']['html'] = 0;
$display_options['fields']['timestamp']['hide_empty'] = 0;
$display_options['fields']['timestamp']['empty_zero'] = 0;
/* Field: Content revision: Title */
$display_options['fields']['title']['id'] = 'title';
$display_options['fields']['title']['table'] = 'node_revision';
$display_options['fields']['title']['field'] = 'title';
$display_options['fields']['title']['label'] = '';
$display_options['fields']['title']['alter']['alter_text'] = 0;
$display_options['fields']['title']['alter']['make_link'] = 0;
$display_options['fields']['title']['alter']['absolute'] = 0;
$display_options['fields']['title']['alter']['trim'] = 0;
$display_options['fields']['title']['alter']['word_boundary'] = 0;
$display_options['fields']['title']['alter']['ellipsis'] = 0;
$display_options['fields']['title']['alter']['strip_tags'] = 0;
$display_options['fields']['title']['alter']['html'] = 0;
$display_options['fields']['title']['hide_empty'] = 0;
$display_options['fields']['title']['empty_zero'] = 0;
$display_options['fields']['title']['link_to_node'] = 0;
$display_options['fields']['title']['link_to_node_revision'] = 1;
return $display_options;
}