PATH:
home
/
letacommog
/
crmleta
/
modules
/
Mobile
/
third-party
/
qCal
/
qCal
/
DateTime
<?php class qCal_Time_Timezone { protected $format = "P"; public function __construct($timezone = null) { if (!is_null($timezone)) { date_default_timezone_set($timezone); } } public function getOffsetSeconds() { return date("Z"); } public function getOffsetHours() { return date("O"); } public function getOffset() { return date("P"); } public function getAbbreviation() { return date("T"); } public function isDaylightSavings() { return (boolean) date("I"); } public function getName() { return date("e"); } public function format($format) { return date($format); } public function __toString() { return $this->format($this->format); } }
[+]
..
[-] Recur.php
[edit]
[-] Timezone.php
[edit]
[+]
Exception
[+]
Recur
[-] Period.php
[edit]
[-] Exception.php
[edit]
[-] Duration.php
[edit]