taxonomy.module 23 KB

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