Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109768185
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 23, 07:51
Size
912 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 07:51 (2 d)
Engine
blob
Format
Raw Data
Handle
25748555
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