Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101067287
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
Wed, Feb 5, 09:58
Size
574 B
Mime Type
text/x-php
Expires
Fri, Feb 7, 09:58 (2 d)
Engine
blob
Format
Raw Data
Handle
24085582
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
;
}
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