コード例 #1
0
ファイル: Light.php プロジェクト: nhenderson/processmaker
 /**
  * Get configuration ProcessMaker
  *
  * @return array
  *
  * @access public
  * @url GET /config
  */
 public function getConfiguration()
 {
     try {
         $oMobile = new \ProcessMaker\BusinessModel\Light();
         $response = $oMobile->getConfiguration();
     } catch (\Exception $e) {
         throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage());
     }
     return $response;
 }