taxonomy.module 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. <?php
  2. /**
  3. * @file
  4. * Enables the organization of content into categories.
  5. */
  6. use Drupal\Component\Utility\Tags;
  7. use Drupal\Component\Utility\Unicode;
  8. use Drupal\Core\Entity\EntityInterface;
  9. use Drupal\Core\Entity\Sql\SqlContentEntityStorage;
  10. use Drupal\Core\Render\Element;
  11. use Drupal\Core\Routing\RouteMatchInterface;
  12. use Drupal\Core\Url;
  13. use Drupal\taxonomy\Entity\Term;
  14. use Drupal\taxonomy\Entity\Vocabulary;
  15. use Drupal\taxonomy\TermInterface;
  16. use Drupal\taxonomy\VocabularyInterface;
  17. /**
  18. * Denotes that no term in the vocabulary has a parent.
  19. *
  20. * @deprecated in Drupal 8.2.x and will be removed before 9.0.0. Use
  21. * \Drupal\taxonomy\VocabularyInterface::HIERARCHY_DISABLED instead.
  22. */
  23. const TAXONOMY_HIERARCHY_DISABLED = 0;
  24. /**
  25. * Denotes that one or more terms in the vocabulary has a single parent.
  26. *
  27. * @deprecated in Drupal 8.2.x and will be removed before 9.0.0. Use
  28. * \Drupal\taxonomy\VocabularyInterface::HIERARCHY_SINGLE instead.
  29. */
  30. const TAXONOMY_HIERARCHY_SINGLE = 1;
  31. /**
  32. * Denotes that one or more terms in the vocabulary have multiple parents.
  33. *
  34. * @deprecated in Drupal 8.2.x and will be removed before 9.0.0. Use
  35. * \Drupal\taxonomy\VocabularyInterface::HIERARCHY_MULTIPLE instead.
  36. */
  37. const TAXONOMY_HIERARCHY_MULTIPLE = 2;
  38. /**
  39. * Implements hook_help().
  40. */
  41. function taxonomy_help($route_name, RouteMatchInterface $route_match) {
  42. switch ($route_name) {
  43. case 'help.page.taxonomy':
  44. $field_ui_url = \Drupal::moduleHandler()->moduleExists('field_ui') ? \Drupal::url('help.page', ['name' => 'field_ui']) : '#';
  45. $output = '';
  46. $output .= '<h3>' . t('About') . '</h3>';
  47. $output .= '<p>' . t('The Taxonomy module allows users who have permission to create and edit content to categorize (tag) content of that type. Users who have the <em>Administer vocabularies and terms</em> <a href=":permissions" title="Taxonomy module permissions">permission</a> can add <em>vocabularies</em> that contain a set of related <em>terms</em>. The terms in a vocabulary can either be pre-set by an administrator or built gradually as content is added and edited. Terms may be organized hierarchically if desired.', [':permissions' => \Drupal::url('user.admin_permissions', [], ['fragment' => 'module-taxonomy'])]) . '</p>';
  48. $output .= '<p>' . t('For more information, see the <a href=":taxonomy">online documentation for the Taxonomy module</a>.', [':taxonomy' => 'https://www.drupal.org/documentation/modules/taxonomy/']) . '</p>';
  49. $output .= '<h3>' . t('Uses') . '</h3>';
  50. $output .= '<dl>';
  51. $output .= '<dt>' . t('Managing vocabularies') . '</dt>';
  52. $output .= '<dd>' . t('Users who have the <em>Administer vocabularies and terms</em> permission can add and edit vocabularies from the <a href=":taxonomy_admin">Taxonomy administration page</a>. Vocabularies can be deleted from their <em>Edit vocabulary</em> page. Users with the <em>Taxonomy term: Administer fields</em> permission may add additional fields for terms in that vocabulary using the <a href=":field_ui">Field UI module</a>.', [':taxonomy_admin' => \Drupal::url('entity.taxonomy_vocabulary.collection'), ':field_ui' => $field_ui_url]) . '</dd>';
  53. $output .= '<dt>' . t('Managing terms') . '</dt>';
  54. $output .= '<dd>' . t('Users who have the <em>Administer vocabularies and terms</em> permission or the <em>Edit terms</em> permission for a particular vocabulary can add, edit, and organize the terms in a vocabulary from a vocabulary\'s term listing page, which can be accessed by going to the <a href=":taxonomy_admin">Taxonomy administration page</a> and clicking <em>List terms</em> in the <em>Operations</em> column. Users must have the <em>Administer vocabularies and terms</em> permission or the <em>Delete terms</em> permission for a particular vocabulary to delete terms.', [':taxonomy_admin' => \Drupal::url('entity.taxonomy_vocabulary.collection')]) . ' </dd>';
  55. $output .= '<dt>' . t('Classifying entity content') . '</dt>';
  56. $output .= '<dd>' . t('A user with the <em>Administer fields</em> permission for a certain entity type may add <em>Taxonomy term</em> reference fields to the entity type, which will allow entities to be classified using taxonomy terms. See the <a href=":entity_reference">Entity Reference help</a> for more information about reference fields. See the <a href=":field">Field module help</a> and the <a href=":field_ui">Field UI help</a> pages for general information on fields and how to create and manage them.', [':field_ui' => $field_ui_url, ':field' => \Drupal::url('help.page', ['name' => 'field']), ':entity_reference' => \Drupal::url('help.page', ['name' => 'entity_reference'])]) . '</dd>';
  57. $output .= '<dt>' . t('Adding new terms during content creation') . '</dt>';
  58. $output .= '<dd>' . t('Allowing users to add new terms gradually builds a vocabulary as content is added and edited. Users can add new terms if either of the two <em>Autocomplete</em> widgets is chosen for the Taxonomy term reference field in the <em>Manage form display</em> page for the field. You will also need to enable the <em>Create referenced entities if they don\'t already exist</em> option, and restrict the field to one vocabulary.') . '</dd>';
  59. $output .= '<dt>' . t('Configuring displays and form displays') . '</dt>';
  60. $output .= '<dd>' . t('See the <a href=":entity_reference">Entity Reference help</a> page for the field widgets and formatters that can be configured for any reference field on the <em>Manage display</em> and <em>Manage form display</em> pages. Taxonomy additionally provides an <em>RSS category</em> formatter that displays nothing when the entity item is displayed as HTML, but displays an RSS category instead of a list when the entity item is displayed in an RSS feed.', [':entity_reference' => \Drupal::url('help.page', ['name' => 'entity_reference'])]) . '</li>';
  61. $output .= '</ul>';
  62. $output .= '</dd>';
  63. $output .= '</dl>';
  64. return $output;
  65. case 'entity.taxonomy_vocabulary.collection':
  66. $output = '<p>' . t('Taxonomy is for categorizing content. Terms are grouped into vocabularies. For example, a vocabulary called "Fruit" would contain the terms "Apple" and "Banana".') . '</p>';
  67. return $output;
  68. case 'entity.taxonomy_vocabulary.overview_form':
  69. $vocabulary = $route_match->getParameter('taxonomy_vocabulary');
  70. switch ($vocabulary->getHierarchy()) {
  71. case VocabularyInterface::HIERARCHY_DISABLED:
  72. return '<p>' . t('You can reorganize the terms in %capital_name using their drag-and-drop handles, and group terms under a parent term by sliding them under and to the right of the parent.', ['%capital_name' => Unicode::ucfirst($vocabulary->label()), '%name' => $vocabulary->label()]) . '</p>';
  73. case VocabularyInterface::HIERARCHY_SINGLE:
  74. return '<p>' . t('%capital_name contains terms grouped under parent terms. You can reorganize the terms in %capital_name using their drag-and-drop handles.', ['%capital_name' => Unicode::ucfirst($vocabulary->label()), '%name' => $vocabulary->label()]) . '</p>';
  75. case VocabularyInterface::HIERARCHY_MULTIPLE:
  76. return '<p>' . t('%capital_name contains terms with multiple parents. Drag and drop of terms with multiple parents is not supported, but you can re-enable drag-and-drop support by editing each term to include only a single parent.', ['%capital_name' => Unicode::ucfirst($vocabulary->label())]) . '</p>';
  77. }
  78. }
  79. }
  80. /**
  81. * Entity URI callback.
  82. */
  83. function taxonomy_term_uri($term) {
  84. return new Url('entity.taxonomy_term.canonical', [
  85. 'taxonomy_term' => $term->id(),
  86. ]);
  87. }
  88. /**
  89. * Implements hook_page_attachments_alter().
  90. */
  91. function taxonomy_page_attachments_alter(array &$page) {
  92. $route_match = \Drupal::routeMatch();
  93. if ($route_match->getRouteName() == 'entity.taxonomy_term.canonical' && ($term = $route_match->getParameter('taxonomy_term')) && $term instanceof TermInterface) {
  94. foreach ($term->uriRelationships() as $rel) {
  95. // Set the URI relationships, like canonical.
  96. $page['#attached']['html_head_link'][] = [
  97. [
  98. 'rel' => $rel,
  99. 'href' => $term->url($rel),
  100. ],
  101. TRUE,
  102. ];
  103. // Set the term path as the canonical URL to prevent duplicate content.
  104. if ($rel == 'canonical') {
  105. // Set the non-aliased canonical path as a default shortlink.
  106. $page['#attached']['html_head_link'][] = [
  107. [
  108. 'rel' => 'shortlink',
  109. 'href' => $term->url($rel, ['alias' => TRUE]),
  110. ],
  111. TRUE,
  112. ];
  113. }
  114. }
  115. }
  116. }
  117. /**
  118. * Implements hook_theme().
  119. */
  120. function taxonomy_theme() {
  121. return [
  122. 'taxonomy_term' => [
  123. 'render element' => 'elements',
  124. ],
  125. ];
  126. }
  127. /**
  128. * Checks and updates the hierarchy flag of a vocabulary.
  129. *
  130. * Checks the current parents of all terms in a vocabulary and updates the
  131. * vocabulary's hierarchy setting to the lowest possible level. If no term
  132. * has parent terms then the vocabulary will be given a hierarchy of
  133. * VocabularyInterface::HIERARCHY_DISABLED. If any term has a single parent then
  134. * the vocabulary will be given a hierarchy of
  135. * VocabularyInterface::HIERARCHY_SINGLE. If any term has multiple parents then
  136. * the vocabulary will be given a hierarchy of
  137. * VocabularyInterface::HIERARCHY_MULTIPLE.
  138. *
  139. * @param \Drupal\taxonomy\VocabularyInterface $vocabulary
  140. * A taxonomy vocabulary entity.
  141. * @param $changed_term
  142. * An array of the term structure that was updated.
  143. *
  144. * @return
  145. * An integer that represents the level of the vocabulary's hierarchy.
  146. */
  147. function taxonomy_check_vocabulary_hierarchy(VocabularyInterface $vocabulary, $changed_term) {
  148. $tree = \Drupal::entityManager()->getStorage('taxonomy_term')->loadTree($vocabulary->id());
  149. $hierarchy = VocabularyInterface::HIERARCHY_DISABLED;
  150. foreach ($tree as $term) {
  151. // Update the changed term with the new parent value before comparison.
  152. if ($term->tid == $changed_term['tid']) {
  153. $term = (object) $changed_term;
  154. $term->parents = $term->parent;
  155. }
  156. // Check this term's parent count.
  157. if (count($term->parents) > 1) {
  158. $hierarchy = VocabularyInterface::HIERARCHY_MULTIPLE;
  159. break;
  160. }
  161. elseif (count($term->parents) == 1 && !isset($term->parents[0])) {
  162. $hierarchy = VocabularyInterface::HIERARCHY_SINGLE;
  163. }
  164. }
  165. if ($hierarchy != $vocabulary->getHierarchy()) {
  166. $vocabulary->setHierarchy($hierarchy);
  167. $vocabulary->save();
  168. }
  169. return $hierarchy;
  170. }
  171. /**
  172. * Generates an array which displays a term detail page.
  173. *
  174. * @param \Drupal\taxonomy\Entity\Term $term
  175. * A taxonomy term object.
  176. * @param string $view_mode
  177. * View mode; e.g., 'full', 'teaser', etc.
  178. * @param string $langcode
  179. * (optional) A language code to use for rendering. Defaults to the global
  180. * content language of the current request.
  181. *
  182. * @return array
  183. * A $page element suitable for use by drupal_render().
  184. */
  185. function taxonomy_term_view(Term $term, $view_mode = 'full', $langcode = NULL) {
  186. return entity_view($term, $view_mode, $langcode);
  187. }
  188. /**
  189. * Constructs a drupal_render() style array from an array of loaded terms.
  190. *
  191. * @param array $terms
  192. * An array of taxonomy terms as returned by Term::loadMultiple().
  193. * @param string $view_mode
  194. * View mode; e.g., 'full', 'teaser', etc.
  195. * @param string $langcode
  196. * (optional) A language code to use for rendering. Defaults to the global
  197. * content language of the current request.
  198. *
  199. * @return array
  200. * An array in the format expected by drupal_render().
  201. */
  202. function taxonomy_term_view_multiple(array $terms, $view_mode = 'full', $langcode = NULL) {
  203. return entity_view_multiple($terms, $view_mode, $langcode);
  204. }
  205. /**
  206. * Implements hook_theme_suggestions_HOOK().
  207. */
  208. function taxonomy_theme_suggestions_taxonomy_term(array $variables) {
  209. $suggestions = [];
  210. /** @var \Drupal\taxonomy\TermInterface $term */
  211. $term = $variables['elements']['#taxonomy_term'];
  212. $suggestions[] = 'taxonomy_term__' . $term->bundle();
  213. $suggestions[] = 'taxonomy_term__' . $term->id();
  214. return $suggestions;
  215. }
  216. /**
  217. * Prepares variables for taxonomy term templates.
  218. *
  219. * Default template: taxonomy-term.html.twig.
  220. *
  221. * @param array $variables
  222. * An associative array containing:
  223. * - elements: An associative array containing the taxonomy term and any
  224. * fields attached to the term. Properties used:
  225. * - #taxonomy_term: A \Drupal\taxonomy\TermInterface object.
  226. * - #view_mode: The current view mode for this taxonomy term, e.g.
  227. * 'full' or 'teaser'.
  228. * - attributes: HTML attributes for the containing element.
  229. */
  230. function template_preprocess_taxonomy_term(&$variables) {
  231. $variables['view_mode'] = $variables['elements']['#view_mode'];
  232. $variables['term'] = $variables['elements']['#taxonomy_term'];
  233. /** @var \Drupal\taxonomy\TermInterface $term */
  234. $term = $variables['term'];
  235. $variables['url'] = $term->url();
  236. // We use name here because that is what appears in the UI.
  237. $variables['name'] = $variables['elements']['name'];
  238. unset($variables['elements']['name']);
  239. $variables['page'] = $variables['view_mode'] == 'full' && taxonomy_term_is_page($term);
  240. // Helpful $content variable for templates.
  241. $variables['content'] = [];
  242. foreach (Element::children($variables['elements']) as $key) {
  243. $variables['content'][$key] = $variables['elements'][$key];
  244. }
  245. }
  246. /**
  247. * Returns whether the current page is the page of the passed-in term.
  248. *
  249. * @param \Drupal\taxonomy\Entity\Term $term
  250. * A taxonomy term entity.
  251. */
  252. function taxonomy_term_is_page(Term $term) {
  253. if (\Drupal::routeMatch()->getRouteName() == 'entity.taxonomy_term.canonical' && $page_term_id = \Drupal::routeMatch()->getRawParameter('taxonomy_term')) {
  254. return $page_term_id == $term->id();
  255. }
  256. return FALSE;
  257. }
  258. /**
  259. * Clear all static cache variables for terms.
  260. */
  261. function taxonomy_terms_static_reset() {
  262. \Drupal::entityManager()->getStorage('taxonomy_term')->resetCache();
  263. }
  264. /**
  265. * Clear all static cache variables for vocabularies.
  266. *
  267. * @param $ids
  268. * An array of ids to reset in the entity cache.
  269. */
  270. function taxonomy_vocabulary_static_reset(array $ids = NULL) {
  271. \Drupal::entityManager()->getStorage('taxonomy_vocabulary')->resetCache($ids);
  272. }
  273. /**
  274. * Get names for all taxonomy vocabularies.
  275. *
  276. * @return array
  277. * A list of existing vocabulary IDs.
  278. */
  279. function taxonomy_vocabulary_get_names() {
  280. $names = &drupal_static(__FUNCTION__);
  281. if (!isset($names)) {
  282. $names = [];
  283. $config_names = \Drupal::configFactory()->listAll('taxonomy.vocabulary.');
  284. foreach ($config_names as $config_name) {
  285. $id = substr($config_name, strlen('taxonomy.vocabulary.'));
  286. $names[$id] = $id;
  287. }
  288. }
  289. return $names;
  290. }
  291. /**
  292. * Try to map a string to an existing term, as for glossary use.
  293. *
  294. * Provides a case-insensitive and trimmed mapping, to maximize the
  295. * likelihood of a successful match.
  296. *
  297. * @param $name
  298. * Name of the term to search for.
  299. * @param $vocabulary
  300. * (optional) Vocabulary machine name to limit the search. Defaults to NULL.
  301. *
  302. * @return
  303. * An array of matching term objects.
  304. */
  305. function taxonomy_term_load_multiple_by_name($name, $vocabulary = NULL) {
  306. $values = ['name' => trim($name)];
  307. if (isset($vocabulary)) {
  308. $vocabularies = taxonomy_vocabulary_get_names();
  309. if (isset($vocabularies[$vocabulary])) {
  310. $values['vid'] = $vocabulary;
  311. }
  312. else {
  313. // Return an empty array when filtering by a non-existing vocabulary.
  314. return [];
  315. }
  316. }
  317. return entity_load_multiple_by_properties('taxonomy_term', $values);
  318. }
  319. /**
  320. * Load multiple taxonomy terms based on certain conditions.
  321. *
  322. * This function should be used whenever you need to load more than one term
  323. * from the database. Terms are loaded into memory and will not require
  324. * database access if loaded again during the same page request.
  325. *
  326. * @see entity_load_multiple()
  327. * @see \Drupal\Core\Entity\Query\EntityQueryInterface
  328. *
  329. * @deprecated in Drupal 8.x, will be removed before Drupal 9.0.
  330. * Use \Drupal\taxonomy\Entity\Term::loadMultiple().
  331. *
  332. * @param array $tids
  333. * (optional) An array of entity IDs. If omitted, all entities are loaded.
  334. *
  335. * @return array
  336. * An array of taxonomy term entities, indexed by tid. When no results are
  337. * found, an empty array is returned.
  338. */
  339. function taxonomy_term_load_multiple(array $tids = NULL) {
  340. return Term::loadMultiple($tids);
  341. }
  342. /**
  343. * Loads multiple taxonomy vocabularies based on certain conditions.
  344. *
  345. * This function should be used whenever you need to load more than one
  346. * vocabulary from the database. Terms are loaded into memory and will not
  347. * require database access if loaded again during the same page request.
  348. *
  349. * @see entity_load_multiple()
  350. *
  351. * @deprecated in Drupal 8.x, will be removed before Drupal 9.0.
  352. * Use \Drupal\taxonomy\Entity\Vocabulary::loadMultiple().
  353. *
  354. * @param array $vids
  355. * (optional) An array of entity IDs. If omitted, all entities are loaded.
  356. *
  357. * @return array
  358. * An array of vocabulary objects, indexed by vid.
  359. */
  360. function taxonomy_vocabulary_load_multiple(array $vids = NULL) {
  361. return Vocabulary::loadMultiple($vids);
  362. }
  363. /**
  364. * Return the taxonomy vocabulary entity matching a vocabulary ID.
  365. *
  366. * @deprecated in Drupal 8.x, will be removed before Drupal 9.0.
  367. * Use \Drupal\taxonomy\Entity\Vocabulary::load().
  368. *
  369. * @param int $vid
  370. * The vocabulary's ID.
  371. *
  372. * @return \Drupal\taxonomy\Entity\Vocabulary|null
  373. * The taxonomy vocabulary entity, if exists, NULL otherwise. Results are
  374. * statically cached.
  375. */
  376. function taxonomy_vocabulary_load($vid) {
  377. return Vocabulary::load($vid);
  378. }
  379. /**
  380. * Return the taxonomy term entity matching a term ID.
  381. *
  382. * @deprecated in Drupal 8.x, will be removed before Drupal 9.0.
  383. * Use \Drupal\taxonomy\Entity\Term::load().
  384. *
  385. * @param $tid
  386. * A term's ID
  387. *
  388. * @return \Drupal\taxonomy\Entity\Term|null
  389. * A taxonomy term entity, or NULL if the term was not found. Results are
  390. * statically cached.
  391. */
  392. function taxonomy_term_load($tid) {
  393. if (!is_numeric($tid)) {
  394. return NULL;
  395. }
  396. return Term::load($tid);
  397. }
  398. /**
  399. * Implodes a list of tags of a certain vocabulary into a string.
  400. *
  401. * @see \Drupal\Component\Utility\Tags::explode()
  402. */
  403. function taxonomy_implode_tags($tags, $vid = NULL) {
  404. $typed_tags = [];
  405. foreach ($tags as $tag) {
  406. // Extract terms belonging to the vocabulary in question.
  407. if (!isset($vid) || $tag->bundle() == $vid) {
  408. // Make sure we have a completed loaded taxonomy term.
  409. if ($tag instanceof EntityInterface && $label = $tag->label()) {
  410. // Commas and quotes in tag names are special cases, so encode 'em.
  411. $typed_tags[] = Tags::encode($label);
  412. }
  413. }
  414. }
  415. return implode(', ', $typed_tags);
  416. }
  417. /**
  418. * Title callback for term pages.
  419. *
  420. * @param \Drupal\taxonomy\Entity\Term $term
  421. * A taxonomy term entity.
  422. *
  423. * @return
  424. * The term name to be used as the page title.
  425. */
  426. function taxonomy_term_title(Term $term) {
  427. return $term->getName();
  428. }
  429. /**
  430. * @defgroup taxonomy_index Taxonomy indexing
  431. * @{
  432. * Functions to maintain taxonomy indexing.
  433. *
  434. * Taxonomy uses default field storage to store canonical relationships
  435. * between terms and fieldable entities. However its most common use case
  436. * requires listing all content associated with a term or group of terms
  437. * sorted by creation date. To avoid slow queries due to joining across
  438. * multiple node and field tables with various conditions and order by criteria,
  439. * we maintain a denormalized table with all relationships between terms,
  440. * published nodes and common sort criteria such as status, sticky and created.
  441. * When using other field storage engines or alternative methods of
  442. * denormalizing this data you should set the
  443. * taxonomy.settings:maintain_index_table to '0' to avoid unnecessary writes in
  444. * SQL.
  445. */
  446. /**
  447. * Implements hook_ENTITY_TYPE_insert() for node entities.
  448. */
  449. function taxonomy_node_insert(EntityInterface $node) {
  450. // Add taxonomy index entries for the node.
  451. taxonomy_build_node_index($node);
  452. }
  453. /**
  454. * Builds and inserts taxonomy index entries for a given node.
  455. *
  456. * The index lists all terms that are related to a given node entity, and is
  457. * therefore maintained at the entity level.
  458. *
  459. * @param \Drupal\node\Entity\Node $node
  460. * The node entity.
  461. */
  462. function taxonomy_build_node_index($node) {
  463. // We maintain a denormalized table of term/node relationships, containing
  464. // only data for current, published nodes.
  465. if (!\Drupal::config('taxonomy.settings')->get('maintain_index_table') || !(\Drupal::entityManager()->getStorage('node') instanceof SqlContentEntityStorage)) {
  466. return;
  467. }
  468. $status = $node->isPublished();
  469. $sticky = (int) $node->isSticky();
  470. // We only maintain the taxonomy index for published nodes.
  471. if ($status && $node->isDefaultRevision()) {
  472. // Collect a unique list of all the term IDs from all node fields.
  473. $tid_all = [];
  474. $entity_reference_class = 'Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem';
  475. foreach ($node->getFieldDefinitions() as $field) {
  476. $field_name = $field->getName();
  477. $class = $field->getItemDefinition()->getClass();
  478. $is_entity_reference_class = ($class === $entity_reference_class) || is_subclass_of($class, $entity_reference_class);
  479. if ($is_entity_reference_class && $field->getSetting('target_type') == 'taxonomy_term') {
  480. foreach ($node->getTranslationLanguages() as $language) {
  481. foreach ($node->getTranslation($language->getId())->$field_name as $item) {
  482. if (!$item->isEmpty()) {
  483. $tid_all[$item->target_id] = $item->target_id;
  484. }
  485. }
  486. }
  487. }
  488. }
  489. // Insert index entries for all the node's terms.
  490. if (!empty($tid_all)) {
  491. foreach ($tid_all as $tid) {
  492. db_merge('taxonomy_index')
  493. ->key(['nid' => $node->id(), 'tid' => $tid, 'status' => $node->isPublished()])
  494. ->fields(['sticky' => $sticky, 'created' => $node->getCreatedTime()])
  495. ->execute();
  496. }
  497. }
  498. }
  499. }
  500. /**
  501. * Implements hook_ENTITY_TYPE_update() for node entities.
  502. */
  503. function taxonomy_node_update(EntityInterface $node) {
  504. // If we're not dealing with the default revision of the node, do not make any
  505. // change to the taxonomy index.
  506. if (!$node->isDefaultRevision()) {
  507. return;
  508. }
  509. taxonomy_delete_node_index($node);
  510. taxonomy_build_node_index($node);
  511. }
  512. /**
  513. * Implements hook_ENTITY_TYPE_predelete() for node entities.
  514. */
  515. function taxonomy_node_predelete(EntityInterface $node) {
  516. // Clean up the {taxonomy_index} table when nodes are deleted.
  517. taxonomy_delete_node_index($node);
  518. }
  519. /**
  520. * Deletes taxonomy index entries for a given node.
  521. *
  522. * @param \Drupal\Core\Entity\EntityInterface $node
  523. * The node entity.
  524. */
  525. function taxonomy_delete_node_index(EntityInterface $node) {
  526. if (\Drupal::config('taxonomy.settings')->get('maintain_index_table')) {
  527. db_delete('taxonomy_index')->condition('nid', $node->id())->execute();
  528. }
  529. }
  530. /**
  531. * Implements hook_ENTITY_TYPE_delete() for taxonomy_term entities.
  532. */
  533. function taxonomy_taxonomy_term_delete(Term $term) {
  534. if (\Drupal::config('taxonomy.settings')->get('maintain_index_table')) {
  535. // Clean up the {taxonomy_index} table when terms are deleted.
  536. db_delete('taxonomy_index')->condition('tid', $term->id())->execute();
  537. }
  538. }
  539. /**
  540. * @} End of "defgroup taxonomy_index".
  541. */