コード例 #1
0
ファイル: mobiquoCommon.php プロジェクト: ZerGabriel/wbb
 /**
  * action
  */
 public static function action()
 {
     parent::action();
     if (self::hasLogin()) {
         header('Mobiquo_is_login: true');
     } else {
         header('Mobiquo_is_login: false');
     }
     self::$oMbqConfig->calCfg();
     /* you should do some modify within this function in multiple different type applications! */
     if (!self::$oMbqConfig->pluginIsOpen()) {
         MbqError::alert('', "Plugin is not in service!");
     }
     if (isset($_GET['method_name']) && $_GET['method_name']) {
         //for more flexibility
         self::$cmd = $_GET['method_name'];
     }
     if (isset($_POST['method_name']) && $_POST['method_name']) {
         //for upload_attach and other post method
         self::$cmd = $_POST['method_name'];
         foreach ($_POST as $k => $v) {
             self::$input[$k] = $v;
         }
     }
     if (self::$cmd) {
         self::$cmd = (string) self::$cmd;
         //MbqError::alert('', self::$cmd);
         if (preg_match('/[A-Za-z0-9_]{1,128}/', self::$cmd)) {
             $arr = explode('_', self::$cmd);
             foreach ($arr as &$v) {
                 $v = ucfirst(strtolower($v));
             }
             $actionClassName = 'MbqAct' . implode('', $arr);
             if (self::$oClk->hasReg($actionClassName)) {
                 self::$oAct = self::$oClk->newObj($actionClassName);
                 self::$oAct->actionImplement();
             } else {
                 //MbqError::alert('', "Not support action for ".self::$cmd."!", '', MBQ_ERR_NOT_SUPPORT);
                 MbqError::alert('', "Sorry!This feature is not available in this forum.Method name:" . self::$cmd, '', MBQ_ERR_NOT_SUPPORT);
             }
         } else {
             MbqError::alert('', "Need valid cmd!");
         }
     } else {
         MbqError::alert('', "Need not empty cmd!");
     }
 }
コード例 #2
0
 /**
  * action
  */
 public static function action()
 {
     parent::action();
     if (self::hasLogin()) {
         header('Mobiquo_is_login: true');
     } else {
         header('Mobiquo_is_login: false');
     }
     self::$oMbqConfig->calCfg();
     /* you should do some modify within this function in multiple different type applications! */
     if (!self::$oMbqConfig->pluginIsOpen()) {
         MbqError::alert('', self::$oMbqConfig->getPluginClosedMessage());
     }
     self::$cmd = self::getCurrentCmd();
     if (self::$cmd) {
         self::$cmd = (string) self::$cmd;
         //MbqError::alert('', self::$cmd);
         if (preg_match('/[A-Za-z0-9_]{1,128}/', self::$cmd)) {
             $arr = explode('_', self::$cmd);
             foreach ($arr as &$v) {
                 $v = ucfirst(strtolower($v));
             }
             $actionClassName = 'MbqAct' . implode('', $arr);
             if (self::$oClk->hasReg($actionClassName)) {
                 self::$oAct = self::$oClk->newObj($actionClassName);
                 self::$oAct->actionImplement(self::$oAct->getInput());
             } else {
                 //MbqError::alert('', "Not support action for ".self::$cmd."!", '', MBQ_ERR_NOT_SUPPORT);
                 MbqError::alert('', "Sorry!This feature is not available in this forum.Method name:" . self::$cmd, '', MBQ_ERR_NOT_SUPPORT);
             }
         } else {
             MbqError::alert('', "Need valid cmd!");
         }
     } else {
         if (empty($_POST) && empty($_GET)) {
             include MBQ_PATH . 'pluginstatus.php';
         } else {
             MbqError::alert('', "Need not empty cmd!");
         }
     }
 }