mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialSubscribersField
|
||
|
extends DifferentialCoreCustomField {
|
||
|
|
||
|
public function getFieldKey() {
|
||
|
return 'differential:subscribers';
|
||
|
}
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('Subscribers');
|
||
|
}
|
||
|
|
||
|
public function getFieldDescription() {
|
||
|
return pht('Manage subscribers.');
|
||
|
}
|
||
|
|
||
|
protected function readValueFromRevision(
|
||
|
DifferentialRevision $revision) {
|
||
|
return PhabricatorSubscribersQuery::loadSubscribersForPHID(
|
||
|
$revision->getPHID());
|
||
|
}
|
||
|
|
||
|
public function getNewValueForApplicationTransactions() {
|
||
|
return array('=' => $this->getValue());
|
||
|
}
|
||
|
|
||
|
public function readValueFromRequest(AphrontRequest $request) {
|
||
|
$this->setValue($request->getArr($this->getFieldKey()));
|
||
|
}
|
||
|
|
||
|
public function getRequiredHandlePHIDsForEdit() {
|
||
|
return $this->getValue();
|
||
|
}
|
||
|
|
||
|
public function renderEditControl(array $handles) {
|
||
|
return id(new AphrontFormTokenizerControl())
|
||
|
->setName($this->getFieldKey())
|
||
|
->setDatasource('/typeahead/common/mailable/')
|
||
|
->setValue($handles)
|
||
|
->setError($this->getFieldError())
|
||
|
->setLabel($this->getFieldName());
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return PhabricatorTransactions::TYPE_SUBSCRIBERS;
|
||
|
}
|
||
|
|
||
|
}
|