| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- <?php
- /**
- * Time Helper class file.
- *
- * PHP 5
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @package Cake.View.Helper
- * @since CakePHP(tm) v 0.10.0.1076
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('CakeTime', 'Utility');
- App::uses('Multibyte', 'I18n');
- App::uses('AppHelper', 'View/Helper');
- /**
- * Time Helper class for easy use of time data.
- *
- * Manipulation of time data.
- *
- * @package Cake.View.Helper
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html
- * @see CakeTime
- */
- class TimeHelper extends AppHelper {
- /**
- * CakeTime instance
- */
- protected $_CakeTime = null;
- /**
- * Constructor
- *
- * @param View $View the view object the helper is attached to.
- * @param array $settings Settings array Settings array
- */
- public function __construct(View $View, $settings = array()) {
- $settings = Set::merge(array('engine' => 'CakeTime'), $settings);
- parent::__construct($View, $settings);
- $engineClass = $settings['engine'];
- App::uses($engineClass, 'Utility');
- if (class_exists($engineClass)) {
- $this->_CakeTime = new $engineClass($settings);
- } else {
- throw new CakeException(__d('cake_dev', '%s could not be found', $engineClass));
- }
- }
- /**
- * Magic accessor for deprecated attributes.
- *
- * @param string $name Name of the attribute to set.
- * @param string $value Value of the attribute to set.
- * @return mixed
- */
- public function __set($name, $value) {
- switch ($name) {
- case 'niceFormat':
- $this->_CakeTime->{$name} = $value;
- break;
- default:
- $this->{$name} = $value;
- break;
- }
- }
- /**
- * Magic isset check for deprecated attributes.
- *
- * @param string $name Name of the attribute to check.
- * @return boolean
- */
- public function __isset($name) {
- if (isset($this->{$name})) {
- return true;
- }
- $magicGet = array('niceFormat');
- if (in_array($name, $magicGet)) {
- return $this->__get($name) !== null;
- }
- return null;
- }
- /**
- * Magic accessor for attributes that were deprecated.
- *
- * @param string $name Name of the attribute to get.
- * @return mixed
- */
- public function __get($name) {
- if (isset($this->_CakeTime->{$name})) {
- return $this->_CakeTime->{$name};
- }
- $magicGet = array('niceFormat');
- if (in_array($name, $magicGet)) {
- return $this->_CakeTime->{$name};
- }
- return null;
- }
- /**
- * Call methods from CakeTime utility class
- */
- public function __call($method, $params) {
- return call_user_func_array(array($this->_CakeTime, $method), $params);
- }
- /**
- * @see CakeTime::convertSpecifiers()
- *
- * @param string $format Format with specifiers for strftime function.
- * Accepts the special specifier %S which mimics the modifier S for date()
- * @param string $time UNIX timestamp
- * @return string windows safe and date() function compatible format for strftime
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function convertSpecifiers($format, $time = null) {
- return $this->_CakeTime->convertSpecifiers($format, $time);
- }
- /**
- * @see CakeTime::convert()
- *
- * @param string $serverTime UNIX timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return integer UNIX timestamp
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function convert($serverTime, $userOffset) {
- return $this->_CakeTime->convert($serverTime, $userOffset);
- }
- /**
- * @see CakeTime::serverOffset()
- *
- * @return integer Offset
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function serverOffset() {
- return $this->_CakeTime->serverOffset();
- }
- /**
- * @see CakeTime::fromString()
- *
- * @param string $dateString Datetime string
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Parsed timestamp
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function fromString($dateString, $userOffset = null) {
- return $this->_CakeTime->fromString($dateString, $userOffset);
- }
- /**
- * @see CakeTime::nice()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @param string $format The format to use. If null, `TimeHelper::$niceFormat` is used
- * @return string Formatted date string
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function nice($dateString = null, $userOffset = null, $format = null) {
- return $this->_CakeTime->nice($dateString, $userOffset, $format);
- }
- /**
- * @see CakeTime::niceShort()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Described, relative date string
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function niceShort($dateString = null, $userOffset = null) {
- return $this->_CakeTime->niceShort($dateString, $userOffset);
- }
- /**
- * @see CakeTime::daysAsSql()
- *
- * @param string $begin Datetime string or Unix timestamp
- * @param string $end Datetime string or Unix timestamp
- * @param string $fieldName Name of database field to compare with
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Partial SQL string.
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function daysAsSql($begin, $end, $fieldName, $userOffset = null) {
- return $this->_CakeTime->daysAsSql($begin, $end, $fieldName, $userOffset);
- }
- /**
- * @see CakeTime::dayAsSql()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param string $fieldName Name of database field to compare with
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Partial SQL string.
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function dayAsSql($dateString, $fieldName, $userOffset = null) {
- return $this->_CakeTime->dayAsSql($dateString, $fieldName, $userOffset);
- }
- /**
- * @see CakeTime::isToday()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean True if datetime string is today
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- */
- public function isToday($dateString, $userOffset = null) {
- return $this->_CakeTime->isToday($dateString, $userOffset);
- }
- /**
- * @see CakeTime::isThisWeek()
- *
- * @param string $dateString
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean True if datetime string is within current week
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- */
- public function isThisWeek($dateString, $userOffset = null) {
- return $this->_CakeTime->isThisWeek($dateString, $userOffset);
- }
- /**
- * @see CakeTime::isThisMonth()
- *
- * @param string $dateString
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean True if datetime string is within current month
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- */
- public function isThisMonth($dateString, $userOffset = null) {
- return $this->_CakeTime->isThisMonth($dateString, $userOffset);
- }
- /**
- * @see CakeTime::isThisYear()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean True if datetime string is within current year
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- */
- public function isThisYear($dateString, $userOffset = null) {
- return $this->_CakeTime->isThisYear($dateString, $userOffset);
- }
- /**
- * @see CakeTime::wasYesterday()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean True if datetime string was yesterday
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- *
- */
- public function wasYesterday($dateString, $userOffset = null) {
- return $this->_CakeTime->wasYesterday($dateString, $userOffset);
- }
- /**
- * @see CakeTime::isTomorrow()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean True if datetime string was yesterday
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- */
- public function isTomorrow($dateString, $userOffset = null) {
- return $this->_CakeTime->isTomorrow($dateString, $userOffset);
- }
- /**
- * @see CakeTime::toQuarter()
- *
- * @param string $dateString
- * @param boolean $range if true returns a range in Y-m-d format
- * @return mixed 1, 2, 3, or 4 quarter of year or array if $range true
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function toQuarter($dateString, $range = false) {
- return $this->_CakeTime->toQuarter($dateString, $range);
- }
- /**
- * @see CakeTime::toUnix()
- *
- * @param string $dateString Datetime string to be represented as a Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return integer Unix timestamp
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function toUnix($dateString, $userOffset = null) {
- return $this->_CakeTime->toUnix($dateString, $userOffset);
- }
- /**
- * @see CakeTime::toAtom()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Formatted date string
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function toAtom($dateString, $userOffset = null) {
- return $this->_CakeTime->toAtom($dateString, $userOffset);
- }
- /**
- * @see CakeTime::toRSS()
- *
- * @param string $dateString Datetime string or Unix timestamp
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Formatted date string
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function toRSS($dateString, $userOffset = null) {
- return $this->_CakeTime->toRSS($dateString, $userOffset);
- }
- /**
- * @see CakeTime::timeAgoInWords()
- *
- * @param string $dateTime Datetime string or Unix timestamp
- * @param array $options Default format if timestamp is used in $dateString
- * @return string Relative time string.
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function timeAgoInWords($dateTime, $options = array()) {
- return $this->_CakeTime->timeAgoInWords($dateTime, $options);
- }
- /**
- * @see CakeTime::wasWithinLast()
- *
- * @param mixed $timeInterval the numeric value with space then time type.
- * Example of valid types: 6 hours, 2 days, 1 minute.
- * @param mixed $dateString the datestring or unix timestamp to compare
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return boolean
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#testing-time
- */
- public function wasWithinLast($timeInterval, $dateString, $userOffset = null) {
- return $this->_CakeTime->wasWithinLast($timeInterval, $dateString, $userOffset);
- }
- /**
- * @see CakeTime::gmt()
- *
- * @param string $string UNIX timestamp or a valid strtotime() date string
- * @return integer UNIX timestamp
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function gmt($string = null) {
- return $this->_CakeTime->gmt($string);
- }
- /**
- * @see CakeTime::format()
- *
- * @param string $format date format string (or a DateTime string)
- * @param string $date Datetime string (or a date format string)
- * @param boolean $invalid flag to ignore results of fromString == false
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Formatted date string
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function format($format, $date = null, $invalid = false, $userOffset = null) {
- return $this->_CakeTime->format($format, $date, $invalid, $userOffset);
- }
- /**
- * @see CakeTime::i18nFormat()
- *
- * @param string $date Datetime string
- * @param string $format strftime format string.
- * @param boolean $invalid flag to ignore results of fromString == false
- * @param integer $userOffset User's offset from GMT (in hours)
- * @return string Formatted and translated date string
- * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#formatting
- */
- public function i18nFormat($date, $format = null, $invalid = false, $userOffset = null) {
- return $this->_CakeTime->i18nFormat($date, $format, $invalid, $userOffset);
- }
- }
|