mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
1748ac0318
Revision: [1891] Added patch from Ticket #278 Revision: [1890] Adding patch from Ticket #227 Revision: [1889] Adding fix from Changeset [1631]. This fixes Ticket #319 Revision: [1888] Added fix for Ticket #315 Revision: [1887] Adding patch from Ticket #312 Revision: [1886] Adding fix that was committed in [1304] back. Closing Ticket #77 again Revision: [1885] Fix added for Ticket #306 Added patch from Ticket #318 Added patch from Ticket #322 Revision: [1884] Adding fix to Ticket #332 Revision: [1883] Adding patch from Ticket #330 Revision: [1882] Adding fix for Ticket #170 back to HtmlHelper::selectTag(). Was lost in a previous merge Revision: [1881] Adding fix for Ticket #336 Revision: [1880] Adding fix from Ticket #307 Revision: [1879] Plugins will use their own helpers and components if present Revision: [1878] Basic implementation of plugins within app/plugins working. Revision: [1877] Starting plugin code for multiple apps within one app. Revision: [1876] Added Ticket #345. Revision: [1875] Added check to AcoAction class that would not attempt to load AppModel Class if it is already defined in memory Added fixes for Ticket #317, Ticket #333, Ticket #343, Ticket #337 Revision: [1874] Adding fix for Ticket #340 Revision: [1873] Added themeWeb var to helpers that will be used if a theme class overrides the view class Revision: [1872] Adding $format to timeAgo and relativeTime, for gwoo Revision: [1871] Docstrings changes. One char at a time we map out Cake. Revision: [1870] Docstrings for Session, and corrections to tabbing on datasource. Revision: [1869] Docstrings for the core database classes. Revision: [1868] Adding patch for Ticket #131 Revision: [1867] Allowing ajax link titles to not be escaped Revision: [1866] Changed error class so calls to ErrorHandler::error() in production setting will work. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1892 3807eeeb-6ff5-0310-8944-8be069107fe0
486 lines
No EOL
15 KiB
PHP
486 lines
No EOL
15 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* Time Helper class file.
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
* Las Vegas, Nevada 89104
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.view.helpers
|
|
* @since CakePHP v 0.10.0.1076
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
/**
|
|
* Time Helper class for easy use of time data.
|
|
*
|
|
* Manipulation of time data.
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.view.helpers
|
|
* @since CakePHP v 0.10.0.1076
|
|
*/
|
|
class TimeHelper extends Helper
|
|
{
|
|
/**
|
|
* Returns given string trimmed to given length, adding an ending (default: "..") if necessary.
|
|
*
|
|
* @param string $string String to trim
|
|
* @param integer $length Length of returned string, excluding ellipsis
|
|
* @param string $ending Ending to be appended after trimmed string
|
|
* @return string Trimmed string
|
|
*/
|
|
function trim($string, $length, $ending='..')
|
|
{
|
|
return substr($string, 0, $length).(strlen($string)>$length? $ending: null);
|
|
}
|
|
|
|
/**
|
|
* Returns a UNIX timestamp, given either a UNIX timestamp or a valid strtotime() date string.
|
|
*
|
|
* @param string $date_string Datetime string
|
|
* @return string Formatted date string
|
|
*/
|
|
function fromString ($date_string)
|
|
{
|
|
if (is_integer($date_string))
|
|
{
|
|
return $date_string;
|
|
}
|
|
else
|
|
{
|
|
return strtotime($date_string);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a nicely formatted date string for given Datetime string.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Formatted date string
|
|
*/
|
|
function nice ($date_string=null, $return = false)
|
|
{
|
|
if($date_string != null)
|
|
{
|
|
$date = $this->fromString($date_string);
|
|
}
|
|
else
|
|
{
|
|
$date = time();
|
|
}
|
|
$ret = date("D, M jS Y, H:i", $date);
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns a formatted descriptive date string for given datetime string.
|
|
*
|
|
* If the given date is today, the returned string could be "Today, 16:54".
|
|
* If the given date was yesterday, the returned string could be "Yesterday, 16:54".
|
|
* If $date_string's year is the current year, the returned string does not
|
|
* include mention of the year.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Described, relative date string
|
|
*/
|
|
function niceShort ($date_string=null,$return = false)
|
|
{
|
|
$date = $date_string? $this->fromString($date_string): time();
|
|
|
|
$y = $this->isThisYear($date)? '': ' Y';
|
|
|
|
if ($this->isToday($date))
|
|
{
|
|
$ret = "Today, ".date("H:i", $date);
|
|
}
|
|
elseif ($this->wasYesterday($date))
|
|
{
|
|
$ret = "Yesterday, ".date("H:i", $date);
|
|
}
|
|
else
|
|
{
|
|
$ret = date("M jS{$y}, H:i", $date);
|
|
}
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns true if given datetime string is today.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return boolean True if datetime string is today
|
|
*/
|
|
function isToday ($date_string)
|
|
{
|
|
$date = $this->fromString($date_string, $return = false);
|
|
$ret = date('Y-m-d', $date) == date('Y-m-d', time());
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns a partial SQL string to search for all records between two dates.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param string $end Datetime string or Unix timestamp
|
|
* @param string $field_name Name of database field to compare with
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Partial SQL string.
|
|
*/
|
|
function daysAsSql ($begin, $end, $field_name, $return = false)
|
|
{
|
|
$begin = $this->fromString($begin);
|
|
$end = $this->fromString($end);
|
|
$begin = date('Y-m-d', $begin).' 00:00:00';
|
|
$end = date('Y-m-d', $end). ' 23:59:59';
|
|
|
|
$ret = "($field_name >= '$begin') AND ($field_name <= '$end')";
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns a partial SQL string to search for all records between two times
|
|
* occurring on the same day.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param string $field_name Name of database field to compare with
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Partial SQL string.
|
|
*/
|
|
function dayAsSql ($date_string, $field_name, $return = false)
|
|
{
|
|
$date = $this->fromString($date_string);
|
|
$ret = $this->daysAsSql($date_string, $date_string, $field_name);
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns true if given datetime string is within current year.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return boolean True if datetime string is within current year
|
|
*/
|
|
function isThisYear ($date_string, $return = false) {
|
|
$date = $this->fromString($date_string);
|
|
$ret = date('Y', $date) == date('Y', time());
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns true if given datetime string was yesterday.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return boolean True if datetime string was yesterday
|
|
*/
|
|
function wasYesterday ($date_string, $return = false) {
|
|
$date = $this->fromString($date_string);
|
|
$ret = date('Y-m-d', $date) == date('Y-m-d', strtotime('yesterday'));
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns true if given datetime string is tomorrow.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return boolean True if datetime string was yesterday
|
|
*/
|
|
function isTomorrow ($date_string, $return = false) {
|
|
$date = $this->fromString($date_string);
|
|
$ret = date('Y-m-d', $date) == date('Y-m-d', strtotime('tomorrow'));
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns a UNIX timestamp from a textual datetime description. Wrapper for PHP function strtotime().
|
|
*
|
|
* @param string $date_string Datetime string to be represented as a Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return int Unix timestamp
|
|
*/
|
|
function toUnix ($date_string, $return = false) {
|
|
$ret = strtotime($date_string);
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns a date formatted for Atom RSS feeds.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Formatted date string
|
|
*/
|
|
function toAtom ($date_string, $return = false) {
|
|
$date = $this->fromString($date_string);
|
|
$ret = date('Y-m-d\TH:i:s\Z', $date);
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Formats date for RSS feeds
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Formatted date string
|
|
*/
|
|
function toRSS ($date_string, $return = false)
|
|
{
|
|
$date = TimeHelper::fromString($date_string);
|
|
$ret = date("r", $date);
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns either a relative date or a formatted date depending
|
|
* on the difference between the current time and given datetime.
|
|
* $datetime should be in a <i>strtotime</i>-parsable format like MySQL datetime.
|
|
*
|
|
* Relative dates look something like this:
|
|
* 3 weeks, 4 days ago
|
|
* 15 seconds ago
|
|
* Formatted dates look like this:
|
|
* on 02/18/2004
|
|
*
|
|
* The returned string includes 'ago' or 'on' and assumes you'll properly add a word
|
|
* like 'Posted ' before the function output.
|
|
*
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param string $format Default format if timestamp is used
|
|
* @param string $backwards False if $date_string is in the past, true if in the future
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Relative time string.
|
|
*/
|
|
function timeAgoInWords ($datetime_string, $format = 'j/n/y', $backwards = false, $return = false)
|
|
{
|
|
$datetime = $this->fromString($datetime_string);
|
|
|
|
$in_seconds = $datetime;
|
|
if($backwards)
|
|
{
|
|
$diff = $in_seconds-time();
|
|
}
|
|
else
|
|
{
|
|
$diff = time()-$in_seconds;
|
|
}
|
|
$months = floor($diff/2419200);
|
|
$diff -= $months*2419200;
|
|
$weeks = floor($diff/604800);
|
|
$diff -= $weeks*604800;
|
|
$days = floor($diff/86400);
|
|
$diff -= $days*86400;
|
|
$hours = floor($diff/3600);
|
|
$diff -= $hours*3600;
|
|
$minutes = floor($diff/60);
|
|
$diff -= $minutes*60;
|
|
$seconds = $diff;
|
|
|
|
if ($months>0)
|
|
{
|
|
// over a month old, just show date (mm/dd/yyyy format)
|
|
$relative_date = 'on '.date($format, $in_seconds);
|
|
$old = true;
|
|
}
|
|
else
|
|
{
|
|
$relative_date='';
|
|
$old = false;
|
|
if ($weeks>0)
|
|
{
|
|
// weeks and days
|
|
$relative_date .= ($relative_date?', ':'').$weeks.' week'.($weeks>1?'s':'');
|
|
$relative_date .= $days>0?($relative_date?', ':'').$days.' day'.($days>1?'s':''):'';
|
|
}
|
|
elseif ($days>0)
|
|
{
|
|
// days and hours
|
|
$relative_date .= ($relative_date?', ':'').$days.' day'.($days>1?'s':'');
|
|
$relative_date .= $hours>0?($relative_date?', ':'').$hours.' hour'.($hours>1?'s':''):'';
|
|
}
|
|
elseif ($hours>0)
|
|
{
|
|
// hours and minutes
|
|
$relative_date .= ($relative_date?', ':'').$hours.' hour'.($hours>1?'s':'');
|
|
$relative_date .= $minutes>0?($relative_date?', ':'').$minutes.' minute'.($minutes>1?'s':''):'';
|
|
}
|
|
elseif ($minutes>0)
|
|
{
|
|
// minutes only
|
|
$relative_date .= ($relative_date?', ':'').$minutes.' minute'.($minutes>1?'s':'');
|
|
}
|
|
else
|
|
{
|
|
// seconds only
|
|
$relative_date .= ($relative_date?', ':'').$seconds.' second'.($seconds>1?'s':'');
|
|
}
|
|
}
|
|
|
|
$ret = $relative_date;
|
|
// show relative date and add proper verbiage
|
|
if(!$backwards && !$old)
|
|
{
|
|
$ret .= ' ago';
|
|
}
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Alias for timeAgoInWords
|
|
* @param string $date_string Datetime string or Unix timestamp
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return string Relative time string.
|
|
*/
|
|
function relativeTime ($datetime_string, $format = 'j/n/y', $return = false)
|
|
{
|
|
$date = strtotime($datetime_string);
|
|
|
|
if(strtotime("now") > $date)
|
|
{
|
|
$ret = $this->timeAgoInWords($datetime_string, $format, false);
|
|
}
|
|
else
|
|
{
|
|
$ret = $this->timeAgoInWords($datetime_string, $format, true);
|
|
}
|
|
|
|
return $this->output($ret, $return);
|
|
}
|
|
|
|
/**
|
|
* Returns true if specified datetime was within the interval specified, else false.
|
|
*
|
|
* @param mixed $timeInterval the numeric value with space then time
|
|
* type. Example of valid types: 6 hours, 2 days, 1 minute.
|
|
* @param mixed $date the datestring or unix timestamp to compare
|
|
* @param boolean $return Whether this method should return a value
|
|
* or output it. This overrides AUTO_OUTPUT.
|
|
* @return boolean
|
|
*/
|
|
function wasWithinLast($timeInterval, $date_string, $return = false)
|
|
{
|
|
$date = $this->fromString($date_string);
|
|
|
|
$result = preg_split('/\\s/', $timeInterval);
|
|
|
|
$numInterval = $result[0];
|
|
$textInterval = $result[1];
|
|
$currentTime = floor(time());
|
|
$seconds = ($currentTime - floor($date));
|
|
|
|
switch($textInterval)
|
|
{
|
|
|
|
case "seconds":
|
|
case "second":
|
|
$timePeriod = $seconds;
|
|
$ret = $return;
|
|
break;
|
|
|
|
case "minutes":
|
|
case "minute":
|
|
$minutes = floor($seconds / 60);
|
|
$timePeriod = $minutes;
|
|
break;
|
|
|
|
|
|
case "hours":
|
|
case "hour":
|
|
$hours = floor($seconds / 3600);
|
|
$timePeriod = $hours;
|
|
break;
|
|
|
|
case "days":
|
|
case "day":
|
|
$days = floor($seconds / 86400);
|
|
$timePeriod = $days;
|
|
break;
|
|
|
|
case "weeks":
|
|
case "week":
|
|
$weeks = floor($seconds / 604800);
|
|
$timePeriod = $weeks;
|
|
break;
|
|
|
|
|
|
case "months":
|
|
case "month":
|
|
$months = floor($seconds / 2629743.83);
|
|
$timePeriod = $months;
|
|
break;
|
|
|
|
|
|
case "years":
|
|
case "year":
|
|
$years = floor($seconds / 31556926);
|
|
$timePeriod = $years;
|
|
break;
|
|
|
|
|
|
default:
|
|
$days = floor($seconds / 86400);
|
|
$timePeriod = $days;
|
|
break;
|
|
}
|
|
|
|
if ($timePeriod <= $numInterval)
|
|
{
|
|
$ret = true;
|
|
}
|
|
else
|
|
{
|
|
$ret = false;
|
|
}
|
|
|
|
return $this->output($ret, $return);
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|