This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinfinite_base.module
398 lines (336 loc) · 11 KB
/
infinite_base.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<?php
/**
* @file
* Module for adding custom Infinity base functions.
*/
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Render\BubbleableMetadata;
use Drupal\infinite_base\Metatags;
use Drupal\node\NodeInterface;
/**
* Implements hook_entity_base_field_info_alter().
*/
function infinite_base_entity_base_field_info_alter(&$fields, EntityTypeInterface $entity_type) {
if ($entity_type->id() == 'node' && !empty($fields['uid'])) {
$fields['created']->setDisplayConfigurable('view', TRUE);
$fields['uid']->setDisplayConfigurable('view', TRUE);
}
else if ($entity_type->id() == 'user' && !empty($fields['mail'])) {
$fields['mail']->setDisplayConfigurable('view', TRUE);
}
}
function infinite_base_entity_presave(EntityInterface $entity){
if($entity->getEntityTypeId() == 'taxonomy_term' && $entity->getVocabularyId() == 'unmanaged'){
$entity->set('status', FALSE);
}
if ('node' === $entity->getEntityTypeId()) {
/** @var \Drupal\node\Entity\Node $node */
$node = $entity;
$entity = (new Metatags())->injectGooglebotNews($node);
}
}
/**
* Implements hook_entity_extra_field_info().
*/
function infinite_base_entity_extra_field_info() {
$extra = [];
$extra['user']['user']['display']['field_full_name'] = [
'label' => t('Full name'),
'description' => t('The full name of the user derived from relevant fields'),
'visible' => TRUE,
];
return $extra;
}
/**
* Implements hook_node_view().
*/
function infinite_base_node_view(array &$build, EntityInterface $entity, EntityViewDisplayInterface $display, $view_mode) {
if (isset($build['created'])) {
$build['field_created'] = $build['created'];
}
if (isset($build['uid'])) {
$build['field_uid'] = $build['uid'];
}
}
/**
* Implements hook_user_view().
*/
function infinite_base_user_view(array &$build, EntityInterface $entity, EntityViewDisplayInterface $display, $view_mode) {
if ($display->getComponent('field_full_name')) {
$field_full_name = '';
if (isset($entity->field_forename->value)) {
$field_full_name = $entity->field_forename->value;
}
else if (isset($entity->first_name->value)) {
$field_full_name = $entity->first_name->value;
}
if (isset($entity->field_surname->value)) {
$field_full_name .= ' ' . $entity->field_surname->value;
}
else if (isset($entity->last_name->value)) {
$field_full_name .= ' ' . $entity->last_name->value;
}
$build['field_full_name'] = [
'#type' => 'markup',
'#markup' => trim($field_full_name),
];
}
}
/**
* Implements hook_entity_view_mode_alter().
*/
function infinite_base_entity_view_mode_alter(&$view_mode, EntityInterface $entity, $context) {
if ($view_mode == 'presenter_home_selectable' && $entity->getEntityTypeId() === 'node') {
$view_mode = 'presenter_half';
if ($entity->hasField('field_hp_display_mode') && !$entity->get('field_hp_display_mode')->isEmpty()) {
$selected_view_mode = $entity->get('field_hp_display_mode')->value;
$view_mode = $selected_view_mode;
}
}
else {
if ($view_mode == 'teaser_selectable' && $entity->getEntityTypeId() === 'node') {
$view_mode = 'teaser_square_m';
if ($entity->hasField('field_teaser_display_mode') && !$entity->get('field_teaser_display_mode')->isEmpty()) {
$selected_view_mode = $entity->get('field_teaser_display_mode')->value;
$view_mode = $selected_view_mode;
}
}
}
}
function infinite_base_theme() {
return array(
'author_teaser' => array(
'template' => 'author-teaser',
'variables' => array(
'elements' => NULL,
'name' => NULL,
'author_id' => NULL,
'author_forename' => NULL,
'author_surname' => NULL,
'author_url' => NULL,
'author_picture' => NULL,
'timestamp' => NULL,
'created_timestamp' => NULL,
'changed_timestamp' => NULL,
'use_absolute_date' => FALSE,
),
),
'data_internal_url' => array(
'variables' => array(
'label' => NULL,
'url' => NULL,
),
),
'lazy_loading' => array(
'variables' => array(
'lazy_loading_url' => NULL,
'article_title' => NULL,
)
),
);
}
function infinite_base_token_info() {
// Node tokens.
$info['tokens']['node']['root-channel'] = array(
'name' => t('Root channel'),
'description' => t("The root channel."),
);
$info['tokens']['term']['parents-all-join'] = array(
'name' => t('Parents all join path'),
'description' => t("Parents all join path"),
);
$nodeType = array(
'name' => t('Nodes'),
'description' => t('Tokens related to individual nodes.'),
'needs-data' => 'node',
);
// Core tokens for nodes.
$node['root-channel'] = array(
'name' => t('Root channel'),
'description' => t("The root channel."),
);
$node['infinite-news-keywords'] = array(
'name' => t('Infinite news keywords'),
'description' => t("Keywords to be used for google news."),
);
$termType = array(
'name' => t('Terms'),
'description' => t('Tokens related to individual terms.'),
'needs-data' => 'term',
);
// Core tokens for nodes.
$term['term-parents-all'] = array(
'name' => t('Parents all'),
'description' => t("Parents all."),
'type' => 'array',
);
return array(
'types' => array('node' => $nodeType, 'term' => $termType),
'tokens' => array('node' => $node, 'term' => $term),
);
return $info;
}
function infinite_base_tokens($type, $tokens, array $data = array(), array $options = array(), BubbleableMetadata $bubbleableMetadata) {
$replacements = array();
if ($type == 'node' && !empty($data['node'])) {
/** @var NodeInterface $node */
$node = $data['node'];
foreach ($tokens as $name => $original) {
switch ($name) {
// Google news keywords
case 'infinite-news-keywords':
$field_tags_items = $node->get('field_tags');
$term_labels = [];
if($field_tags_items instanceof \Drupal\Core\Field\EntityReferenceFieldItemList) {
foreach ($field_tags_items->referencedEntities() as $term) {
$term_labels[] = $term->label();
}
}
$replacements[$original] = implode(', ', $term_labels);
break;
// Simple key values on the node.
case 'root-channel':
if ($node->field_channel->entity) {
$parents = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadAllParents($node->field_channel->entity->id());
$parents = array_values($parents);
$countParents = count($parents);
if (!empty($parents[$countParents - 2])) {
$replacements[$original] = $parents[$countParents - 2]->getName();
}
else {
$replacements[$original] = $node->field_channel->entity->getName();
}
}
else {
$replacements[$original] = '';
}
break;
}
}
}
if ($type == 'term' && !empty($data['term'])) {
/** @var NodeInterface $node */
$term = $data['term'];
foreach ($tokens as $name => $original) {
switch ($name) {
case 'term-parents-all':
$replacements[$original] = infinite_base_get_all_parents($term);
break;
}
}
if ($parents_tokens = \Drupal::token()->findWithPrefix($tokens, 'term-parents-all')) {
if ($parents = infinite_base_get_all_parents($term)) {
$replacements += \Drupal::token()
->generate('array', $parents_tokens, array('array' => $parents), $options, $bubbleableMetadata);
}
}
}
return $replacements;
}
function infinite_base_get_all_parents($term) {
$parents_tokens = [];
if ($term) {
$parents = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadAllParents($term->id());
$parents = array_reverse(array_values($parents));
if (count($parents) == 1) {
$parents_tokens = [];
} elseif (count($parents) > 1) {
array_shift($parents);
foreach($parents as $parent) {
$parents_tokens[] = $parent->getName();
}
}
}
return $parents_tokens;
}
function infinite_base_page_attachments(array &$attachments) {
/** Attaches the jquery3 migrate prod plugin on every page as workaround to compat jquery3 changes.
* TODO: This should be removed, when migration is completed
*/
$attachments['#attached']['library'][] = 'infinite_base/jquery-migrate';
/** Attaches the Harbourmaster ClientID, if module hm_newsletter is enabled */
if (\Drupal::moduleHandler()->moduleExists('hm_newsletter')) {
$configFactory = \Drupal::configFactory()->get('hm_newsletter.settings');
$attachments['#attached']['drupalSettings']['hm_newsletter']['clientid'] = $configFactory->get('hm_client_id');
$attachments['#attached']['drupalSettings']['hm_newsletter']['env'] = $configFactory->get('hm_environment');
$attachments['#attached']['library'][] = 'hm_newsletter/base';
}
}
/**
* Implements hook_user_format_name_alter().
*/
function infinite_base_user_format_name_alter(&$name, $account) {
/** @var \Drupal\Core\Routing\AdminContext $admin_context */
$admin_context = \Drupal::service('router.admin_context');
if ($account->id() && !$admin_context->isAdminRoute() && isset($account->field_surname) && isset($account->field_forename)) {
$name = $account->get('field_forename')->value . ' ' . $account->get('field_surname')->value;
}
}
/**
* Replaces meta tag in html head with given content.
*
* @param type $name
*
* @param type $content
*
* @param array $attachments
*/
function infinite_base_replace_tag($name, $content, array &$attachments) {
if (empty($attachments['#attached'])) {
$attachments['#attached'] = [];
}
if (empty($attachments['#attached']['html_head'])) {
$attachments['#attached']['html_head'] = [];
}
$index = infinite_base_find_tag($name, $attachments);
if ($index > -1) {
$attachments['#attached']['html_head'][$index][0]['#attributes']['content'] = $content;
}
else {
$attachments['#attached']['html_head'][] = [
0 => [
'#attributes' => ['name' => $name, 'content' => $content],
'#tag' => 'meta',
],
1 => 'description',
];
}
}
/**
* Finds the index of a meta tag in the html head.
*
* @param type $name
*
* @param array $attachments
*
* @return int
*/
function infinite_base_find_tag($name, array &$attachments) {
foreach ($attachments['#attached']['html_head'] as $index => $attachment) {
if ($attachment[1] == $name) {
return $index;
}
}
return -1;
}
/**
* Helper function to get promote states as a flat array.
*
* @param EntityInterface $entity
* @return array
*/
function _infinite_base_flat_promote_states(EntityInterface $entity) {
if ($entity->hasField('field_promote_states')) {
$promote_states = array_map(function($el) {
return $el['value'];
}, $entity->field_promote_states->getValue());
return $promote_states;
}
return FALSE;
}