Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105887921
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
Thu, Mar 20, 14:09
Size
984 B
Mime Type
text/x-php
Expires
Sat, Mar 22, 14:09 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25017819
Attached To
rPH Phabricator
PhabricatorFileController.php
View Options
<?php
abstract
class
PhabricatorFileController
extends
PhabricatorController
{
public
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Upload File'
))
->
setIcon
(
'fa-upload'
)
->
setHref
(
$this
->
getApplicationURI
(
'/upload/'
)));
return
$crumbs
;
}
protected
function
buildSideNavView
()
{
$menu
=
$this
->
buildMenu
(
$for_devices
=
false
);
return
AphrontSideNavFilterView
::
newFromMenu
(
$menu
);
}
protected
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