You are here

function varbase_support_preprocess_fieldable_panels_pane in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

Implements template_preprocess_fieldable_panels_pane().

Preprocess function for fieldable-panels-pane.tpl.php

File

modules/custom/varbase_support/includes/preprocess.inc, line 54

Code

function varbase_support_preprocess_fieldable_panels_pane(&$vars) {

  // Add new theme hook suggestion to help with themeing effort.
  if (!empty($vars['elements']['#view_mode'])) {
    $vars['theme_hook_suggestions'][] = 'fieldable_panels_pane__' . $vars['elements']['#view_mode'];
    $vars['theme_hook_suggestions'][] = 'fieldable_panels_pane__' . $vars['elements']['#element']->bundle . '__' . $vars['elements']['#view_mode'];
  }
}