예제 #1
3
파일: Config.php 프로젝트: JianKongBao/AAPF
 public function getConfigAction()
 {
     $requestVO = Services_Widget_SetVO::instance()->setRequestGetConfigVO($this->params);
     if (Services_Widget_SetVO::instance()->checkIfRPC($requestVO)) {
         $service1 = new Yar_Server(new Services_Widget_Transaction());
         $service1->handle();
     } else {
         var_dump(__CLASS__, __FUNCTION__);
     }
 }
예제 #2
0
파일: SetVO.php 프로젝트: JianKongBao/AAPF
 /**
  * @return Services_Widget_SetVO
  */
 public static function instance()
 {
     if (is_null(self::$self)) {
         self::$self = new self();
     }
     return self::$self;
 }
예제 #3
0
 public function __construct()
 {
     $this->oSetVO = Services_Widget_SetVO::instance();
 }
예제 #4
0
 public function __construct()
 {
     $this->oSetVO = Services_Widget_SetVO::instance();
     $this->client = REST_Client::instance();
 }