You are here

function KalturaClient::listUiconf in Kaltura 5

Same name and namespace in other branches
  1. 6 kaltura_client/kaltura_client.php \KalturaClient::listUiconf()

File

kaltura_client/kaltura_client.php, line 1503

Class

KalturaClient

Code

function listUiconf($kalturaSessionUser, $filter, $detailed = null, $detailedFields = null, $pageSize = 10, $page = 1) {
  $params = array();
  $this
    ->addOptionalParam($params, "filter__eq_id", $filter->equalId);
  $this
    ->addOptionalParam($params, "filter__gte_id", $filter->greaterThanOrEqualId);
  $this
    ->addOptionalParam($params, "filter__eq_status", $filter->equalStatus);
  $this
    ->addOptionalParam($params, "filter__eq_obj_type", $filter->equalObjType);
  $this
    ->addOptionalParam($params, "filter__like_name", $filter->likeName);
  $this
    ->addOptionalParam($params, "filter__mlikeor_tags", $filter->multiLikeOrTags);
  $this
    ->addOptionalParam($params, "filter__order_by", $filter->orderBy);
  $this
    ->addOptionalParam($params, "filter__limit", $filter->limit);
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $this
    ->addOptionalParam($params, "detailed_fields", $detailedFields);
  $this
    ->addOptionalParam($params, "page_size", $pageSize);
  $this
    ->addOptionalParam($params, "page", $page);
  $result = $this
    ->hit("listuiconfs", $kalturaSessionUser, $params);
  return $result;
}