mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-24 07:42:40 +01:00
d6b882a804
Summary: Ref T6822. Test Plan: `grep` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: hach-que, Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11370
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorToken extends PhabricatorTokenDAO
|
|
implements PhabricatorPolicyInterface {
|
|
|
|
protected $phid;
|
|
protected $name;
|
|
protected $filePHID;
|
|
|
|
protected function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_AUX_PHID => true,
|
|
self::CONFIG_NO_TABLE => true,
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function getCapabilities() {
|
|
return array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
);
|
|
}
|
|
|
|
public function getPolicy($capability) {
|
|
return PhabricatorPolicies::getMostOpenPolicy();
|
|
}
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
|
return false;
|
|
}
|
|
|
|
public function describeAutomaticCapability($capability) {
|
|
return null;
|
|
}
|
|
|
|
public function renderIcon() {
|
|
// TODO: Maybe move to a View class?
|
|
|
|
require_celerity_resource('sprite-tokens-css');
|
|
require_celerity_resource('tokens-css');
|
|
|
|
$sprite = substr($this->getPHID(), 10);
|
|
|
|
return id(new PHUIIconView())
|
|
->setSpriteSheet(PHUIIconView::SPRITE_TOKENS)
|
|
->setSpriteIcon($sprite);
|
|
|
|
}
|
|
|
|
}
|