File: /home/posscale/subdomains/xibo/vendor/xibosignage/oauth2-xibo-cms/src/Entity/XiboFinance.php
<?php
/*
* Spring Signage Ltd - http://www.springsignage.com
* Copyright (C) 2016 Spring Signage Ltd
* (XiboFinance.php)
*/
namespace Xibo\OAuth2\Client\Entity;
use Xibo\OAuth2\Client\Exception\XiboApiException;
class XiboFinance extends XiboEntity
{
public $widgetId;
public $playlistId;
public $ownerId;
public $type;
public $duration;
public $displayOrder;
public $useDuration;
public $calculatedDuration;
public $widgetOptions;
public $mediaIds;
public $audio;
public $permissions;
public $module;
public $name;
public $item;
public $effect;
public $speed;
public $backgroundColor;
public $noRecordsMessage;
public $dateFormat;
public $updateInterval;
public $templateId;
public $durationIsPerItem;
public $javaScript;
public $overrideTemplate;
public $template;
public $styleSheet;
public $yql;
public $resultIdentifier;
/**
* Get by Id
* @param $id
* @return $this|XiboFinance
* @throws XiboApiException
*/
public function getById($id)
{
$response = $this->doGet('/playlist/widget', [
'playlistId' => $id
]);
return clone $this->hydrate($response[0]);
}
/**
* Create
* @param $templateId
* @param $name
* @param $duration
* @param $useDuration
* @param $item
* @param $effect
* @param $speed
* @param $backgroundColor
* @param $noRecordsMessage
* @param $dateFormat
* @param $updateInterval
* @param $durationIsPerItem
* @param $playlistId
*/
public function create($templateId, $name, $duration, $useDuration, $item, $effect, $speed, $backgroundColor, $noRecordsMessage, $dateFormat, $updateInterval, $durationIsPerItem, $playlistId)
{
$this->userId = $this->getEntityProvider()->getMe()->getId();
$this->overrideTemplate = 0;
$this->templateId = $templateId;
$this->name = $name;
$this->duration = $duration;
$this->useDuration = $useDuration;
$this->item = $item;
$this->effect = $effect;
$this->speed = $speed;
$this->backgroundColor = $backgroundColor;
$this->noRecordsMessage = $noRecordsMessage;
$this->dateFormat = $dateFormat;
$this->updateInterval = $updateInterval;
$this->durationIsPerItem = $durationIsPerItem;
$this->playlistId = $playlistId;
$response = $this->doPost('/playlist/widget/finance/' . $playlistId , $this->toArray());
return $this->hydrate($response);
}
/**
* Edit
* @param $templateId
* @param $name
* @param $duration
* @param $useDuration
* @param $item
* @param $effect
* @param $speed
* @param $backgroundColor
* @param $noRecordsMessage
* @param $dateFormat
* @param $updateInterval
* @param $durationIsPerItem
* @param $playlistId
*/
public function edit($templateId, $name, $duration, $useDuration, $item, $effect, $speed, $backgroundColor, $noRecordsMessage, $dateFormat, $updateInterval, $durationIsPerItem, $widgetId)
{
$this->userId = $this->getEntityProvider()->getMe()->getId();
$this->overrideTemplate = 0;
$this->templateId = $templateId;
$this->name = $name;
$this->duration = $duration;
$this->useDuration = $useDuration;
$this->item = $item;
$this->effect = $effect;
$this->speed = $speed;
$this->backgroundColor = $backgroundColor;
$this->noRecordsMessage = $noRecordsMessage;
$this->dateFormat = $dateFormat;
$this->updateInterval = $updateInterval;
$this->durationIsPerItem = $durationIsPerItem;
$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;
}
}