Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295225
PHUITypeaheadExample.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
PHUITypeaheadExample.php
View Options
<?php
final
class
PHUITypeaheadExample
extends
PhabricatorUIExample
{
public
function
getName
(
)
{
return
pht
(
'Typeaheads'
)
;
}
public
function
getDescription
(
)
{
return
pht
(
'Typeaheads, tokenizers and tokens.'
)
;
}
public
function
renderExample
(
)
{
$token_list
=
array
(
)
;
$token_list
[
]
=
id
(
new
PhabricatorTypeaheadTokenView
(
)
)
->
setValue
(
pht
(
'Normal Object'
)
)
->
setIcon
(
'fa-user'
)
;
$token_list
[
]
=
id
(
new
PhabricatorTypeaheadTokenView
(
)
)
->
setValue
(
pht
(
'Disabled Object'
)
)
->
setTokenType
(
PhabricatorTypeaheadTokenView
::
TYPE_DISABLED
)
->
setIcon
(
'fa-user'
)
;
$token_list
[
]
=
id
(
new
PhabricatorTypeaheadTokenView
(
)
)
->
setValue
(
pht
(
'Object with Color'
)
)
->
setIcon
(
'fa-tag'
)
->
setColor
(
'green'
)
;
$token_list
[
]
=
id
(
new
PhabricatorTypeaheadTokenView
(
)
)
->
setValue
(
pht
(
'Function Token'
)
)
->
setTokenType
(
PhabricatorTypeaheadTokenView
::
TYPE_FUNCTION
)
->
setIcon
(
'fa-users'
)
;
$token_list
[
]
=
id
(
new
PhabricatorTypeaheadTokenView
(
)
)
->
setValue
(
pht
(
'Invalid Token'
)
)
->
setTokenType
(
PhabricatorTypeaheadTokenView
::
TYPE_INVALID
)
->
setIcon
(
'fa-exclamation-circle'
)
;
$token_list
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'grouped'
,
'style'
=>
'padding: 8px'
,
)
,
$token_list
)
;
$output
=
array
(
)
;
$output
[
]
=
id
(
new
PHUIObjectBoxView
(
)
)
->
setHeaderText
(
pht
(
'Tokens'
)
)
->
appendChild
(
$token_list
)
;
return
$output
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:32 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1165300
Default Alt Text
PHUITypeaheadExample.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment