Home
last modified time | relevance | path

Searched refs:notifiers (Results 1 – 4 of 4) sorted by relevance

/plugin/structtasks/
H A Dcli.php23 public $notifiers = []; variable in cli_plugin_structtasks
46 $notifiers = $this->createNotifiers(
55 $this->processTask($task, $notifiers);
96 if ($this->testing) return $this->notifiers;
97 $notifiers = [];
102 $notifiers[] = new TodayNotifier($getConf, $getLang);
106 $notifiers[] = new ReminderNotifier($getConf, $getLang, $reminder_days);
119 $notifiers[] = new OverdueNotifier($getConf, $getLang);
122 return $notifiers;
131 function processTask($task, $notifiers) : void { argument
[all …]
H A Daction.php21 public $notifiers; variable in action_plugin_structtasks
37 if (isset($this->notifiers)) return;
40 $this->notifiers = [
85 foreach ($this->notifiers as $notifier) {
/plugin/structtasks/_test/
H A DActionTest.php30 $action->notifiers = [$notifier];
42 $action->notifiers = [$notifier];
94 $action->notifiers = [$notifier];
H A DCliTest.php189 $cli->notifiers[] = $notifier;