-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
<hr/> | ||
<?php if (file_exists('plugins/ApplicationBranding')): ?> | ||
<span class="">© | ||
<?php if (!empty($this->task->configModel->get('app_rename'))): ?> | ||
<?= $this->task->configModel->get('app_rename') ?> | ||
<span class="" style="display: inline;">© | ||
<?php if (file_exists('plugins/ApplicationBranding')): ?> | ||
<?php if (!empty($this->task->configModel->get('app_rename'))): ?> | ||
<?= $this->task->configModel->get('app_rename') ?> | ||
<?php else: ?> | ||
<?= t('My Workspace') ?> | ||
<?php endif ?> | ||
<?php if (!empty($this->task->configModel->get('copyright_from'))): ?> | ||
<?= $this->task->configModel->get('copyright_from') ?>-<?= date("Y"); ?> | ||
<?php else: ?> | ||
<?= date("Y"); ?> | ||
<?php endif ?> | ||
<?php else: ?> | ||
<?= t('My Workspace') ?> | ||
<?= t('System Generated Email') ?> | ||
<?php endif ?> | ||
<?php if (!empty($this->task->configModel->get('copyright_from'))): ?> | ||
<?= $this->task->configModel->get('copyright_from') ?>-<?= date("Y"); ?> | ||
<?php else: ?> | ||
<?= date("Y"); ?> | ||
<?php if ($this->app->config('application_url') != ''): ?> | ||
<?php if (isset($task['id'])): ?> | ||
- <?= $this->url->absoluteLink(t('View Task'), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> | ||
<?php endif ?> | ||
- <?= $this->url->absoluteLink(t('View Board'), 'BoardViewController', 'show', array('project_id' => $task['project_id'])) ?> | ||
<?php endif ?> | ||
</span> | ||
<?php else: ?> | ||
<?= t('System Generated Email') ?> | ||
<?php endif ?> | ||
|
||
<?php if ($this->app->config('application_url') != ''): ?> | ||
<?php if (isset($task['id'])): ?> | ||
- <?= $this->url->absoluteLink(t('View Task'), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> | ||
<?php endif ?> | ||
- <?= $this->url->absoluteLink(t('View Board'), 'BoardViewController', 'show', array('project_id' => $task['project_id'])) ?> | ||
<?php endif ?> | ||
</body> | ||
</html> |