You are here

function KalturaClient::executePlaylist in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 849

Class

KalturaClient

Code

function executePlaylist($kalturaSessionUser, $playlistId, $fp = null, $filter1 = null, $filter2 = null, $filter3 = null, $filter4 = null, $detailed = null, $pageSize = 10, $page = 1, $useFilterPuserId = null) {
  $params = array();
  $params["playlist_id"] = $playlistId;
  $this
    ->addOptionalParam($params, "fp", $fp);
  $this
    ->addOptionalParam($params, "filter1", $filter1);
  $this
    ->addOptionalParam($params, "filter2", $filter2);
  $this
    ->addOptionalParam($params, "filter3", $filter3);
  $this
    ->addOptionalParam($params, "filter4", $filter4);
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $this
    ->addOptionalParam($params, "page_size", $pageSize);
  $this
    ->addOptionalParam($params, "page", $page);
  $this
    ->addOptionalParam($params, "use_filter_puser_id", $useFilterPuserId);
  $result = $this
    ->hit("executeplaylist", $kalturaSessionUser, $params);
  return $result;
}