function auth0_theme in Auth0 Single Sign On 7.2
Same name and namespace in other branches
- 8.2 auth0.module \auth0_theme()
- 8 auth0.module \auth0_theme()
Implements hook_theme().
Define the template to use for the /user action.
File
- ./
auth0.module, line 659
Code
function auth0_theme() {
return array(
'auth0_lock' => array(
'variables' => array(
'mode' => 'signin',
),
'template' => 'auth0-lock',
),
);
}