1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 02:39:47 +02:00
ampache/modules/Tmdb/Model/Timezone/CountryTimezone.php
Afterster d842ebbb00 Add art on Videos
Add videos support to Subsonic and UPnP APIs
Update Tmdb module
2014-07-06 20:46:46 +02:00

96 lines
1.8 KiB
PHP

<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 0.0.1
*/
namespace Tmdb\Model\Timezone;
use Tmdb\Model\AbstractModel;
use Tmdb\Model\Collection\Timezones;
use Tmdb\Model\Common\GenericCollection;
/**
* Class Timezone
* @package Tmdb\Model\Certification
*/
class CountryTimezone extends AbstractModel
{
/**
* @var string
*/
private $iso31661;
/**
* @var Timezones
*/
private $timezones;
public function __construct()
{
$this->timezones = new GenericCollection();
}
/**
* @param \Tmdb\Model\Collection\Timezones $timezones
* @return $this
*/
public function setTimezones($timezones)
{
$this->timezones = $timezones;
return $this;
}
/**
* @return \Tmdb\Model\Collection\Timezones
*/
public function getTimezones()
{
return $this->timezones;
}
/**
* @param string $iso31661
* @return $this
*/
public function setIso31661($iso31661)
{
$this->iso31661 = $iso31661;
return $this;
}
/**
* @return string
*/
public function getIso31661()
{
return $this->iso31661;
}
/**
* Verify if a country supports a certain timezone
*
* @param $timezone
* @return mixed
*/
public function supports($timezone)
{
return false !== $this->timezones->hasValue($timezone);
}
/**
* @return string
*/
public function __toString()
{
return $this->iso31661;
}
}