Page MenuHomec4science

ConpherenceThreadMembersPolicyRule.php
No OneTemporary

File Metadata

Created
Thu, Jul 17, 00:03

ConpherenceThreadMembersPolicyRule.php

<?php
final class ConpherenceThreadMembersPolicyRule
extends PhabricatorPolicyRule {
public function getObjectPolicyKey() {
return 'conpherence.members';
}
public function getObjectPolicyName() {
return pht('Thread Members');
}
public function getPolicyExplanation() {
return pht('Members of this thread can take this action.');
}
public function getRuleDescription() {
return pht('thread members');
}
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;
}
}

Event Timeline