Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91069563
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
Thu, Nov 7, 13:32
Size
668 B
Mime Type
text/x-php
Expires
Sat, Nov 9, 13:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22188554
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