mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
32 lines
446 B
PHP
32 lines
446 B
PHP
<?php
|
|
|
|
class ControllerExtension extends Extension {
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public static $google_analytics_code = null;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function onAfterInit(){
|
|
Requirements::javascript('themes/docs/javascript/main.js');
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getGoogleAnalyticsCode() {
|
|
return self::$google_analytics_code;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function IsDev() {
|
|
return (Director::isDev());
|
|
}
|
|
|
|
}
|