示例#1
0
 /**
  * Configure the library to include global CSS and JS files.
  *
  * If $include is true, global includes (like the default media CSS and
  * global.js files) are automatically included in css() and js() output.
  *
  * @param boolean $include If true, global includes (like the default media
  * CSS and global.js files) are automatically included in css() and js() output.
  *
  * @return void
  */
 public static function setGlobals($include = true)
 {
     self::$globals = (bool) $include;
 }
示例#2
0
 public static function set_globals($include = true)
 {
     self::$globals = $include;
 }