You are here

function synonyms_term_synonyms_breadcrumb in Synonyms 7

Inject the breadcrumb trail if necessary.

1 string reference to 'synonyms_term_synonyms_breadcrumb'
term_synonyms.inc in plugins/arguments/term_synonyms.inc

File

plugins/arguments/term_synonyms.inc, line 142

Code

function synonyms_term_synonyms_breadcrumb($conf, $context) {

  // Outsource the real implementation of breadcrumb to terms argument plugin.
  $plugin = ctools_get_plugins('ctools', 'arguments', 'term');
  $function = ctools_plugin_get_function($plugin, 'breadcrumb');
  if ($function) {
    call_user_func_array($function, func_get_args());
  }
}