Page MenuHomePhorge

HeraldFieldValue.php
No OneTemporary

Size
680 B
Referenced Files
None
Subscribers
None

HeraldFieldValue.php

<?php
abstract class HeraldFieldValue extends Phobject {
const CONTROL_NONE = 'herald.control.none';
const CONTROL_TEXT = 'herald.control.text';
const CONTROL_SELECT = 'herald.control.select';
const CONTROL_TOKENIZER = 'herald.control.tokenizer';
abstract public function getFieldValueKey();
abstract public function getControlType();
abstract public function renderValue(PhabricatorUser $viewer, $value);
final public function getControlSpecificationDictionary() {
return array(
'control' => $this->getControlType(),
'template' => $this->getControlTemplate(),
);
}
protected function getControlTemplate() {
return array();
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Jul 1, 10:00 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
282411
Default Alt Text
HeraldFieldValue.php (680 B)

Event Timeline