You are here

function KalturaClient::getWidget in Kaltura 6

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

File

kaltura_client/kaltura_client.php, line 1018

Class

KalturaClient

Code

function getWidget($kalturaSessionUser, $widgetId, $detailed = null) {
  $params = array();
  $params["widget_id"] = $widgetId;
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("getwidget", $kalturaSessionUser, $params);
  return $result;
}