API16

API16:JDate/setOffset

From Joomla! Documentation

Description

Set the date offset (in hours).


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

Syntax

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

Returns

boolean True on success.

Defined in

libraries/joomla/utilities/date.php

Importing

jimport( 'joomla.utilities.date' );

Source Body

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

Code Examples