You are here

function easy_breadcrumb_theme in Easy Breadcrumb 7.2

Same name and namespace in other branches
  1. 6 easy_breadcrumb.module \easy_breadcrumb_theme()
  2. 7 easy_breadcrumb.module \easy_breadcrumb_theme()

Implements hook_theme().

File

./easy_breadcrumb.module, line 97
The Easy Breadcrumb module provides a block to be embedded in any page.

Code

function easy_breadcrumb_theme($existing, $type, $theme, $path) {
  return array(
    'easy_breadcrumb' => array(
      'variables' => array(
        'breadcrumb' => NULL,
        'segments_quantity' => NULL,
        'separator' => NULL,
        'separator_ending' => NULL,
      ),
      'template' => 'easy-breadcrumb',
      'path' => drupal_get_path('module', 'easy_breadcrumb') . '/tpl',
    ),
  );
}