Home
last modified time | relevance | path

Searched refs:thread_comment_id (Results 1 – 6 of 6) sorted by relevance

/plugin/bez/db/
H A Dupdate0001.sql164 thread_comment_id INTEGER REFERENCES thread_comment (id), --may be null field
169 ON task (thread_id, thread_comment_id);
267 WHERE id = new.thread_comment_id;
271 UPDATE OF thread_comment_id
276 WHERE id = old.thread_comment_id;
280 WHERE id = new.thread_comment_id;
H A Dupdate0012.sql18 WHERE id = old.thread_comment_id;
/plugin/bez/mdl/
H A DTaskFactory.php37 'thread_comment_id', false, array('thread' => $thread));
40 if ($task->thread_comment_id == null) {
44 if (!isset($by_thread_comment[$task->thread_comment_id])) {
45 $by_thread_comment[$task->thread_comment_id] = array();
47 $by_thread_comment[$task->thread_comment_id][$task->id] = $task;
H A DTask.php28 protected $thread_id, $thread_comment_id, $task_program_id;
47 'thread_id', 'thread_comment_id', 'task_program_id');
73 if ($this->thread_comment_id == null) {
76 if ($this->thread_comment == null || $this->thread_comment_id != $this->thread_comment->id) {
77 $this->thread_comment = $this->model->thread_commentFactory->get_one($this->thread_comment_id);
99 'thread_comment_id' => array(array('numeric'), 'NULL'),
125 $this->thread_comment_id = $this->thread_comment->id;
143 $this->validator->delete_rule('thread_comment_id');
181 if (isset($defaults['thread_comment']) && $this->thread_comment_id == $defaults['thread_comment']->id) {
190 $this->validator->delete_rule('thread_comment_id');
[all...]
/plugin/bez/tpl/
H A Dtask.php28 <?php if ($tpl->get('task')->thread_comment_id != ''): ?>
H A Dtask_form.php27 $tpl->get('task')->acl_of('thread_comment_id') >= BEZ_PERMISSION_CHANGE): ?>
29 <label for="thread_comment_id"><?php echo ucfirst($tpl->getLang('cause')) ?>:</label>
31 <select name="thread_comment_id" id="thread_comment_id">
32 <option <?php if ($tpl->value('thread_comment_id') == '') echo 'selected' ?>
36 <option <?php if ($tpl->value('thread_comment_id') == $cause_id) echo 'selected' ?>
45 <?php if ($tpl->get('task')->thread_comment_id != ''): ?>