Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F557355
ManiphestTaskPoints.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1016 B
Referenced Files
None
Subscribers
None
ManiphestTaskPoints.php
View Options
<?php
final
class
ManiphestTaskPoints
extends
Phobject
{
public
static
function
getIsEnabled
()
{
$config
=
self
::
getPointsConfig
();
return
idx
(
$config
,
'enabled'
);
}
public
static
function
getPointsLabel
()
{
$config
=
self
::
getPointsConfig
();
return
idx
(
$config
,
'label'
,
pht
(
'Points'
));
}
public
static
function
getPointsActionLabel
()
{
$config
=
self
::
getPointsConfig
();
return
idx
(
$config
,
'action'
,
pht
(
'Change Points'
));
}
private
static
function
getPointsConfig
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'maniphest.points'
);
}
public
static
function
validateConfiguration
(
$config
)
{
if
(!
is_array
(
$config
))
{
throw
new
Exception
(
pht
(
'Configuration is not valid. Maniphest points configuration must '
.
'be a dictionary.'
));
}
PhutilTypeSpec
::
checkMap
(
$config
,
array
(
'enabled'
=>
'optional bool'
,
'label'
=>
'optional string'
,
'action'
=>
'optional string'
,
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:02 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
123938
Default Alt Text
ManiphestTaskPoints.php (1016 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment