You are here

function logintoboggan_theme in LoginToboggan 8

Same name and namespace in other branches
  1. 6 logintoboggan.module \logintoboggan_theme()
  2. 7 logintoboggan.module \logintoboggan_theme()

Implements hook_theme().

File

./logintoboggan.module, line 278
LoginToboggan module.

Code

function logintoboggan_theme($existing, $type, $theme, $path) {
  return [
    'lt__status_messages' => [
      'base_hook' => 'status_messages',
    ],
    'lt_username_title' => [
      'variables' => [
        'form_id' => NULL,
      ],
    ],
    'lt_username_description' => [
      'variables' => [
        'form_id' => NULL,
      ],
    ],
    'lt_password_title' => [
      'variables' => [
        'form_id' => NULL,
      ],
    ],
    'lt_password_description' => [
      'variables' => [
        'form_id' => NULL,
      ],
    ],
    'lt_access_denied' => [
      'variables' => [],
    ],
    'lt_loggedinblock' => [
      'variables' => [
        'account' => NULL,
      ],
    ],
    'lt_login_block' => [
      'render element' => 'elements',
    ],
    'lt_login_link' => [
      'variables' => [],
    ],
    'lt_unified_login_button' => [
      'variables' => [],
    ],
  ];
}