Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94136961
PhabricatorTextAreaEditField.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
Wed, Dec 4, 04:49
Size
864 B
Mime Type
text/x-php
Expires
Fri, Dec 6, 04:49 (2 d)
Engine
blob
Format
Raw Data
Handle
22742079
Attached To
rPH Phabricator
PhabricatorTextAreaEditField.php
View Options
<?php
final
class
PhabricatorTextAreaEditField
extends
PhabricatorEditField
{
private
$monospaced
;
private
$height
;
public
function
setMonospaced
(
$monospaced
)
{
$this
->
monospaced
=
$monospaced
;
return
$this
;
}
public
function
getMonospaced
()
{
return
$this
->
monospaced
;
}
public
function
setHeight
(
$height
)
{
$this
->
height
=
$height
;
return
$this
;
}
public
function
getHeight
()
{
return
$this
->
height
;
}
protected
function
newControl
()
{
$control
=
new
AphrontFormTextAreaControl
();
if
(
$this
->
getMonospaced
())
{
$control
->
setCustomClass
(
'PhabricatorMonospaced'
);
}
$height
=
$this
->
getHeight
();
if
(
$height
)
{
$control
->
setHeight
(
$height
);
}
return
$control
;
}
protected
function
newConduitParameterType
()
{
return
new
ConduitStringParameterType
();
}
}
Event Timeline
Log In to Comment