Add external links for tasks with plugin api
This commit is contained in:
13
app/Template/task_external_link/form.php
Normal file
13
app/Template/task_external_link/form.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?= $this->form->csrf() ?>
|
||||
<?= $this->form->hidden('task_id', array('task_id' => $task['id'])) ?>
|
||||
<?= $this->form->hidden('id', $values) ?>
|
||||
<?= $this->form->hidden('link_type', $values) ?>
|
||||
|
||||
<?= $this->form->label(t('URL'), 'url') ?>
|
||||
<?= $this->form->text('url', $values, $errors, array('required')) ?>
|
||||
|
||||
<?= $this->form->label(t('Title'), 'title') ?>
|
||||
<?= $this->form->text('title', $values, $errors, array('required')) ?>
|
||||
|
||||
<?= $this->form->label(t('Dependency'), 'dependency') ?>
|
||||
<?= $this->form->select('dependency', $dependencies, $values, $errors) ?>
|
||||
Reference in New Issue
Block a user