You are here

function login_destination_theme in Login Destination 7

Implements hook_theme().

File

./login_destination.module, line 129
Control where users are directed to, once they login

Code

function login_destination_theme() {
  return array(
    'login_destination_destination' => array(
      'variables' => array(
        'destination' => NULL,
      ),
      'file' => 'login_destination.admin.inc',
    ),
    'login_destination_pages' => array(
      'variables' => array(
        'pages' => NULL,
        'pages_type' => 0,
      ),
      'file' => 'login_destination.admin.inc',
    ),
    'login_destination_triggers' => array(
      'variables' => array(
        'items' => NULL,
      ),
      'file' => 'login_destination.admin.inc',
    ),
    'login_destination_roles' => array(
      'variables' => array(
        'items' => NULL,
      ),
      'file' => 'login_destination.admin.inc',
    ),
    'login_destination_overview_form' => array(
      'file' => 'login_destination.admin.inc',
      'render element' => 'form',
    ),
  );
}