Home
last modified time | relevance | path

Searched refs:closed_by (Results 1 – 9 of 9) sorted by relevance

/plugin/bez/tpl/
H A Dthread.php45 '<strong>' . $tpl->user_name($tpl->get('thread')->closed_by) . '</strong>',
54 '<strong>' . $tpl->user_name($tpl->get('thread')->closed_by) . '</strong>',
H A Dtask.php71 '<strong>' . $tpl->user_name($tpl->get('task')->closed_by) . '</strong>',
/plugin/bez/db/
H A Dupdate0001.sql6 closed_by TEXT NULL, -- who closed or rejected the thread field
141 closed_by TEXT NULL, -- who closed the task field
374 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
H A Dupdate0013.sql7 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
H A Dupdate0014.sql5 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
H A Dupdate0011.sql5 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
H A Dupdate0002.sql22 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
/plugin/bez/mdl/
H A DThread.php14 protected $original_poster, $coordinator, $closed_by;
30 'original_poster', 'coordinator', 'closed_by',
155 $this->closed_by = $this->model->user_nick;
158 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET state=?, closed_by=?, close_date=? WHERE id=?",
160 $this->closed_by,
13 protected $original_poster, $coordinator, $closed_by; global() variable in dokuwiki\\plugin\\bez\\mdl\\Thread
H A DTask.php16 protected $original_poster, $assignee, $closed_by;
41 'original_poster', 'assignee', 'closed_by',
297 $this->closed_by = $this->model->user_nick;
300 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET state=?, closed_by=?, close_date=? WHERE id=?",
302 $this->closed_by,
15 protected $original_poster, $assignee, $closed_by; global() variable in dokuwiki\\plugin\\bez\\mdl\\Task