コード例 #1
0
ファイル: mantis_core.php プロジェクト: fur81/zofaxiopeu
 /**
  * Se listan todas las categorías pertenecientes al proyecto seleccionado.
  *
  * @deprecated
  * @return array
  */
 public function getCategoriesByProject()
 {
     $result = '';
     try {
         $result = $this->proxySoap->mc_project_get_categories($this->currentUser, $this->currentPassword, getProjectId());
     } catch (Exception $e) {
     }
     return $result;
 }