Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101304164
AphrontTokenizerTemplateView.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
Fri, Feb 7, 15:12
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Feb 9, 15:12 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24130489
Attached To
rPH Phabricator
AphrontTokenizerTemplateView.php
View Options
<?php
final
class
AphrontTokenizerTemplateView
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-tokenizer-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_render_tag
(
'input'
,
array
(
'mustcapture'
=>
true
,
'name'
=>
$name
,
'class'
=>
'jx-tokenizer-input'
,
'sigil'
=>
'tokenizer-input'
,
'style'
=>
'width: 0px;'
,
'disabled'
=>
'disabled'
,
'type'
=>
'text'
,
));
$content
=
$tokens
;
$content
[]
=
$input
;
$content
[]
=
phutil_tag
(
'div'
,
array
(
'style'
=>
'clear: both;'
),
''
);
return
phutil_tag
(
'div'
,
array
(
'id'
=>
$id
,
'class'
=>
'jx-tokenizer-container'
,
),
$content
);
}
private
function
renderToken
(
$key
,
$value
)
{
$input_name
=
$this
->
getName
();
if
(
$input_name
)
{
$input_name
.=
'[]'
;
}
return
phutil_tag
(
'a'
,
array
(
'class'
=>
'jx-tokenizer-token'
,
),
array
(
$value
,
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
$input_name
,
'value'
=>
$key
,
)).
phutil_tag
(
'span'
,
array
(
'class'
=>
'jx-tokenizer-x-placeholder'
),
''
),
));
}
}
Event Timeline
Log In to Comment