Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111288132
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, Apr 30, 14:36
Size
912 B
Mime Type
text/x-php
Expires
Fri, May 2, 14:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25864237
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
();
}
protected
function
newPHPDateTimezone
()
{
return
$this
->
getProxy
()->
newPHPDateTimezone
();
}
protected
function
newPHPDateTime
()
{
return
$this
->
getProxy
()->
newPHPDateTime
();
}
}
Event Timeline
Log In to Comment