You are here

function workspace_theme in Workspace 8

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

Implements hook_theme().

Parameters

$existing:

$type:

$theme:

$path:

Return value

array

File

./workspace.module, line 135

Code

function workspace_theme($existing, $type, $theme, $path) {
  return [
    'workspace_add_list' => [
      'variables' => [
        'content' => NULL,
      ],
    ],
    'workspace_rev' => [
      'render element' => 'elements',
    ],
  ];
}