You are here

function KalturaClient::viewWidget in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 2037

Class

KalturaClient

Code

function viewWidget($kalturaSessionUser, $entryId = null, $kshowId = null, $widgetId = null, $host = null) {
  $params = array();
  $this
    ->addOptionalParam($params, "entry_id", $entryId);
  $this
    ->addOptionalParam($params, "kshow_id", $kshowId);
  $this
    ->addOptionalParam($params, "widget_id", $widgetId);
  $this
    ->addOptionalParam($params, "host", $host);
  $result = $this
    ->hit("viewwidget", $kalturaSessionUser, $params);
  return $result;
}