コード例 #1
0
ファイル: _actions.inc.php プロジェクト: qcodo/qcodo-api
 public function __get($strName)
 {
     switch ($strName) {
         case 'Message':
             return $this->strMessage;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }
コード例 #2
0
ファイル: QControlBase.class.php プロジェクト: qcodo/qcodo
 public function GetJavaScriptForEvent($strEventName)
 {
     return QAction::RenderActions($this, $strEventName, $this->objActionArray[$strEventName]);
 }