Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95680602
PhutilCalendarProxyDateTime.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 18, 07:57
Size
990 B
Mime Type
text/x-php
Expires
Fri, Dec 20, 07:57 (2 d)
Engine
blob
Format
Raw Data
Handle
23039942
Attached To
rPHU libphutil
PhutilCalendarProxyDateTime.php
View Options
<?php
abstract
class
PhutilCalendarProxyDateTime
extends
PhutilCalendarDateTime
{
private
$proxy
;
final
protected
function
setProxy
(
PhutilCalendarDateTime
$proxy
)
{
$this
->
proxy
=
$proxy
;
return
$this
;
}
final
protected
function
getProxy
()
{
return
$this
->
proxy
;
}
public
function
setViewerTimezone
(
$timezone
)
{
$this
->
getProxy
()->
setViewerTimezone
(
$timezone
);
return
$this
;
}
public
function
getViewerTimezone
()
{
return
$this
->
getProxy
()->
getViewerTimezone
();
}
public
function
setIsAllDay
(
$is_all_day
)
{
$this
->
getProxy
()->
setIsAllDay
(
$is_all_day
);
return
$this
;
}
public
function
getIsAllDay
()
{
return
$this
->
getProxy
()->
getIsAllDay
();
}
public
function
newPHPDateTimezone
()
{
return
$this
->
getProxy
()->
newPHPDateTimezone
();
}
public
function
newPHPDateTime
()
{
return
$this
->
getProxy
()->
newPHPDateTime
();
}
public
function
getTimezone
()
{
return
$this
->
getProxy
()->
getTimezone
();
}
}
Event Timeline
Log In to Comment