-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashbangcode_views_examples.module
141 lines (130 loc) · 4.84 KB
/
hashbangcode_views_examples.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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
133
134
135
136
137
138
139
140
141
<?php
/**
* @file
* The hashbangcode_views_examples module file.
*/
use Drupal\Core\Database\Query\AlterableInterface;
/**
* Install a list of tags.
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
* @throws \Drupal\Core\Entity\EntityStorageException
*/
function _hashbangcode_views_examples_install_tags() {
$tags = [
'Mercury',
'Venus',
'Earth',
'Mars',
'Jupiter',
'Saturn',
'Uranus',
'Neptune',
];
$taxonomyTermStorage = \Drupal::entityTypeManager()->getStorage('taxonomy_term');
foreach ($tags as $tag) {
$taxonomyTermSearch = $taxonomyTermStorage->loadByProperties(['name' => $tag]);
if (count($taxonomyTermSearch) > 0) {
// Tag already exists, skip.
continue;
}
$termObject = $taxonomyTermStorage->create([
'vid' => 'tags',
'name' => $tag,
]);
$termObject->enforceIsNew();
$termObject->save();
}
}
/**
* Install some example articles.
*
* @throws \Drupal\Core\Entity\EntityStorageException
*/
function _hashbangcode_views_examples_install_articles() {
$nodeStorage = \Drupal::entityTypeManager()->getStorage('node');
$node = $nodeStorage->create([
'type' => 'article',
'title' => 'Hash Bang Code Example Content 1',
'body' => [
'value' => '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac aliquet erat. Suspendisse sodales tortor in ligula euismod maximus. Pellentesque in est consequat, eleifend felis tempor, scelerisque tortor. In non semper est. Nulla consequat elit vitae risus malesuada cursus. Fusce scelerisque facilisis ex, vitae convallis mi. Sed vitae lectus commodo arcu faucibus feugiat.</p>',
'format' => filter_default_format(),
],
'field_tags' => [1],
'uid' => 1,
'created' => strtotime('-3 weeks'),
]);
$node->save();
$node = $nodeStorage->create([
'type' => 'article',
'title' => 'Hash Bang Code Example Content 2',
'body' => [
'value' => '<p>Etiam fermentum ac ex viverra dictum. Etiam eget ultrices nulla, at porttitor ante. Vivamus sodales tellus sit amet ipsum imperdiet tristique. Fusce ut velit a ligula venenatis pharetra eget sit amet urna. Donec quam mauris, posuere in nisl non, consectetur vehicula elit. Donec ut porttitor sem, id pharetra ex.</p>',
'format' => filter_default_format(),
],
'field_tags' => [1, 2, 3, 4, 5, 6],
'uid' => 2,
'created' => strtotime('-2 week'),
]);
$node->save();
$node = $nodeStorage->create([
'type' => 'article',
'title' => 'Hash Bang Code Example Content 3',
'body' => [
'value' => '<p>Ut cursus tempor consectetur. Sed hendrerit leo id egestas euismod. Nullam pharetra dui eget lacus luctus pharetra. Vestibulum volutpat tristique mollis. Mauris scelerisque purus a massa eleifend interdum. Maecenas sed eleifend felis. Fusce luctus tellus libero, id consectetur lectus dictum eu.</p>',
'format' => filter_default_format(),
],
'field_tags' => [5],
'uid' => 2,
'created' => strtotime('-1 week'),
]);
$node->save();
$node = $nodeStorage->create([
'type' => 'article',
'title' => 'Hash Bang Code Example Content 4',
'body' => [
'value' => '<p>Quisque tellus magna, gravida vel neque eget, sodales facilisis odio. Integer eu accumsan orci. In eleifend ut odio et tempor. Aenean in justo in ex ultricies condimentum a nec purus. In hac habitasse platea dictumst. Praesent nec tincidunt dolor.</p>',
'format' => filter_default_format(),
],
'field_tags' => [2],
'uid' => 1,
'created' => strtotime('today'),
]);
$node->save();
}
/**
* Install some example users.
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
* @throws \Drupal\Core\Entity\EntityStorageException
*/
function _hashbangcode_views_examples_install_users() {
$userStorage = \Drupal::entityTypeManager()->getStorage('user');
$user = $userStorage->create([
'name' => 'content_editor',
'pass' => 'content_editor',
'mail' => '[email protected]',
'status' => 1,
'roles' => 'content_editor',
]);
$user->save();
}
/**
* Sets up the views interface to show the advanced column and SQL preview.
*/
function _hashbangcode_views_examples_setup_views() {
$config = \Drupal::service('config.factory')->getEditable('views.settings');
$config->set('ui.show.advanced_column', TRUE);
$config->set('ui.show.sql_query.enabled', TRUE);
$config->set('ui.show.sql_query.where', 'above');
$config->save();
}
/**
* Implements hook_query_TAG_alter().
*/
function hashbangcode_views_examples_query_hashbangcode_query_tag_alter(Drupal\Core\Database\Query\AlterableInterface $query) {
// Add a condition to this tag that will hide node 1.
$query->condition('nid', 1, '<>');
}