Differential D8695 Diff 20631 src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldText.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldText.php
| Show First 20 Lines • Show All 44 Lines • ▼ Show 20 Lines | public function appendToApplicationSearchForm( | ||||
| $form->appendChild( | $form->appendChild( | ||||
| id(new AphrontFormTextControl()) | id(new AphrontFormTextControl()) | ||||
| ->setLabel($this->getFieldName()) | ->setLabel($this->getFieldName()) | ||||
| ->setName($this->getFieldKey()) | ->setName($this->getFieldKey()) | ||||
| ->setValue($value)); | ->setValue($value)); | ||||
| } | } | ||||
| public function shouldAppearInHerald() { | |||||
| return true; | |||||
| } | |||||
| public function getHeraldFieldConditions() { | |||||
| return array( | |||||
| HeraldAdapter::CONDITION_CONTAINS, | |||||
| HeraldAdapter::CONDITION_NOT_CONTAINS, | |||||
| HeraldAdapter::CONDITION_IS, | |||||
| HeraldAdapter::CONDITION_IS_NOT, | |||||
| HeraldAdapter::CONDITION_REGEXP, | |||||
| ); | |||||
| } | |||||
| } | } | ||||