Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F952261
PhabricatorApplicationSlowvote.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
PhabricatorApplicationSlowvote.php
View Options
<?php
final
class
PhabricatorApplicationSlowvote
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/vote/'
;
}
public
function
getIconName
()
{
return
'slowvote'
;
}
public
function
getShortDescription
()
{
return
'Conduct Polls'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9C
\x
94"
;
}
public
function
getHelpURI
()
{
return
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'
,
),
);
}
public
function
getCustomCapabilities
()
{
return
array
(
PhabricatorSlowvoteCapabilityDefaultView
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default view policy for new polls.'
),
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 3:32 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
225558
Default Alt Text
PhabricatorApplicationSlowvote.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment