You are here

function taxonomy_term_depth_get_child in Taxonomy Term Depth 8.2

Same name and namespace in other branches
  1. 8 taxonomy_term_depth.module \taxonomy_term_depth_get_child()
  2. 7 taxonomy_term_depth.module \taxonomy_term_depth_get_child()

Gets child of the term

Parameters

$tid: Term tid to find its parent

1 call to taxonomy_term_depth_get_child()
taxonomy_term_depth_get_children in ./taxonomy_term_depth.module
Gets children of the term.

File

./taxonomy_term_depth.module, line 155
Main module file.

Code

function taxonomy_term_depth_get_child($tid, $nocache = FALSE) {
  $cache =& drupal_static(__FUNCTION__, []);
  $cache_key = $tid;
  if (!isset($cache[$cache_key]) || $nocache) {
    if (version_compare(Drupal::VERSION, '8.6.0', '>=')) {
      $cache[$cache_key] = _taxonomy_term_depth_get_child_d86($tid);
    }
    else {
      $cache[$cache_key] = _taxonomy_term_depth_get_child_legacy_d85($tid);
    }
  }
  return $cache[$cache_key];
}