API16

JDate/setOffset

From Joomla! Documentation

< API16:JDate

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Set the date offset (in hours).


<! removed transcluded page call, red link never existed >

Syntax[edit]

setOffset($offset)
Parameter Name Default Value Description
$offset The offset in hours.

Returns[edit]

boolean True on success.

Defined in[edit]

libraries/joomla/utilities/date.php

Importing[edit]

jimport( 'joomla.utilities.date' );

Source Body[edit]

public function setOffset($offset)
{
        // Only set the timezone if the offset exists.
        if (isset(self::$offsets[(string) $offset]))
        {
                $this->_tz = new DateTimeZone(self::$offsets[(string) $offset]);
                $this->setTimezone($this->_tz);
                return true;
        }

        return false;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]