mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 03:32:42 +01:00
0306eb70ed
Summary: Ref T8726. Some adapters now have a large number of fields, and we lost the sort-of-human-readable implicit ordering when fields were modularized. Instead, group and sort fields. Test Plan: {F603066} Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13619
33 lines
622 B
PHP
33 lines
622 B
PHP
<?php
|
|
|
|
final class HeraldAlwaysField extends HeraldField {
|
|
|
|
const FIELDCONST = 'always';
|
|
|
|
public function getHeraldFieldName() {
|
|
return pht('Always');
|
|
}
|
|
|
|
public function getFieldGroupKey() {
|
|
return HeraldBasicFieldGroup::FIELDGROUPKEY;
|
|
}
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
return true;
|
|
}
|
|
|
|
public function getHeraldFieldConditions() {
|
|
return array(
|
|
HeraldAdapter::CONDITION_UNCONDITIONALLY,
|
|
);
|
|
}
|
|
|
|
public function getHeraldFieldValueType($condition) {
|
|
return new HeraldEmptyFieldValue();
|
|
}
|
|
|
|
public function supportsObject($object) {
|
|
return true;
|
|
}
|
|
|
|
}
|