Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2896365
PhabricatorCalendarManagementNotifyWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1011 B
Referenced Files
None
Subscribers
None
PhabricatorCalendarManagementNotifyWorkflow.php
View Options
<?php
final
class
PhabricatorCalendarManagementNotifyWorkflow
extends
PhabricatorCalendarManagementWorkflow
{
protected
function
didConstruct
(
)
{
$this
->
setName
(
'notify'
)
->
setExamples
(
'**notify** [options]'
)
->
setSynopsis
(
pht
(
'Test and debug notifications about upcoming events.'
)
)
->
setArguments
(
array
(
array
(
'name'
=>
'minutes'
,
'param'
=>
'N'
,
'help'
=>
pht
(
'Notify about events in the next __N__ minutes (default: 15). '
.
'Setting this to a larger value makes testing easier.'
)
,
)
,
)
)
;
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$viewer
=
$this
->
getViewer
(
)
;
$engine
=
new
PhabricatorCalendarNotificationEngine
(
)
;
$minutes
=
$args
->
getArg
(
'minutes'
)
;
if
(
$minutes
)
{
$engine
->
setNotifyWindow
(
phutil_units
(
"{$minutes} minutes in seconds"
)
)
;
}
$engine
->
publishNotifications
(
)
;
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 22:58 (6 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129643
Default Alt Text
PhabricatorCalendarManagementNotifyWorkflow.php (1011 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment