Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118919004
ManiphestTaskProjectsView.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
Sun, Jun 22, 23:52
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 24, 23:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26913287
Attached To
rPH Phabricator
ManiphestTaskProjectsView.php
View Options
<?php
/**
* @group maniphest
*/
final
class
ManiphestTaskProjectsView
extends
ManiphestView
{
private
$handles
;
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-project-tag-css'
);
$show
=
array_slice
(
$this
->
handles
,
0
,
2
);
$tags
=
array
();
foreach
(
$show
as
$handle
)
{
$tags
[]
=
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$handle
->
getURI
(),
'class'
=>
'phabricator-project-tag'
,
),
phutil_escape_html
(
phutil_utf8_shorten
(
$handle
->
getName
(),
24
)));
}
if
(
count
(
$this
->
handles
)
>
2
)
{
require_celerity_resource
(
'aphront-tooltip-css'
);
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$all
=
array
();
foreach
(
$this
->
handles
as
$handle
)
{
$all
[]
=
$handle
->
getName
();
}
$tags
[]
=
javelin_render_tag
(
'span'
,
array
(
'class'
=>
'phabricator-project-tag'
,
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
implode
(
', '
,
$all
),
'size'
=>
200
,
),
),
"
\x
E2
\x
80
\x
A6"
);
}
return
implode
(
"
\n
"
,
$tags
);
}
}
Event Timeline
Log In to Comment