HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/subdomains/xibo/vendor/xibosignage/oauth2-xibo-cms/src/Entity/XiboDisplay.php
<?php
/*
 * Spring Signage Ltd - http://www.springsignage.com
 * Copyright (C) 2016 Spring Signage Ltd
 * (XiboDisplay.php)
 */
namespace Xibo\OAuth2\Client\Entity;
use Xibo\OAuth2\Client\Exception\XiboApiException;
/**
 * Class XiboDisplay
 * @package Xibo\OAuth2\Client\Entity
 */
class XiboDisplay extends XiboEntity
{
    public $displayId;
    public $display;
    public $description;
    public $auditingUntil = 0;
    public $defaultLayoutId = 0;
    public $license;
    public $licensed;
    public $loggedIn;
    public $lastAccessed;
    public $incSchedule;
    public $emailAlert;
    public $alertTimeout;
    public $clientAddress;
    public $mediaInventoryStatus;
    public $macAddress;
    public $lastChanged;
    public $numberOfMacAddressChanges;
    public $lastWakeOnLanCommandSent;
    public $wakeOnLanEnabled;
    public $wakeOnLanTime;
    public $broadCastAddress;
    public $secureOn;
    public $cidr;
    public $latitude;
    public $longitude;
    public $versionInstructions;
    public $clientType;
    public $clientVersion;
    public $clientCode;
    public $displayProfileId;
    public $currentLayoutId;
    public $screenShotRequested;
    public $storageAvailableSpace;
    public $storageTotalSpace;
    public $displayGroupId;
    public $currentLayout;
    public $defaultLayout;
    public $xmrChannel;
    public $xmrPubKey;
    public $lastCommandSuccess;
    public $displayGroups = [];
    /**
     * @param array $params
     * @return array[XiboDisplay]
     */
    public function get(array $params = [])
    {
        $entries = [];
        $response = $this->doGet('/display', $params);
        foreach ($response as $item) {
            $entries[] = clone $this->hydrate($item);
        }
        return $entries;
    }
    /**
     * Get by Id
     * @param $id
     * @return $this|XiboDisplayGroup
     * @throws XiboApiException
     */
    public function getById($id)
    {
        $response = $this->doGet('/display', [
            'displayGroupId' => $id
        ]);
        if (count($response) <= 0)
            throw new XiboApiException('Expecting a single display, found ' . count($response));
        return clone $this->hydrate($response[0]);
    }
    /**
     * Edit
     * @param $display;
     * @param $description;
     * @param $auditingUntil;
     * @param $defaultLayoutId
     * @param $licensed;
     * @param $license;
     * @param $incSchedule;
     * @param $emailAlert;
     * @param $wakeOnLanEnabled
     * @param $boradCastAddress
     * @param $clearCachedData
     * @param $rekeyXmr
     * @return XiboLayout
     */
    public function edit($display, $description, $auditingUntil, $defaultLayoutId, $licensed, $license, $incSchedule, $emailAlert, $wakeOnLanEnabled, $boradCastAddress, $clearCachedData, $rekeyXmr)
    {
        $this->display = $display;
        $this->description = $description;
        $this->auditingUntil = $auditingUntil;
        $this->defaultLayoutId = $defaultLayoutId;
        $this->licensed = $licensed;
        $this->license = $license;
        $this->incSchedule = $incSchedule;
        $this->emailAlert = $emailAlert;
        $this->wakeOnLanEnabled = $wakeOnLanEnabled;
        $this->broadCastAddress = $boradCastAddress;
        $this->clearCachedData = $clearCachedData;
        $this->rekeyXmr = $rekeyXmr;
        $response = $this->doPut('/display/' . $this->displayId, $this->toArray());
        
        return $this->hydrate($response);
    }
    /**
      * Delete
      * @return bool
      */
    public function delete()
    {
        $this->doDelete('/display/' . $this->displayId);
        
        return true;
    }
}