コード例 #1
0
ファイル: Application.php プロジェクト: kourim/limedca
 /**
  * funkce vylistuje autory
  * @param int $distributor_id optional
  * @return array
  */
 public function authorsList($distributor_id = null)
 {
     try {
         return Authors::authorsList($distributor_id);
     } catch (Exception $e) {
         throw new RPCFault($e->getMessage(), $e->getCode(), $e->getCode());
     }
 }