You are here

function ctools_theme in Chaos Tool Suite (ctools) 8.3

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

Implements hook_theme().

Parameters

$existing:

$type:

$theme:

$path:

Return value

\array[][]

File

./ctools.module, line 21
Provides utility and helper APIs for Drupal developers and site builders.

Code

function ctools_theme($existing, $type, $theme, $path) {
  return [
    'ctools_wizard_trail' => [
      'variables' => [
        'wizard' => NULL,
        'cached_values' => [],
        'trail' => [],
        'divider' => ' » ',
        'step' => NULL,
      ],
    ],
    'ctools_wizard_trail_links' => [
      'variables' => [
        'wizard' => NULL,
        'cached_values' => [],
        'trail' => [],
        'divider' => ' » ',
        'step' => NULL,
      ],
    ],
  ];
}