Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568189
ConpherenceThreadMembersPolicyRule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1010 B
Referenced Files
None
Subscribers
None
ConpherenceThreadMembersPolicyRule.php
View Options
<?php
final
class
ConpherenceThreadMembersPolicyRule
extends
PhabricatorPolicyRule
{
public
function
getObjectPolicyKey
()
{
return
'conpherence.members'
;
}
public
function
getObjectPolicyName
()
{
return
pht
(
'Room Participants'
);
}
public
function
getPolicyExplanation
()
{
return
pht
(
'Participants in this room can take this action.'
);
}
public
function
getRuleDescription
()
{
return
pht
(
'room participants'
);
}
public
function
getObjectPolicyIcon
()
{
return
'fa-comments'
;
}
public
function
canApplyToObject
(
PhabricatorPolicyInterface
$object
)
{
return
(
$object
instanceof
ConpherenceThread
);
}
public
function
applyRule
(
PhabricatorUser
$viewer
,
$value
,
PhabricatorPolicyInterface
$object
)
{
$viewer_phid
=
$viewer
->
getPHID
();
if
(!
$viewer_phid
)
{
return
false
;
}
return
(
bool
)
$object
->
getParticipantIfExists
(
$viewer_phid
);
}
public
function
getValueControlType
()
{
return
self
::
CONTROL_TYPE_NONE
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:17 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
124370
Default Alt Text
ConpherenceThreadMembersPolicyRule.php (1010 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment