Changeset View
Changeset View
Standalone View
Standalone View
src/applications/herald/field/HeraldField.php
| Show All 14 Lines | abstract class HeraldField extends Phobject { | ||||
| abstract public function getHeraldFieldName(); | abstract public function getHeraldFieldName(); | ||||
| abstract public function getHeraldFieldValue($object); | abstract public function getHeraldFieldValue($object); | ||||
| public function getFieldGroupKey() { | public function getFieldGroupKey() { | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getRequiredAdapterStates() { | |||||
| return array(); | |||||
| } | |||||
| protected function getHeraldFieldStandardType() { | protected function getHeraldFieldStandardType() { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| protected function getDatasource() { | protected function getDatasource() { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 171 Lines • Show Last 20 Lines | |||||