예제 #1
0
파일: public.app.php 프로젝트: World3D/iCMS
 public function API_seccode()
 {
     @header("Expires: -1");
     @header("Cache-Control: no-store, private, post-check=0, pre-check=0, max-age=0", FALSE);
     @header("Pragma: no-cache");
     iPHP::loadClass("Seccode");
     $_GET['pre'] && ($pre = iS::escapeStr($_GET['pre']));
     iSeccode::run($pre);
 }
예제 #2
0
파일: iACP.class.php 프로젝트: Junred/iCMS
 public static function get_seccode()
 {
     iPHP::loadClass("Seccode");
     iSeccode::run('iACP');
     exit;
 }
예제 #3
0
파일: public.app.php 프로젝트: sunhk25/iCMS
 public function API_seccode()
 {
     iPHP::loadClass("Seccode");
     $_GET['pre'] && ($pre = iS::escapeStr($_GET['pre']));
     iSeccode::run($pre);
 }