Skip to content

Commit 9087ae8

Browse files
authored
Merge pull request #71 from creecros/creecros-patch-1
Creecros patch 1
2 parents bb573a7 + c5e1033 commit 9087ae8

File tree

3 files changed

+38
-4
lines changed

3 files changed

+38
-4
lines changed

Plugin.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Plugin extends Base
1111

1212
public function initialize()
1313
{
14-
global $customizer;
14+
global $customizer;
1515

1616
// Themes
1717
$customizer['themes'] = array(
@@ -91,6 +91,16 @@ public function initialize()
9191
//Permissions for login page to access logos
9292
$this->applicationAccessMap->add('CustomizerFileController', array('image', 'loginlogo', 'logo', 'link', 'logoexists', 'linkexists'), Role::APP_PUBLIC);
9393

94+
//Get accurate version
95+
$wasmaster = APP_VERSION;
96+
97+
if (strpos(APP_VERSION, 'master') !== false && file_exists('ChangeLog')) { $wasmaster = trim(file_get_contents('ChangeLog', false, null, 8, 6), ' '); }
98+
if (version_compare($wasmaster, '1.2.4') >= 0) {
99+
$this->template->setTemplateOverride('header/title', 'customizer:header/title');
100+
} else {
101+
$this->template->setTemplateOverride('header/title', 'customizer:header/title_older_kb');
102+
}
103+
94104
}
95105

96106
public function onStartup()
@@ -123,7 +133,7 @@ public function getPluginAuthor()
123133

124134
public function getPluginVersion()
125135
{
126-
return '1.8.1';
136+
return '1.8.2';
127137
}
128138

129139
public function getPluginHomepage()

Template/header/title.php

-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
<?= $this->text->e($title) ?>
1919
<?php endif ?>
2020
</span>
21-
<?php if (version_compare(APP_VERSION, '1.1.0') >= 0) : ?>
2221
<?php if (! empty($description)): ?>
2322
<?= $this->app->tooltipHTML($description) ?>
2423
<?php endif ?>
25-
<?php endif ?>
2624
</h1>

Template/header/title_older_kb.php

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<h1>
2+
<?php if (null !== $this->task->customizerFileModel->getByType(1)) : ?>
3+
<span class="logo">
4+
<a href="<?= $this->url->href('DashboardController', 'show', array(), false, '', t('Dashboard')) ?>">
5+
<img src="<?= $this->url->href('CustomizerFileController', 'image', array('plugin' => 'customizer', 'file_id' => $this->task->customizerFileModel->getIdByType(1))) ?>" height="<?= $this->task->configModel->get('headerlogo_size', '30') ?>">
6+
</a>
7+
</span>
8+
<?php else: ?>
9+
<span class="logo">
10+
<?= $this->url->link('K<span>B</span>', 'DashboardController', 'show', array(), false, '', t('Dashboard')) ?>
11+
</span>
12+
<?php endif ?>
13+
14+
<span class="title">
15+
<?php if (! empty($project) && ! empty($task)): ?>
16+
<?= $this->url->link($this->text->e($project['name']), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>
17+
<?php else: ?>
18+
<?= $this->text->e($title) ?>
19+
<?php endif ?>
20+
</span>
21+
<?php if (! empty($description)): ?>
22+
<small class="tooltip" title="<?= $this->text->markdownAttribute($description) ?>">
23+
<i class="fa fa-info-circle"></i>
24+
</small>
25+
<?php endif ?>
26+
</h1>

0 commit comments

Comments
 (0)