Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110842889
PhabricatorCountdownViewController.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, Apr 28, 09:33
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Apr 30, 09:33 (2 d)
Engine
blob
Format
Raw Data
Handle
25833179
Attached To
rPH Phabricator
PhabricatorCountdownViewController.php
View Options
<?php
/**
* @group countdown
*/
final
class
PhabricatorCountdownViewController
extends
PhabricatorCountdownController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$countdown
=
id
(
new
CountdownQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
executeOne
();
if
(!
$countdown
)
{
return
new
Aphront404Response
();
}
require_celerity_resource
(
'phabricator-countdown-css'
);
$chrome_visible
=
$request
->
getBool
(
'chrome'
,
true
);
$chrome_new
=
$chrome_visible
?
false
:
null
;
$chrome_link
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$request
->
getRequestURI
()->
alter
(
'chrome'
,
$chrome_new
),
'class'
=>
'phabricator-timer-chrome-link'
,
),
$chrome_visible
?
pht
(
'Disable Chrome'
)
:
pht
(
'Enable Chrome'
));
$container
=
celerity_generate_unique_node_id
();
$content
=
hsprintf
(
'<div class="phabricator-timer" id="%s">
<h1 class="phabricator-timer-header">%s · %s</h1>
<div class="phabricator-timer-pane">
<table class="phabricator-timer-table">
<tr>
<th>%s</th>
<th>%s</th>
<th>%s</th>
<th>%s</th>
</tr>
<tr>%s%s%s%s</tr>
</table>
</div>
%s
</div>'
,
$container
,
$countdown
->
getTitle
(),
phabricator_datetime
(
$countdown
->
getEpoch
(),
$user
),
pht
(
'Days'
),
pht
(
'Hours'
),
pht
(
'Minutes'
),
pht
(
'Seconds'
),
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'
),
''
),
$chrome_link
);
Javelin
::
initBehavior
(
'countdown-timer'
,
array
(
'timestamp'
=>
$countdown
->
getEpoch
(),
'container'
=>
$container
,
));
$panel
=
$content
;
$crumbs
=
$this
->
buildApplicationCrumbs
()
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
$countdown
->
getTitle
())
->
setHref
(
$this
->
getApplicationURI
(
$this
->
id
.
'/'
)));
return
$this
->
buildApplicationPage
(
array
(
(
$chrome_visible
?
$crumbs
:
''
),
$panel
,
),
array
(
'title'
=>
pht
(
'Countdown: %s'
,
$countdown
->
getTitle
()),
'chrome'
=>
$chrome_visible
,
'device'
=>
true
,
));
}
}
Event Timeline
Log In to Comment