Searched refs:plan_date (Results 1 – 10 of 10) sorted by relevance
/plugin/bez/cron/ |
D | functions.php | 45 $plan_date = new DateTime($task->plan_date); 46 …$task->mail_notify_remind($task->get_participants('subscribent'), $plan_date->diff($now)->format('…
|
/plugin/bez/db/ |
D | update0002.sql | 13 WHEN task.plan_date >= date('now', '+1 month') THEN '0' 14 WHEN task.plan_date >= date('now') THEN '1'
|
D | update0001.sql | 155 plan_date TEXT NOT NULL, -- -- ISO8601 field 365 WHEN task.plan_date >= date('now', '+1 month') THEN '2' 366 WHEN task.plan_date >= date('now') THEN '1'
|
/plugin/bez/tpl/ |
D | tasks.php | 191 <?php if ($task->plan_date < date('%Y-%m-%d')): ?> 211 <?php echo $task->plan_date ?> 213 (<?php echo $tpl->date_diff_days($task->plan_date) ?>)
|
D | 8d_tasks_no_closing.php | 22 <td><?php echo $task->plan_date ?></td>
|
D | 8d_tasks.php | 27 <td><?php echo $task->plan_date ?></td>
|
D | task_box.php | 59 … <?php echo $tpl->get('task')->plan_date ?><?php if ($tpl->get('task')->all_day_event == '0'): ?>,
|
/plugin/bez/action/ |
D | default.php | 415 'id' => 'task:' . $task->id. ':coming:' . $task->plan_date, 418 'timestamp' => strtotime($task->plan_date) 437 'id' => 'task:' . $task->id . ':outdated:' . $task->plan_date, 440 'timestamp' => strtotime($task->plan_date)
|
/plugin/bez/tpl/cron/ |
D | weekly-message-tasks.php | 28 <?php echo $task->plan_date ?>
|
/plugin/bez/mdl/ |
D | Task.php | 24 protected $cost, $plan_date, $all_day_event, $start_time, $finish_time; 241 if ($this->plan_date >= $plus_1_month) { 243 } elseif ($this->plan_date >= $now) {
|