Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121712527
AlmanacServiceController.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
Sun, Jul 13, 09:17
Size
720 B
Mime Type
text/x-php
Expires
Tue, Jul 15, 09:17 (2 d)
Engine
blob
Format
Raw Data
Handle
27377070
Attached To
rPH Phabricator
AlmanacServiceController.php
View Options
<?php
abstract
class
AlmanacServiceController
extends
AlmanacController
{
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$list_uri
=
$this
->
getApplicationURI
(
'service/'
);
$crumbs
->
addTextCrumb
(
pht
(
'Services'
),
$list_uri
);
return
$crumbs
;
}
public
function
buildApplicationMenu
()
{
return
$this
->
newApplicationMenu
()
->
setSearchEngine
(
new
AlmanacServiceSearchEngine
());
}
protected
function
getPropertyDeleteURI
(
$object
)
{
$id
=
$object
->
getID
();
return
"/almanac/service/delete/{$id}/"
;
}
protected
function
getPropertyUpdateURI
(
$object
)
{
$id
=
$object
->
getID
();
return
"/almanac/service/property/{$id}/"
;
}
}
Event Timeline
Log In to Comment