Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96627313
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
Sun, Dec 29, 04:54
Size
682 B
Mime Type
text/x-php
Expires
Tue, Dec 31, 04:54 (2 d)
Engine
blob
Format
Raw Data
Handle
23218300
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
(
array
$handles
)
{
return
$this
->
getFieldName
();
}
}
Event Timeline
Log In to Comment