Home
last modified time | relevance | path

Searched refs:close_date (Results 1 – 18 of 18) sorted by relevance

/plugin/bez/tpl/
H A Dthread_box.php43 <?php echo $tpl->date($tpl->get('thread')->close_date) ?>
48 <?php echo $tpl->date_diff_days($tpl->get('thread')->create_date, $tpl->get('thread')->close_date, '%a') ?>
H A D8d_tasks_only_closing.php22 <?php echo $tpl->date($task->close_date) ?>
H A Dthread.php46 $tpl->date_fuzzy_age($tpl->get('thread')->close_date)) ?>
55 $tpl->date_fuzzy_age($tpl->get('thread')->close_date)) ?>
H A Dtask_box.php21 <?php echo $tpl->date($tpl->get('task')->close_date) ?>
26 <?php echo $tpl->date_diff_days($tpl->get('task')->create_date, $tpl->get('task')->close_date, '%a'); ?>
H A D8d_tasks.php39 <?php echo $tpl->date($task->close_date) ?>
H A Dthreads.php198 <?php echo $tpl->date($thread->close_date) ?><br />
200 $tpl->date_diff_days($thread->create_date, $thread->close_date, '%a') ?>
H A Dkp.php58 <?php echo $tpl->date($tpl->get('thread')->close_date) ?>
H A D8d.php106 <?php echo $tpl->date($tpl->get('thread')->close_date) ?>
H A Dtask.php72 $tpl->date_fuzzy_age($tpl->get('task')->close_date)) ?>
H A Dtasks.php105 <option <?php if ($tpl->value('date_type') == 'close_date') echo 'selected' ?>
106 value="close_date"><?php echo $tpl->getLang('close_date') ?></option>
232 <?php echo $tpl->date($task->close_date) ?>
/plugin/bez/db/
H A Dupdate0001.sql18 close_date TEXT, -- ISO8601 field
152 close_date TEXT, -- ISO8601 field
376 thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
H A Dupdate0013.sql9 thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
H A Dupdate0014.sql7 thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
H A Dupdate0011.sql7 thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
H A Dupdate0002.sql24 thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
/plugin/bez/ctl/
H A D8d.php39 $max_preventive_close_date = max($max_preventive_close_date, $preventive_action->close_date);
/plugin/bez/mdl/
H A DThread.php20 protected $create_date, $last_activity_date, $last_modification_date, $close_date;
33 'create_date', 'last_activity_date', 'last_modification_date', 'close_date',
156 $this->close_date = date('c');
158 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET state=?, closed_by=?, close_date=? WHERE id=?",
161 $this->close_date,
19 protected $create_date, $last_activity_date, $last_modification_date, $close_date; global() variable in dokuwiki\\plugin\\bez\\mdl\\Thread
H A DTask.php22 protected $create_date, $last_activity_date, $last_modification_date, $close_date;
44 'create_date', 'last_activity_date', 'last_modification_date', 'close_date',
298 $this->close_date = date('c');
300 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET state=?, closed_by=?, close_date=? WHERE id=?",
303 $this->close_date,
21 protected $create_date, $last_activity_date, $last_modification_date, $close_date; global() variable in dokuwiki\\plugin\\bez\\mdl\\Task