Home
last modified time | relevance | path

Searched refs:plan_date (Results 1 – 10 of 10) sorted by relevance

/plugin/bez/cron/
H A Dfunctions.php27 $filters = array('state' => 'opened', 'plan_date' => array('OR', array()));
37 $filters['plan_date'][1][] = date('Y-m-d', strtotime("+$day day"));
45 $plan_date = new DateTime($task->plan_date);
46 $task->mail_notify_remind($task->get_participants('subscribent'), $plan_date->diff($now)->format('%a'));
/plugin/bez/db/
H A Dupdate0002.sql13 WHEN task.plan_date >= date('now', '+1 month') THEN '0'
14 WHEN task.plan_date >= date('now') THEN '1'
H A Dupdate0001.sql155 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/
H A Dtasks.php101 <option <?php if ($tpl->value('date_type') == 'plan_date') echo 'selected' ?>
102 value="plan_date"><?php echo $tpl->getLang('plan_date') ?></option>
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) ?>)
H A D8d_tasks_no_closing.php22 <td><?php echo $task->plan_date ?></td>
H A D8d_tasks.php27 <td><?php echo $task->plan_date ?></td>
H A Dtask_box.php57 <th style="white-space: nowrap;"><?php echo $tpl->getLang('plan_date') ?>:</th>
59 <?php echo $tpl->get('task')->plan_date ?><?php if ($tpl->get('task')->all_day_event == '0'): ?>,
140 array('content', 'plan_date', 'all_day_event', 'start_time', 'finish_time', 'task_program_id', 'cost')
/plugin/bez/tpl/cron/
H A Dweekly-message-tasks.php28 <?php echo $task->plan_date ?>
/plugin/bez/action/
H A Ddefault.php414 'timestamp' => strtotime($task->plan_date)
436 'timestamp' => strtotime($task->plan_date)
/plugin/bez/mdl/
H A DTask.php24 protected $cost, $plan_date, $all_day_event, $start_time, $finish_time;
45 'cost', 'plan_date', 'all_day_event', 'start_time', 'finish_time',
94 'plan_date' => array(array('iso_date'), 'NOT NULL'),
149 $this->acl->grant('plan_date', BEZ_PERMISSION_CHANGE);
164 $this->acl->grant('plan_date', BEZ_PERMISSION_CHANGE);
209 $this->acl->grant('plan_date', BEZ_PERMISSION_CHANGE);
220 $this->acl->grant('plan_date', BEZ_PERMISSION_CHANGE);
241 if ($this->plan_date >= $plus_1_month) {
243 } elseif ($this->plan_date >= $now) {