social_auth.module in Social Auth 8
Same filename and directory in other branches
Allows login using different social networking services.
File
social_auth.moduleView source
<?php
/**
* @file
* Allows login using different social networking services.
*/
/**
* Implements hook_theme().
*/
function social_auth_theme() {
return array(
'login_with' => array(
'variables' => array(
'social_networks' => NULL,
),
),
);
}
/**
* Implements hook_preprocess_HOOK().
*/
function social_auth_preprocess_login_with(&$variables) {
$variables['base_path'] = base_path();
}
Functions
Name | Description |
---|---|
social_auth_preprocess_login_with | Implements hook_preprocess_HOOK(). |
social_auth_theme | Implements hook_theme(). |