Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123058829
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
Thu, Jul 24, 17:02
Size
912 B
Mime Type
text/x-php
Expires
Sat, Jul 26, 17:02 (2 d)
Engine
blob
Format
Raw Data
Handle
27624193
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