Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101297838
PhabricatorApplicationPassphrase.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
Fri, Feb 7, 14:12
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Feb 9, 14:12 (2 d)
Engine
blob
Format
Raw Data
Handle
24129754
Attached To
rPH Phabricator
PhabricatorApplicationPassphrase.php
View Options
<?php
final
class
PhabricatorApplicationPassphrase
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/passphrase/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Credential Management'
);
}
public
function
getIconName
()
{
return
'passphrase'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
97
\x
88"
;
}
public
function
getFlavorText
()
{
return
pht
(
'Put your secrets in a lockbox.'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
isBeta
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/K(?P<id>
\d
+)'
=>
'PassphraseCredentialViewController'
,
'/passphrase/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PassphraseCredentialListController'
,
'create/'
=>
'PassphraseCredentialCreateController'
,
'edit/(?:(?P<id>
\d
+)/)?'
=>
'PassphraseCredentialEditController'
,
'destroy/(?P<id>
\d
+)/'
=>
'PassphraseCredentialDestroyController'
,
'reveal/(?P<id>
\d
+)/'
=>
'PassphraseCredentialRevealController'
,
));
}
}
Event Timeline
Log In to Comment