Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892120
AphrontTypeaheadTemplateView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
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
(
)
;
$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
Sun, Jan 19, 16:16 (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1119189
Default Alt Text
AphrontTypeaheadTemplateView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment