Page MenuHomec4science

PhabricatorStandardCustomFieldHeader.php
No OneTemporary

File Metadata

Created
Thu, Aug 29, 20:03

PhabricatorStandardCustomFieldHeader.php

<?php
final class PhabricatorStandardCustomFieldHeader
extends PhabricatorStandardCustomField {
public function getFieldType() {
return 'header';
}
public function renderEditControl(array $handles) {
$header = phutil_tag(
'div',
array(
'class' => 'phabricator-standard-custom-field-header',
),
$this->getFieldName());
return id(new AphrontFormStaticControl())
->setValue($header);
}
public function shouldUseStorage() {
return false;
}
public function getStyleForPropertyView() {
return 'header';
}
public function renderPropertyViewValue() {
return $this->getFieldName();
}
}

Event Timeline