diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-02-23 22:12:02 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-02-23 22:12:02 -0600 |
commit | 55aabb8b0607174668fcf63c2cee2edf4a1f8527 (patch) | |
tree | c0645943b785847ab8d46f5f6fc6b05bae54bdd3 /doc/classes | |
parent | cfc7c78732198a7ebc43b92ed24e7025fdf4bc11 (diff) |
Add offset string from minutes conversion method to Time singleton
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Time.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/Time.xml b/doc/classes/Time.xml index bb59881db9..dd83fa54ff 100644 --- a/doc/classes/Time.xml +++ b/doc/classes/Time.xml @@ -97,6 +97,13 @@ If [code]use_space[/code] is true, use a space instead of the letter T in the middle. </description> </method> + <method name="get_offset_string_from_offset_minutes" qualifiers="const"> + <return type="String" /> + <argument index="0" name="offset_minutes" type="int" /> + <description> + Converts the given timezone offset in minutes to a timezone offset string. For example, -480 returns "-08:00", 345 returns "+05:45", and 0 returns "+00:00". + </description> + </method> <method name="get_ticks_msec" qualifiers="const"> <return type="int" /> <description> |