Home
last modified time | relevance | path

Searched +full:date +(+path:plugin +path:do) -(+path:plugin +path:do +path:lang) (Results 1 – 8 of 8) sorted by relevance

/plugin/do/syntax/
Ddo.php79 // get the assignment date
81 $data['task']['date'] = $grep[1];
82 $content = trim(str_replace($data['task']['date'], '', $content));
251 if (isset($data['task']['users']) || isset($data['task']['date'])) {
264 if (isset($data['task']['date'])) {
268 if (isset($data['task']['date'])) {
269 …$R->doc .= $this->getLang('date') . ' <span class="plugin_do_meta_date">' . hsc($data['task']['dat…
Ddolist.php141 $table .= ' <th>' . $this->getLang('date') . '</th>';
163 $table .= '<td class="plugin_do_date">' . hsc($row['date']) . '</td>';
/plugin/do/
Dhelper.php55 * keys are: page, md5, date, user, text, creator
63 $date = !empty($data['date']) ? $data['date'] : null;
66 'INSERT INTO tasks (page,md5,date,text,creator,pos)
70 $date,
154 … $where .= sprintf(" AND A.date >= '%s' AND A.date <= '%s' ", $args['from'][0], $args['to'][0]);
205 A.date AS date,
293 $stat = date('Y-m-d', time());
352 '@DATE@',
360 isset($task['date']) ? $task['date'] : $this->getLang('nodue'),
460 if (!empty($task['date']) && empty($task['status'])) {
[all …]
Dplugin.info.txt4 date 2024-05-12
DLICENSE96 stating that you changed the files and the date of any change.
/plugin/do/db/
Dupdate0007.sql9 CREATE TABLE tasks_tmp ( page, md5, date, text , creator , pos ); field
10 INSERT INTO tasks_tmp SElECT page, md5, date, text , creator , pos FROM tasks;
13 CREATE TABLE tasks ( page, md5, date, text , creator , pos); field
14 INSERT INTO tasks SElECT page, md5, date, text , creator , pos FROM tasks_tmp;
Dupdate0001.sql4 date, field
/plugin/do/scripts/
DPluginDo.js123 * @param {string} due the task's due date, undefined for autodetect
147 // determine due date
219 * @param {HTMLElement} ele span with due date
220 * @returns {boolean} whether task is still open and exceed due date
231 var currentdate = new Date(),
232 duedate = new Date($ele.html());
439 jQuery.each(['assign', 'date'], function (i, input) {
482 var date = m[0];
483 users = users.replace(date, '');
484 $popup_date.val(date);