Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1080537
PhabricatorSpacesApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorSpacesApplication.php
View Options
<?php
final
class
PhabricatorSpacesApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/spaces/'
;
}
public
function
getName
()
{
return
pht
(
'Spaces'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Policy Namespaces'
);
}
public
function
getFontIcon
()
{
return
'fa-th-large'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
97
\x
8B"
;
}
public
function
getFlavorText
()
{
return
pht
(
'Control access to groups of objects.'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
canUninstall
()
{
return
true
;
}
public
function
isPrototype
()
{
return
true
;
}
public
function
getHelpDocumentationArticles
(
PhabricatorUser
$viewer
)
{
return
array
(
array
(
'name'
=>
pht
(
'Spaces User Guide'
),
'href'
=>
PhabricatorEnv
::
getDoclink
(
'Spaces User Guide'
),
),
);
}
public
function
getRemarkupRules
()
{
return
array
(
new
PhabricatorSpacesRemarkupRule
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/S(?P<id>[1-9]
\d
*)'
=>
'PhabricatorSpacesViewController'
,
'/spaces/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorSpacesListController'
,
'create/'
=>
'PhabricatorSpacesEditController'
,
'edit/(?:(?P<id>
\d
+)/)?'
=>
'PhabricatorSpacesEditController'
,
'(?P<action>activate|archive)/(?P<id>
\d
+)/'
=>
'PhabricatorSpacesArchiveController'
,
),
);
}
protected
function
getCustomCapabilities
()
{
return
array
(
PhabricatorSpacesCapabilityCreateSpaces
::
CAPABILITY
=>
array
(
'default'
=>
PhabricatorPolicies
::
POLICY_ADMIN
,
),
PhabricatorSpacesCapabilityDefaultView
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default view policy for newly created spaces.'
),
),
PhabricatorSpacesCapabilityDefaultEdit
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default edit policy for newly created spaces.'
),
'default'
=>
PhabricatorPolicies
::
POLICY_ADMIN
,
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jun 29, 9:05 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
265813
Default Alt Text
PhabricatorSpacesApplication.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment