예제 #1
0
파일: F3.php 프로젝트: seyyah/f3kayOLD
 /**
 		Return TRUE if function can be used in templates
 			@return boolean
 			@param $_func string
 			@public
 	**/
 public static function allowed($_func)
 {
     if (!isset(self::$global['FUNCS'])) {
         F3::allow(self::FUNCS_Default);
     }
     return in_array($_func, self::$global['FUNCS']);
 }