title.php 948 B

123456789101112131415161718192021
  1. <?php global $themeOxygenConfig; ?>
  2. <div class="header">
  3. <?php if (!isset($themeOxygenConfig['logo'])) : ?>
  4. <?= $this->url->link('K<span>B</span>', 'DashboardController', 'show', array(), false, '', t('Dashboard')) ?>
  5. <?php else: ?>
  6. <?= $this->url->link('<img src="'.$this->url->dir().'plugins/Oxygen/Assets/images/'.$themeOxygenConfig['logo'].'" />', 'DashboardController', 'show', array(), false, '', t('Dashboard')) ?>
  7. <?php endif ?>
  8. <h2>
  9. <?php if (! empty($project) && ! empty($task)): ?>
  10. <?= $this->url->link($this->text->e($project['name']), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>
  11. <?php else: ?>
  12. <?= $this->text->e($title) ?>
  13. <?php endif ?>
  14. <small>
  15. <?php if (! empty($description)): ?>
  16. <?= $this->app->tooltipHTML($description) ?>
  17. <?php endif ?>
  18. </small>
  19. </h2>
  20. </div>