Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1162235
ManiphestTaskPolicyCodex.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
ManiphestTaskPolicyCodex.php
View Options
<?php
final
class
ManiphestTaskPolicyCodex
extends
PhabricatorPolicyCodex
{
public
function
getPolicyShortName
()
{
$object
=
$this
->
getObject
();
if
(
$object
->
areEditsLocked
())
{
return
pht
(
'Edits Locked'
);
}
return
null
;
}
public
function
getPolicyIcon
()
{
$object
=
$this
->
getObject
();
if
(
$object
->
areEditsLocked
())
{
return
'fa-lock'
;
}
return
null
;
}
public
function
getPolicyTagClasses
()
{
$object
=
$this
->
getObject
();
$classes
=
array
();
if
(
$object
->
areEditsLocked
())
{
$classes
[]
=
'policy-adjusted-locked'
;
}
return
$classes
;
}
public
function
getPolicySpecialRuleDescriptions
()
{
$object
=
$this
->
getObject
();
$rules
=
array
();
$rules
[]
=
$this
->
newRule
()
->
setCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
setIsActive
(
$object
->
areEditsLocked
())
->
setDescription
(
pht
(
'Tasks with edits locked may only be edited by their owner.'
));
return
$rules
;
}
public
function
getPolicyForEdit
(
$capability
)
{
// When a task has its edits locked, the effective edit policy is locked
// to "No One". However, the task owner may still bypass the lock and edit
// the task. When they do, we want the control in the UI to have the
// correct value. Return the real value stored on the object.
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
return
$this
->
getObject
()->
getEditPolicy
();
}
return
parent
::
getPolicyForEdit
(
$capability
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jul 2, 1:42 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
289625
Default Alt Text
ManiphestTaskPolicyCodex.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment