Searched +full:status +(+path:plugin +path:do) -(+path:plugin +path:do +path:lang) (Results 1 – 9 of 9) sorted by relevance
/plugin/do/syntax/ |
D | do.php | 197 $data['task']['status'] = $oldtask['status']; 206 // show simple task with status icon for export renderers 211 $pre = ($oldtask && $oldtask['status']) ? '' : 'un'; 223 // handle XHTML output with status management 236 $pre = ($oldtask && $oldtask['status']) ? '' : 'un'; 336 if (!$data['task']['status']) {
|
D | dolist.php | 142 $table .= ' <th>' . $this->getLang('status') . '</th>'; 166 // task status icon... 167 $image = ($row['status']) ? 'done.png' : 'undone.png'; 170 …$table .= '<span class="plugin_do_item plugin_do_' . $row['md5'] . ($row['status'] ? ' plugin_do_d…
|
/plugin/do/ |
D | action.php | 53 // toggle status of a single task 72 $status = $hlp->toggleTaskStatus($id, $_REQUEST['do_md5'], $_REQUEST['do_commit']); 78 echo json_encode($status); 81 // read status for a bunch of tasks 89 $status = array(); 93 $status = $hlp->getAllPageStatuses($page); 97 echo json_encode($status); 113 $tasks = $hlp->loadTasks(array('status' => array('undone'), 'user' => $user)); 137 $status = ''; 147 $status = $hlp->toggleTaskStatus($pageid, $_REQUEST['do_md5']); [all …]
|
D | helper.php | 92 * - status can be done or undone to filter for (un)completed tasks 139 if (isset($args['status'])) { 140 $status = utf8_strtolower($args['status'][0]); 141 if ($status == 'done') { 142 $where .= ' AND B.status IS NOT null'; 143 } elseif ($status == 'undone') { 144 $where .= ' AND B.status IS null'; 209 B.status AS status, 242 * Toggles a tasks status. 269 B.status AS status [all …]
|
D | LICENSE | 255 of preserving the free status of all derivatives of our free software and
|
/plugin/do/db/ |
D | update0006.sql | 4 …ELECT task_status.page as page, task_status.md5 as md5, task_status.status as status, task_status.…
|
D | update0001.sql | 14 status field
|
/plugin/do/scripts/ |
D | general.js | 26 //update titles of items with initial status info especially for tables 32 // ajax returns array with status info per task at page
|
D | PluginDo.js | 72 * Toggle status of task, when symbol of task is clicked 108 * Switch the status of a image src 254 * Update statistics in the page task status view 389 //update statistics in the page task status view 414 PluginDo.buildTitle($dotags, [], '', state.closedby, state.status); 415 PluginDo.switchDoNr(!state.status, $dotags); 416 if (state.status) {
|