Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93194649
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
Tue, Nov 26, 22:32
Size
759 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 22:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22581651
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
();
}
public
function
shouldAppearInApplicationSearch
()
{
return
false
;
}
}
Event Timeline
Log In to Comment