diff options
author | Vincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com> | 2019-11-06 11:36:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-06 11:36:17 +0100 |
commit | 1add9049bedd3ac381e42ea5c177c5e0b871a50a (patch) | |
tree | 0416e194fcbb20ecb4f47d8783c8ad4bd38105e7 /app/view/templates/backtopbar.php | |
parent | f1f63f556c41c99d45cd610186b0982383eff375 (diff) | |
parent | c77fe80b05829fbfd5b94f43a7b709e3f3ec6c0d (diff) | |
download | wcms-1add9049bedd3ac381e42ea5c177c5e0b871a50a.tar.gz wcms-1add9049bedd3ac381e42ea5c177c5e0b871a50a.zip |
Merge pull request #27 from n-peugnet/composer-psr4-autoloading
refactor: switch to psr-4 autoloading
Diffstat (limited to 'app/view/templates/backtopbar.php')
-rw-r--r-- | app/view/templates/backtopbar.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/view/templates/backtopbar.php b/app/view/templates/backtopbar.php index e9266a6..c632d66 100644 --- a/app/view/templates/backtopbar.php +++ b/app/view/templates/backtopbar.php @@ -23,22 +23,22 @@ <span id="menu"> <a href="<?= $this->url('home') ?>" <?= $tab == 'home' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>home.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>home.png" alt="" class="icon"> <span class="hidephone">home</span> </a> <a href="<?= $this->url('media') ?>" <?= $tab == 'media' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>media.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>media.png" alt="" class="icon"> <span class="hidephone">media</span> </a> <a href="<?= $this->url('font') ?>" <?= $tab == 'font' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>font.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>font.png" alt="" class="icon"> <span class="hidephone">font</span> </a> <?php if($user->isadmin()) { ?> <a href="<?= $this->url('admin') ?>" <?= $tab == 'admin' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>admin.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>admin.png" alt="" class="icon"> <span class="hidephone">admin</span> </a> @@ -46,7 +46,7 @@ if($user->isadmin()) { } ?> <a href="<?= $this->url('info') ?>" <?= $tab == 'info' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>info.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>info.png" alt="" class="icon"> <span class="hidephone">info</span> </a> </span> @@ -75,11 +75,11 @@ if($user->isadmin()) { <span> <a href="<?= $this->url('timeline') ?>" <?= $tab == 'timeline' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>timeline.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>timeline.png" alt="" class="icon"> <span class="hidephone">timeline</span> </a> <a href="<?= $this->url('user') ?>" <?= $tab == 'user' ? 'class="actualpage"' : '' ?>> - <img src="<?= Model::iconpath() ?>user.png" alt="" class="icon"> + <img src="<?= Wcms\Model::iconpath() ?>user.png" alt="" class="icon"> <span class="hidephone"><?= $user->id() ?></span> </a> <i><?= $user->level() ?></i> |