You are here

function varbase_content_planner_theme_suggestions_item_list_alter in Varbase Workflow 2.0.x

Same name and namespace in other branches
  1. 8 modules/varbase_content_planner/varbase_content_planner.module \varbase_content_planner_theme_suggestions_item_list_alter()

Implements hook_theme_suggestions_HOOK_alter().

File

modules/varbase_content_planner/varbase_content_planner.module, line 33
Contains varbase_content_planner.module.

Code

function varbase_content_planner_theme_suggestions_item_list_alter(&$suggestions, $variables) {
  if (isset($variables['items']['content_calendar']) || isset($variables['items']['content_kanban'])) {
    $suggestions[] = 'varbase_item_list';
  }
}