function KalturaClient::viewWidget in Kaltura 5
Same name and namespace in other branches
- 6 kaltura_client/kaltura_client.php \KalturaClient::viewWidget()
File
- kaltura_client/
kaltura_client.php, line 2037
Class
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;
}