Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F124410657
PhabricatorStandardCustomFieldHeader.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Aug 2, 08:28
Size
668 B
Mime Type
text/x-php
Expires
Mon, Aug 4, 08:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27833163
Attached To
rPH Phabricator
PhabricatorStandardCustomFieldHeader.php
View Options
<?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
Log In to Comment