task_internal_link_create_update.php 449 B

12345678910111213
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <p>
  5. <?= e('This task is now linked to the task %s with the relation "%s"',
  6. $this->url->absoluteLink(t('#%d', $task_link['opposite_task_id']), 'TaskViewController', 'show', array('task_id' => $task_link['opposite_task_id'])),
  7. e($task_link['label'])) ?>
  8. </p>
  9. <?= $this->render('notification/footer', array('task' => $task)) ?>
  10. </body>
  11. </html>