コード例 #1
0
 /**
  * creates an instance of resource manager.  This should only be done on the backend before a deployment, and NEVER called on a per page basis
  * calling this per page will have a significant performance impact
  * @param defaultCSSPath - String - the path to the presentation layer CSS files 
  * @param defaultJSPath - String - the path to the presentation layer JS files 
  */
 public function __construct($VCSRevisionNumber, $defaultCSSPath = '/presentation/css/', $defaultJSPath = '/presentation/js/')
 {
     $this->siteRevision = $VCSRevisionNumber;
     parent::__construct($defaultCSSPath, $defaultJSPath);
 }