You are here

function gauth_init in Google Auth 7.2

Same name and namespace in other branches
  1. 7 gauth.module \gauth_init()

Implements hook_init().

File

./gauth.module, line 10
Google Auth Api for drupal.

Code

function gauth_init() {
  $path = libraries_get_path('google-api-php-client');
  if ($path) {
    set_include_path($path . "/src/" . PATH_SEPARATOR . get_include_path());
  }
}