Same name and namespace in other branches
  1. 7.x-1.x easy_breadcrumb.module \easy_breadcrumb_theme() 1 comment

Implements hook_theme().

File

./easy_breadcrumb.module, line 97

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',
        ),
    );
}