MINOR Added DocumentationViewerExtension

git-svn-id: http://svn.silverstripe.com/projects/ss2doc/branches/v2@115539 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2011-01-13 20:32:42 +00:00
parent 9eb72c59aa
commit d036b4920f

View File

@ -0,0 +1,22 @@
<?php
class DocumentationViewerExtension extends Extension {
static $google_analytics_code = null;
public function init() {
parent::init();
// Note: you should use SS template require tags inside your templates
// instead of putting Requirements calls here. However these are
// included so that our older themes still work
Requirements::themedCSS('layout');
Requirements::themedCSS('typography');
Requirements::themedCSS('form');
}
/**
* @return String
*/
function getGoogleAnalyticsCode() {
return self::$google_analytics_code;
}
}