Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96457956
PhabricatorCountdownView.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
Thu, Dec 26, 22:44
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Dec 28, 22:44 (2 d)
Engine
blob
Format
Raw Data
Handle
23172172
Attached To
rPH Phabricator
PhabricatorCountdownView.php
View Options
<?php
final
class
PhabricatorCountdownView
extends
AphrontView
{
private
$countdown
;
public
function
setCountdown
(
PhabricatorCountdown
$countdown
)
{
$this
->
countdown
=
$countdown
;
return
$this
;
}
public
function
render
()
{
$countdown
=
$this
->
countdown
;
require_celerity_resource
(
'phabricator-countdown-css'
);
$header_text
=
array
(
'C'
.
$countdown
->
getID
(),
' '
,
phutil_tag
(
'a'
,
array
(
'href'
=>
'/countdown/'
.
$countdown
->
getID
(),
),
$countdown
->
getTitle
()),
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$header_text
);
$ths
=
array
(
phutil_tag
(
'th'
,
array
(),
pht
(
'Days'
)),
phutil_tag
(
'th'
,
array
(),
pht
(
'Hours'
)),
phutil_tag
(
'th'
,
array
(),
pht
(
'Minutes'
)),
phutil_tag
(
'th'
,
array
(),
pht
(
'Seconds'
)),
);
$dashes
=
array
(
javelin_tag
(
'td'
,
array
(
'sigil'
=>
'phabricator-timer-days'
),
'-'
),
javelin_tag
(
'td'
,
array
(
'sigil'
=>
'phabricator-timer-hours'
),
'-'
),
javelin_tag
(
'td'
,
array
(
'sigil'
=>
'phabricator-timer-minutes'
),
'-'
),
javelin_tag
(
'td'
,
array
(
'sigil'
=>
'phabricator-timer-seconds'
),
'-'
),
);
$epoch
=
$countdown
->
getEpoch
();
$launch_date
=
phabricator_datetime
(
$epoch
,
$this
->
getUser
());
$foot
=
phutil_tag
(
'td'
,
array
(
'colspan'
=>
'4'
,
'class'
=>
'phabricator-timer-foot'
,
),
$launch_date
);
$description
=
$countdown
->
getDescription
();
if
(
strlen
(
$description
))
{
$description
=
new
PHUIRemarkupView
(
$this
->
getUser
(),
$description
);
$description
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'countdown-description phabricator-remarkup'
,
),
$description
);
}
$container
=
celerity_generate_unique_node_id
();
$content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-timer'
,
'id'
=>
$container
),
array
(
$description
,
phutil_tag
(
'table'
,
array
(
'class'
=>
'phabricator-timer-table'
),
array
(
phutil_tag
(
'tr'
,
array
(),
$ths
),
phutil_tag
(
'tr'
,
array
(),
$dashes
),
phutil_tag
(
'tr'
,
array
(),
$foot
),
)),
));
Javelin
::
initBehavior
(
'countdown-timer'
,
array
(
'timestamp'
=>
$countdown
->
getEpoch
(),
'container'
=>
$container
,
));
return
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
addClass
(
'phabricator-timer-view'
)
->
appendChild
(
$content
);
}
}
Event Timeline
Log In to Comment