Ejemplo n.º 1
0
 public static function getAllEmailgroupsByUserUsername($userName)
 {
     $filter = array(parent::PARAMETER_FILTER_STRING);
     $parameter = array($userName);
     return parent::_call('getAllEmailgroupsByUserUsername', self::$webServiceName, $filter, $parameter);
 }
Ejemplo n.º 2
0
 public static function getAllSubtopicsByParentId($parentTopicId)
 {
     $filter = array(parent::PARAMETER_FILTER_INTEGER);
     $parameter = array($parentTopicId);
     return parent::_call('getAllSubtopicsByParentId', self::$webServiceName, $filter, $parameter);
 }
Ejemplo n.º 3
0
 public static function getAllUsersAboveGradeInCompany($companyId, $grade)
 {
     $filter = array(parent::PARAMETER_FILTER_INTEGER, parent::PARAMETER_FILTER_INTEGER);
     $parameter = array($companyId, $grade);
     return parent::_call('getAllUsersAboveGradeInCompany', self::$webServiceName, $filter, $parameter);
 }
Ejemplo n.º 4
0
 public static function setWebServiceName($webServiceName)
 {
     self::$webServiceName = $webServiceName;
 }
Ejemplo n.º 5
0
 public static function getAllUsersByContactWithPage($contact, $first, $size)
 {
     $filter = array(parent::PARAMETER_FILTER_STRING, parent::PARAMETER_FILTER_INTEGER, parent::PARAMETER_FILTER_INTEGER);
     $parameter = array($contact, $first, $size);
     return parent::_call('getAllUsersByContactWithPage', self::$webServiceName, $filter, $parameter);
 }