Page MenuHomec4science

PhabricatorPolicyRuleAdministrators.php
No OneTemporary

File Metadata

Created
Mon, May 12, 15:50

PhabricatorPolicyRuleAdministrators.php

<?php
final class PhabricatorPolicyRuleAdministrators
extends PhabricatorPolicyRule {
public function getRuleDescription() {
return pht('administrators');
}
public function applyRule(PhabricatorUser $viewer, $value) {
return $viewer->getIsAdmin();
}
public function getValueControlType() {
return self::CONTROL_TYPE_NONE;
}
}

Event Timeline