Exemplo n.º 1
0
 /**
  * Se obtienen los sub proyectos asociados al proyecto actualmente seleccionado.
  *
  * @param int $projectId
  * @return array
  */
 public function getSubProjects()
 {
     $result = '';
     try {
         $result = $this->proxySoap->mc_project_get_all_subprojects($this->currentUser, $this->currentPassword, getProjectId());
     } catch (Exception $e) {
     }
     return $result;
 }