Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18921269
PhabricatorCalendarController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
620 B
Referenced Files
None
Subscribers
None
PhabricatorCalendarController.php
View Options
<?php
abstract
class
PhabricatorCalendarController
extends
PhabricatorController
{
protected
function
buildSideNavView
(
PhabricatorUserStatus
$status
=
null
)
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$nav
->
addLabel
(
pht
(
'Calendar'
));
$nav
->
addFilter
(
'/'
,
pht
(
'View All'
));
$nav
->
addFilter
(
'status/create/'
,
pht
(
'New Status'
));
if
(
$status
&&
$status
->
getID
())
{
$nav
->
addFilter
(
'status/edit/'
.
$status
->
getID
().
'/'
,
pht
(
'Edit Status'
));
}
$nav
->
addFilter
(
'status/'
,
pht
(
'Upcoming Statuses'
));
return
$nav
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Nov 11, 1:56 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8253759
Default Alt Text
PhabricatorCalendarController.php (620 B)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment