芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/apv.mgaplay.com.br/vendor/xibosignage/oauth2-xibo-cms/src/Entity/XiboDataSetView.php
doGet('/playlist/widget', [ 'playlistId' => $id ]); return clone $this->hydrate($response[0]); } /** * Create * @param $name * @param $dataSetId */ public function create($name, $dataSetId, $playlistId) { $this->userId = $this->getEntityProvider()->getMe()->getId(); $this->name = $name; $this->dataSetId = $dataSetId; $this->playlistId = $playlistId; $response = $this->doPost('/playlist/widget/dataSetView/' . $playlistId , $this->toArray()); return $this->hydrate($response); } /** * Edit * @param $dataSetColumnId * @param $name * @param $duration * @param $updateInterval * @param $showHeadings * @param $upperLimit * @param $lowerLimit * @param $filter * @param $ordering * @param $templateId * @param $overrideTemplate * @param $useOrderingClause * @param $useFilteringClause * @param $noDataMessage * @param $dataSetId */ public function edit($dataSetColumnId, $name, $duration, $useDuration, $updateInterval, $rowsPerPage, $showHeadings, $upperLimit, $lowerLimit, $filter, $ordering, $templateId, $overrideTemplate, $useOrderingClause, $useFilteringClause, $noDataMessage, $widgetId) { $this->userId = $this->getEntityProvider()->getMe()->getId(); $this->dataSetColumnId = $dataSetColumnId; $this->name = $name; $this->duration = $duration; $this->useDuration = $useDuration; $this->updateInterval = $updateInterval; $this->rowsPerPage = $rowsPerPage; $this->showHeadings = $showHeadings; $this->upperLimit = $upperLimit; $this->lowerLimit = $lowerLimit; $this->filter = $filter; $this->ordering = $ordering; $this->templateId = $templateId; $this->overrideTemplate = $overrideTemplate; $this->useOrderingClause = $useOrderingClause; $this->useFilteringClause = $useFilteringClause; $this->noDataMessage = $noDataMessage; $this->widgetId = $widgetId; $response = $this->doPut('/playlist/widget/' . $widgetId, $this->toArray()); return $this->hydrate($response); } /** * Delete */ public function delete() { $this->userId = $this->getEntityProvider()->getMe()->getId(); $response = $this->doDelete('/playlist/widget/' . $this->widgetId , $this->toArray()); return true; } }