Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119607630
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
Sat, Jun 28, 00:08
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jun 30, 00:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27042156
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_tag
(
'a'
,
array
(
'href'
=>
$handle
->
getURI
(),
'class'
=>
'phabricator-project-tag'
,
),
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