Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F32914289
AphrontTypeaheadTemplateView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
1 KB
Subscribers
None
AphrontTypeaheadTemplateView.php
View Options
<?php
final
class
AphrontTypeaheadTemplateView
extends
AphrontView
{
private
$value
;
private
$name
;
private
$id
;
public
function
setID
(
$id
)
{
$this
->
id
=
$id
;
return
$this
;
}
public
function
setValue
(
array
$value
)
{
$this
->
value
=
$value
;
return
$this
;
}
public
function
getValue
()
{
return
$this
->
value
;
}
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
render
()
{
require_celerity_resource
(
'aphront-typeahead-control-css'
);
$id
=
$this
->
id
;
$name
=
$this
->
getName
();
$values
=
nonempty
(
$this
->
getValue
(),
array
());
$tokens
=
array
();
foreach
(
$values
as
$key
=>
$value
)
{
$tokens
[]
=
$this
->
renderToken
(
$key
,
$value
);
}
$input
=
javelin_tag
(
'input'
,
array
(
'name'
=>
$name
,
'class'
=>
'jx-typeahead-input'
,
'sigil'
=>
'typeahead'
,
'type'
=>
'text'
,
'value'
=>
$this
->
value
,
'autocomplete'
=>
'off'
,
));
return
javelin_tag
(
'div'
,
array
(
'id'
=>
$id
,
'sigil'
=>
'typeahead-hardpoint'
,
'class'
=>
'jx-typeahead-hardpoint'
,
),
array
(
$input
,
phutil_tag
(
'div'
,
array
(
'style'
=>
'clear: both'
),
''
),
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Nov 17, 9:27 PM (1 d, 10 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b8/3d/e270bbf7ad817b48740b938faf6f
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment