|
Server IP : 10.111.20.6 / Your IP : 216.73.217.121 Web Server : Apache System : Linux webm006.cluster111.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : edizioni ( 7252) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/edizioni/stampaeweb/../.config/../momentiribera/../extonymask/book/Domain/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
class Accessory
{
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var int
*/
private $quantityAvailable;
/**
* @var ResourceAccessory[]
*/
private $resources = [];
/**
* @param int $id
* @param string $name
* @param int $quantityAvailable
*/
public function __construct($id, $name, $quantityAvailable)
{
$this->id = $id;
$this->SetName($name);
$this->SetQuantityAvailable($quantityAvailable);
}
/**
* @return int
*/
public function GetId()
{
return $this->id;
}
/**
* @return string
*/
public function GetName()
{
return $this->name;
}
/**
* @param string $name
* @return void
*/
public function SetName($name)
{
$this->name = $name;
}
/**
* @param int $quantity
*/
public function SetQuantityAvailable($quantity)
{
$q = intval($quantity);
$this->quantityAvailable = empty($q) ? null : $q;
}
/**
* @return int
*/
public function GetQuantityAvailable()
{
return $this->quantityAvailable;
}
/**
* @return ResourceAccessory[]
*/
public function Resources()
{
return $this->resources;
}
/**
* @return int[]
*/
public function ResourceIds()
{
$ids = [];
foreach ($this->resources as $resource) {
$ids[] = $resource->ResourceId;
}
return $ids;
}
/**
* @static
* @param string $name
* @param int $quantity
* @return Accessory
*/
public static function Create($name, $quantity)
{
return new Accessory(null, $name, $quantity);
}
/**
* @return bool
*/
public function HasUnlimitedQuantity()
{
return empty($this->quantityAvailable);
}
public function AddResource($resourceId, $minQuantity, $maxQuantity)
{
$this->resources[] = new ResourceAccessory($resourceId, $minQuantity, $maxQuantity);
}
/**
* @param ResourceAccessory[] $resources
*/
public function ChangeResources($resources)
{
$this->resources = $resources;
}
/**
* @return bool
*/
public function IsTiedToResource()
{
return count($this->resources) > 0;
}
/**
* @param int $resourceId
* @return ResourceAccessory
*/
public function GetResource($resourceId)
{
foreach ($this->resources as $resource) {
if ($resource->ResourceId == $resourceId) {
return $resource;
}
}
return null;
}
}
class ResourceAccessory
{
public $ResourceId;
public $MinQuantity;
public $MaxQuantity;
public function __construct($resourceId, $minQuantity, $maxQuantity)
{
$this->ResourceId = $resourceId;
$this->MinQuantity = empty($minQuantity) ? null : (int)$minQuantity;
$this->MaxQuantity = empty($maxQuantity) ? null : (int)$maxQuantity;
;
}
}