芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/somares/vendor/xibosignage/oauth2-xibo-cms/src/Entity/XiboCommand.php
. */ namespace Xibo\OAuth2\Client\Entity; use Xibo\OAuth2\Client\Exception\XiboApiException; class XiboCommand extends XiboEntity { private $url = '/command'; /** @var int The command ID */ public $commandId; /** @var string The command name */ public $command; /** @var string Unique code for this command */ public $code; /** @var string Command description */ public $description; /** * Get the list commands. * * @param array $params filter the results by, commandId, command or code * @return array|XiboCommand */ public function get(array $params = []) { $entries = []; $this->getLogger()->info('Getting a list of display commands'); $response = $this->doGet($this->url, $params); foreach ($response as $item) { $entries[] = clone $this->hydrate($item); } return $entries; } /** * Get the command by commandId. * * @param int $id The Command ID to find * @return XiboCommand * @throws XiboApiException */ public function getById($id) { $this->getLogger()->info('Getting display command ID ' . $id); $response = $this->doGet($this->url, [ 'commandId' => $id ]); if (count($response) <= 0) throw new XiboApiException('Expecting a single record, found ' . count($response)); return clone $this->hydrate($response[0]); } /** * Create a new command. * * @param string $name Name of the command * @param string $description Command description * @param string $code Unique code for this command * @return XiboCommand */ public function create($name, $description, $code) { $this->userId = $this->getEntityProvider()->getMe()->getId(); $this->command = $name; $this->description = $description; $this->code = $code; $this->getLogger()->info('Creating new display command ' . $name); $response = $this->doPost('/command', $this->toArray()); return $this->hydrate($response); } /** * Edit the Command. * * @param string $name Name of the command * @param string $description Command description * @param string $code Unique code for this command * @return XiboCommand */ public function edit($name, $description, $code) { $this->command = $name; $this->description = $description; $this->code = $code; $this->getLogger()->info('Editing display command ID ' . $this->commandId); $response = $this->doPut('/command/' . $this->commandId, $this->toArray()); return $this->hydrate($response); } /** * Delete the command. * * @return bool */ public function delete() { $this->getLogger()->info('Deleting display command ID ' . $this->commandId); $this->doDelete('/command/' . $this->commandId); return true; } }