You are here

function gauth_user_theme in Google Auth 7

Same name and namespace in other branches
  1. 7.2 gauth_user/gauth_user.module \gauth_user_theme()

Implements hook_theme().

File

gauth_user/gauth_user.module, line 112
Google Auth Api for drupal.

Code

function gauth_user_theme() {
  return array(
    // Theme functions in gauth_user.admin.inc.
    'gauth_user_services_list' => array(
      'variables' => array(
        'accounts' => NULL,
      ),
    ),
    // Theme functions in gauth_user.pages.inc.
    'gauth_user_services_authenticate_list' => array(
      'variables' => array(
        'accounts' => NULL,
      ),
    ),
  );
}