public function GoogleMini::__construct in Google Search Appliance 5
Same name and namespace in other branches
- 6.2 GoogleMini.php \GoogleMini::__construct()
1 call to GoogleMini::__construct()
1 method overrides GoogleMini::__construct()
File
- ./
GoogleMini.php, line 17
Class
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;
}
}
}