Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116779480
PhabricatorApplicationLaunchView.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
Mon, Jun 9, 04:30
Size
4 KB
Mime Type
text/x-php
Expires
Wed, Jun 11, 04:30 (2 d)
Engine
blob
Format
Raw Data
Handle
26649295
Attached To
rPH Phabricator
PhabricatorApplicationLaunchView.php
View Options
<?php
final
class
PhabricatorApplicationLaunchView
extends
AphrontView
{
private
$application
;
private
$status
;
private
$fullWidth
;
public
function
setFullWidth
(
$full_width
)
{
$this
->
fullWidth
=
$full_width
;
return
$this
;
}
public
function
setApplication
(
PhabricatorApplication
$application
)
{
$this
->
application
=
$application
;
return
$this
;
}
public
function
setApplicationStatus
(
array
$status
)
{
$this
->
status
=
$status
;
return
$this
;
}
public
function
render
()
{
$application
=
$this
->
application
;
require_celerity_resource
(
'phabricator-application-launch-view-css'
);
require_celerity_resource
(
'sprite-apps-large-css'
);
$content
=
array
();
$icon
=
null
;
$create_button
=
null
;
if
(
$application
)
{
$content
[]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-application-launch-name'
,
),
$application
->
getName
());
if
(
$application
->
isBeta
())
{
$content
[]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-application-beta'
,
),
"
\x
CE
\x
B2"
);
}
if
(
$this
->
fullWidth
)
{
$content
[]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-application-launch-description'
,
),
$application
->
getShortDescription
());
}
$counts
=
array
();
$text
=
array
();
if
(
$this
->
status
)
{
foreach
(
$this
->
status
as
$status
)
{
$type
=
$status
->
getType
();
$counts
[
$type
]
=
idx
(
$counts
,
$type
,
0
)
+
$status
->
getCount
();
if
(
$status
->
getCount
())
{
$text
[]
=
$status
->
getText
();
}
}
}
$attention
=
PhabricatorApplicationStatusView
::
TYPE_NEEDS_ATTENTION
;
$warning
=
PhabricatorApplicationStatusView
::
TYPE_WARNING
;
if
(!
empty
(
$counts
[
$attention
])
||
!
empty
(
$counts
[
$warning
]))
{
$count
=
idx
(
$counts
,
$attention
,
0
);
$count1
=
$count2
=
''
;
if
(
$count
>
0
)
{
$count1
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-application-attention-count'
,
),
$count
);
}
if
(!
empty
(
$counts
[
$warning
]))
{
$count2
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-application-warning-count'
,
),
$counts
[
$warning
]);
}
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$content
[]
=
javelin_tag
(
'span'
,
array
(
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
implode
(
"
\n
"
,
$text
),
'size'
=>
240
,
),
'class'
=>
'phabricator-application-launch-attention'
,
),
array
(
$count1
,
$count2
));
}
$classes
=
array
();
$classes
[]
=
'phabricator-application-launch-icon'
;
$styles
=
array
();
if
(
$application
->
getIconURI
())
{
$styles
[]
=
'background-image: url('
.
$application
->
getIconURI
().
')'
;
}
else
{
$icon
=
$application
->
getIconName
();
$classes
[]
=
'sprite-apps-large'
;
$classes
[]
=
'apps-'
.
$icon
.
'-light-large'
;
}
$icon
=
phutil_tag
(
'span'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
'style'
=>
nonempty
(
implode
(
'; '
,
$styles
),
null
),
),
''
);
$classes
=
array
();
if
(
$application
->
getQuickCreateURI
())
{
$classes
[]
=
'phabricator-application-create-icon'
;
$classes
[]
=
'sprite-icons'
;
$classes
[]
=
'icons-new-white'
;
$plus_icon
=
phutil_tag
(
'span'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
),
''
);
$create_button
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$application
->
getQuickCreateURI
(),
'class'
=>
'phabricator-application-launch-create'
,
),
$plus_icon
);
$classes
=
array
();
$classes
[]
=
'application-tile-create'
;
}
}
$classes
[]
=
'phabricator-application-launch-container'
;
if
(
$this
->
fullWidth
)
{
$classes
[]
=
'application-tile-full'
;
}
$title
=
null
;
if
(
$application
&&
!
$this
->
fullWidth
)
{
$title
=
$application
->
getShortDescription
();
}
$app_button
=
phutil_tag
(
$application
?
'a'
:
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
'href'
=>
$application
?
$application
->
getBaseURI
()
:
null
,
'title'
=>
$title
,
),
array
(
$icon
,
$content
,
));
return
array
(
$app_button
,
$create_button
);
}
}
Event Timeline
Log In to Comment