Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91454920
PhabricatorJenkinsJobApplication.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
Mon, Nov 11, 07:05
Size
624 B
Mime Type
text/x-php
Expires
Wed, Nov 13, 07:05 (2 d)
Engine
blob
Format
Raw Data
Handle
22265531
Attached To
rPH Phabricator
PhabricatorJenkinsJobApplication.php
View Options
<?php
final
class
PhabricatorJenkinsJobApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Jenkins Job'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Create and execute Jobs on Jenkins'
);
}
public
function
isLaunchable
()
{
return
true
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_CORE
;
}
public
function
getBaseURI
()
{
return
'/jobs'
;
}
public
function
getIcon
()
{
return
'fa-flask'
;
}
public
function
getRoutes
()
{
return
array
(
'/jobs(.*)?'
=>
'PhabricatorJenkinsJobController'
,
);
}
}
Event Timeline
Log In to Comment