taxonomy.module 23 KB

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