You are here

function social_auth_theme in Social Auth 8.2

Same name and namespace in other branches
  1. 8 social_auth.module \social_auth_theme()
  2. 3.x social_auth.module \social_auth_theme()

Implements hook_theme().

File

./social_auth.module, line 13
Allows login using different social networking services.

Code

function social_auth_theme() {
  return [
    'login_with' => [
      'variables' => [
        'social_networks' => NULL,
        'destination' => NULL,
      ],
    ],
  ];
}