MediaWiki master
|
Library for creating and parsing MW-style timestamps. More...
Inherits ConvertibleTimestamp.
Public Member Functions | |
getRelativeTimestamp (?MWTimestamp $relativeTo=null, ?UserIdentity $user=null, ?Language $lang=null, array $chosenIntervals=[]) | |
Generate a purely relative timestamp, i.e., represent the time elapsed between the given base timestamp and this object. | |
getTimezoneMessage () | |
Get the localized timezone message, if available. | |
offsetForUser (UserIdentity $user) | |
Adjust the timestamp depending on the given user's preferences. | |
Static Public Member Functions | |
static | getInstance ( $ts=false) |
Get a timestamp instance in GMT. | |
static | getLocalInstance ( $ts=false) |
Get a timestamp instance in the server local timezone ($wgLocaltimezone) | |
Library for creating and parsing MW-style timestamps.
Based on the JS library that does the same thing.
Definition at line 48 of file MWTimestamp.php.
|
static |
Get a timestamp instance in GMT.
bool | string | $ts | Timestamp to set, or false for current time |
Definition at line 55 of file MWTimestamp.php.
|
static |
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
bool | string | $ts | Timestamp to set, or false for current time |
Definition at line 151 of file MWTimestamp.php.
References MediaWiki\MediaWikiServices\getInstance(), and MediaWiki\MainConfigNames\Localtimezone.
MediaWiki\Utils\MWTimestamp::getRelativeTimestamp | ( | ?MWTimestamp | $relativeTo = null, |
?UserIdentity | $user = null, | ||
?Language | $lang = null, | ||
array | $chosenIntervals = [] ) |
Generate a purely relative timestamp, i.e., represent the time elapsed between the given base timestamp and this object.
MWTimestamp | null | $relativeTo | Relative base timestamp (defaults to now) |
UserIdentity | null | $user | Use to use offset for |
Language | null | $lang | Language to use |
array | $chosenIntervals | Intervals to use to represent it |
Definition at line 95 of file MWTimestamp.php.
References MediaWiki\MediaWikiServices\getInstance(), and wfMessage().
MediaWiki\Utils\MWTimestamp::getTimezoneMessage | ( | ) |
Get the localized timezone message, if available.
Premade translations are not shipped as format() may return whatever the system uses, localized or not, so translation must be done through wiki.
Definition at line 133 of file MWTimestamp.php.
References wfMessage().
MediaWiki\Utils\MWTimestamp::offsetForUser | ( | UserIdentity | $user | ) |
Adjust the timestamp depending on the given user's preferences.
UserIdentity | $user | User to take preferences from |
Definition at line 67 of file MWTimestamp.php.
References MediaWiki\MediaWikiServices\getInstance(), and MediaWiki\MainConfigNames\LocalTZoffset.
Referenced by MediaWiki\Language\Language\getHumanTimestamp().