function update($id, KalturaUiConf $uiConf)
 {
     $kparams = array();
     $this->client->addParam($kparams, "id", $id);
     $this->client->addParam($kparams, "uiConf", $uiConf->toParams());
     $this->client->queueServiceActionCall("uiconf", "update", $kparams);
     if ($this->client->isMultiRequest()) {
         return null;
     }
     $resultObject = $this->client->doQueue();
     $this->client->throwExceptionIfError($resultObject);
     $this->client->validateObjectType($resultObject, "KalturaUiConf");
     return $resultObject;
 }
Пример #2
0
 function update($id, KalturaUiConf $uiConf)
 {
     $kparams = array();
     $this->client->addParam($kparams, "id", $id);
     $this->client->addParam($kparams, "uiConf", $uiConf->toParams());
     $resultObject = $this->client->callService("uiconf", "update", $kparams);
     $this->client->throwExceptionIfError($resultObject);
     $this->client->validateObjectType($resultObject, "KalturaUiConf");
     return $resultObject;
 }