You are here

public function GoogleMini::__construct in Google Search Appliance 6.2

Same name and namespace in other branches
  1. 5 GoogleMini.php \GoogleMini::__construct()
1 call to GoogleMini::__construct()
DrupalGoogleMini::__construct in ./DrupalGoogleMini.php
1 method overrides GoogleMini::__construct()
DrupalGoogleMini::__construct in ./DrupalGoogleMini.php

File

./GoogleMini.php, line 16

Class

GoogleMini

Code

public function __construct($debug = FALSE, $debug_callback = NULL) {
  if ($debug) {
    $this->debug = TRUE;
    if ($debug_callback && function_exists($debug_callback)) {
      $this->debug_callback = $debug_callback;
    }
  }
}