You are here

function panels_ipe_theme in Panels 7.3

Same name and namespace in other branches
  1. 6.3 panels_ipe/panels_ipe.module \panels_ipe_theme()

Implementation of hook_theme().

File

panels_ipe/panels_ipe.module, line 40

Code

function panels_ipe_theme() {
  return array(
    'panels_ipe_pane_wrapper' => array(
      'variables' => array(
        'output' => NULL,
        'pane' => NULL,
        'display' => NULL,
        'renderer' => NULL,
      ),
    ),
    'panels_ipe_region_wrapper' => array(
      'variables' => array(
        'output' => NULL,
        'region_id' => NULL,
        'display' => NULL,
        'controls' => NULL,
        'renderer' => NULL,
      ),
    ),
    'panels_ipe_add_pane_button' => array(
      'variables' => array(
        'region_id' => NULL,
        'display' => NULL,
        'renderer' => NULL,
      ),
    ),
    'panels_ipe_placeholder_pane' => array(
      'variables' => array(
        'region_id' => NULL,
        'region_title' => NULL,
      ),
    ),
    'panels_ipe_dnd_form_container' => array(
      'variables' => array(
        'link' => NULL,
        'cache_key' => NULL,
        'display' => NULL,
      ),
    ),
    'panels_ipe_toolbar' => array(
      'variables' => array(
        'buttons' => NULL,
      ),
    ),
  );
}