You are here

function popup_maker_theme in Popup Maker - All popup types 7

Same name and namespace in other branches
  1. 8 popup_maker.module \popup_maker_theme()

File

./popup_maker.module, line 19

Code

function popup_maker_theme() {
  return array(
    'popup_maker_settings' => array(
      'variables' => array(
        'settings' => array(),
        'token' => null,
        'edit' => false,
        'editingPopupId' => null,
        'displayRules' => null,
      ),
      'template' => 'popup_maker_settings',
    ),
    'popup_maker_display_rule' => array(
      'variables' => array(
        'rule' => array(),
        'index' => '{index}',
        'last' => false,
        'displayRules' => array(),
      ),
      'template' => 'popup_maker_display_rule',
    ),
    'popup_maker_edit_popup' => array(
      'variables' => array(
        'settings' => array(),
        'token' => null,
        'editingPopupId' => null,
      ),
      'template' => 'popup_maker_edit_popup',
    ),
    'popup_maker_api_credentials' => array(
      'variables' => array(
        'settings' => array(),
        'token' => null,
      ),
      'template' => 'popup_maker_api_credentials',
    ),
    'popup_maker_popups' => array(
      'variables' => array(
        'settings' => array(),
        'token' => null,
      ),
      'template' => 'popup_maker_popups',
    ),
  );
}