function content_planner_theme in Content Planner 8
Implements hook_theme().
File
- ./
content_planner.module, line 13 - Contains content_planner.module.
Code
function content_planner_theme($existing, $type, $theme, $path) {
return [
'content_planner_dashboard' => [
'variables' => [
'blocks' => [],
],
],
'content_planner_dashboard_block' => [
'variables' => [
'css_id' => NULL,
'has_permission' => FALSE,
'block_id' => NULL,
'name' => [],
'block' => [],
],
],
'content_planner_dashboard_user_block' => [
'variables' => [
'users' => [],
],
],
];
}