Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1090834
PhabricatorApplicationPassphrase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
canUninstall
()
{
return
false
;
}
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'
,
'public/(?P<id>
\d
+)/'
=>
'PassphraseCredentialPublicController'
,
'lock/(?P<id>
\d
+)/'
=>
'PassphraseCredentialLockController'
,
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 30, 4:49 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
271015
Default Alt Text
PhabricatorApplicationPassphrase.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment