Lines Matching defs:page

38      * Delete the all tasks from a given page id
40 * @param string $id page id
47 $this->db->query('DELETE FROM tasks WHERE page = ?', $id);
48 $this->db->query('DELETE FROM task_assignees WHERE page = ?', $id);
55 * keys are: page, md5, date, user, text, creator
66 'INSERT INTO tasks (page,md5,date,text,creator,pos)
68 $data['page'],
77 'INSERT INTO task_assignees (page,md5,user)
79 $data['page'],
126 $where .= sprintf(' AND A.page LIKE %s', $this->db->quote_string($ns . '%'));
136 $where .= sprintf(' AND A.page = %s', $this->db->quote_string($args['id'][0]));
201 $where .= ' AND GETACCESSLEVEL(A.page) >= ' . AUTH_READ;
203 $query = 'SELECT A.page AS page,
213 ON A.page = B.page
216 ON A.page = C.page
219 ORDER BY A.page, A.pos' . $limit;
226 $key = $row['page'] . $row['md5'];
244 * @param string $page page id of the task
253 public function toggleTaskStatus($page, $md5, $commitmsg = '')
261 if (!$page || !$md5) {
268 'SELECT A.page AS page,
271 ON A.page = B.page
273 WHERE A.page = ?
275 $page, $md5
296 (page, md5, status, closedby, msg)
299 $page, $md5, $stat, $name, $commitmsg
308 WHERE page = ?
310 $page, $md5
362 wl($task['page'], '', true, '&') . '#plgdo__' . $task['md5'],
386 * load all page stats from a given page.
390 * @param string $page page id
394 public function getAllPageStatuses($page)
399 if (!$page) {
405 A.page AS page,
413 ON A.page = B.page
415 WHERE A.page = ?',
416 $page
430 * @param string $id String Id of the wiki page - if no id is given the current page will be used.
471 * displays a small page task status view
473 * @param string $id page id