Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99942058
PhabricatorSlowvoteApplication.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, Jan 27, 09:31
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jan 29, 09:31 (2 d)
Engine
blob
Format
Raw Data
Handle
23854143
Attached To
rPH Phabricator
PhabricatorSlowvoteApplication.php
View Options
<?php
final
class
PhabricatorSlowvoteApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/vote/'
;
}
public
function
getIcon
()
{
return
'fa-bar-chart'
;
}
public
function
getName
()
{
return
pht
(
'Slowvote'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Conduct Polls'
);
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9C
\x
94"
;
}
public
function
getHelpDocumentationArticles
(
PhabricatorUser
$viewer
)
{
return
array
(
array
(
'name'
=>
pht
(
'Slowvote User Guide'
),
'href'
=>
PhabricatorEnv
::
getDoclink
(
'Slowvote User Guide'
),
),
);
}
public
function
getFlavorText
()
{
return
pht
(
'Design by committee.'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
getRemarkupRules
()
{
return
array
(
new
SlowvoteRemarkupRule
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/V(?P<id>[1-9]
\d
*)'
=>
'PhabricatorSlowvotePollController'
,
'/vote/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorSlowvoteListController'
,
'create/'
=>
'PhabricatorSlowvoteEditController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorSlowvoteEditController'
,
'(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorSlowvoteVoteController'
,
'comment/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorSlowvoteCommentController'
,
'close/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorSlowvoteCloseController'
,
),
);
}
protected
function
getCustomCapabilities
()
{
return
array
(
PhabricatorSlowvoteDefaultViewCapability
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default view policy for new polls.'
),
'template'
=>
PhabricatorSlowvotePollPHIDType
::
TYPECONST
,
'capability'
=>
PhabricatorPolicyCapability
::
CAN_VIEW
,
),
);
}
}
Event Timeline
Log In to Comment