Home
last modified time | relevance | path

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

/plugin/bez/db/
H A Dupdate0001.sql165 task_program_id INTEGER REFERENCES task_program (id) --may be null field
172 ON task(task_program_id);
292 WHERE id = new.task_program_id;
301 WHERE id = old.task_program_id;
305 UPDATE OF task_program_id
310 WHERE id = old.task_program_id;
314 WHERE id = new.task_program_id;
369 LEFT JOIN task_program ON task.task_program_id = task_program.id
H A Dupdate0002.sql17 LEFT JOIN task_program ON task.task_program_id = task_program.id
/plugin/bez/tpl/
H A Dtask_box.php66 <?php if ($tpl->get('task')->task_program_id == ''): ?>
140 array('content', 'plan_date', 'all_day_event', 'start_time', 'finish_time', 'task_program_id', 'cost')
174 <?php if ($tpl->get('task')->task_program_id != '' &&
177 href="<?php echo $tpl->url('task_form', 'duplicate', $tpl->get('task')->id, 'task_program_id', $tpl->get('task')->task_program_id) ?>">
H A Dtask_form.php139 <select id="task_program_id" name="task_program_id"
140 <?php if ($tpl->get('task')->acl_of('task_program_id') < BEZ_PERMISSION_CHANGE) echo 'disabled' ?>
141 <?php if (!$tpl->get('task')->can_be_null('task_program_id')) echo 'data-validation="required"' ?>>
142 <?php if ($tpl->get('task')->can_be_null('task_program_id')): ?>
143 <option <?php if ($tpl->value('task_program_id') == '') echo 'selected' ?> value="">
151 <option <?php if ($tpl->value('task_program_id') == $task_program->id) echo 'selected' ?> value="<?php echo $task_program->id ?>"><?php echo $task_program->name ?></option>
181 } else if ($tpl->get('task')->task_program_id != '') {
182 echo $tpl->url('tasks', 'task_program_id', $tpl->get('task')->task_program_id);
[all...]
H A Dtasks.php60 <select name="task_program_id">
61 <option <?php if ($tpl->value('task_program_id') == '-all') echo 'selected' ?>
63 <option <?php if ($tpl->value('task_program_id') == '-none') echo 'selected' ?>
66 <option <?php if ($tpl->value('task_program_id') == $task_program->id) echo 'selected' ?>
196 <?php if ($task->task_program_id == ''): ?>
/plugin/bez/mdl/
H A DTask.php27 protected $thread_id, $thread_comment_id, $task_program_id; variable in dokuwiki\\plugin\\bez\\mdl\\Task
46 'thread_id', 'thread_comment_id', 'task_program_id');
99 'task_program_id' => array(array('numeric'), 'NULL')
139 'task_program_id' => array(array('numeric'), 'NOT NULL'),
152 $this->acl->grant('task_program_id', BEZ_PERMISSION_CHANGE);
167 $this->acl->grant('task_program_id', BEZ_PERMISSION_CHANGE);
186 'task_program_id' => array(array('numeric'), 'NOT NULL'),
212 $this->acl->grant('task_program_id', BEZ_PERMISSION_CHANGE);
223 $this->acl->grant('task_program_id', BEZ_PERMISSION_CHANGE);
313 $this->task_program_id
[all...]