Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104810561
PhabricatorFileController.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, Mar 12, 14:24
Size
678 B
Mime Type
text/x-php
Expires
Fri, Mar 14, 14:24 (2 d)
Engine
blob
Format
Raw Data
Handle
24842586
Attached To
rPH Phabricator
PhabricatorFileController.php
View Options
<?php
abstract
class
PhabricatorFileController
extends
PhabricatorController
{
protected
function
buildSideNavView
()
{
$menu
=
$this
->
buildMenu
(
$for_devices
=
false
);
return
AphrontSideNavFilterView
::
newFromMenu
(
$menu
);
}
public
function
buildApplicationMenu
()
{
return
$this
->
buildMenu
(
$for_devices
=
true
);
}
private
function
buildMenu
(
$for_devices
)
{
$menu
=
new
PHUIListView
();
if
(
$for_devices
)
{
$menu
->
newLink
(
pht
(
'Upload File'
),
$this
->
getApplicationURI
(
'/upload/'
));
}
id
(
new
PhabricatorFileSearchEngine
())
->
setViewer
(
$this
->
getRequest
()->
getUser
())
->
addNavigationItems
(
$menu
);
return
$menu
;
}
}
Event Timeline
Log In to Comment