forked from ZwiiCMS-Team/ZwiiCampus
99 lines
2.8 KiB
PHP
99 lines
2.8 KiB
PHP
<?php if (
|
|
$this->getData(['theme', 'header', 'position']) === 'hide'
|
|
or $this->getData(['theme', 'menu', 'position']) === 'hide'
|
|
or $this->getData(['theme', 'footer', 'position']) === 'hide'
|
|
): ?>
|
|
<?php echo template::speech('Cliquez sur une zone afin d\'accéder à ses options de personnalisation. Vous pouvez également afficher les zones cachées à l\'aide du bouton ci-dessous.'); ?>
|
|
<div class="row">
|
|
<div class="col4 offset4">
|
|
<?php echo template::button('themeBack', [
|
|
'href' => helper::baseUrl(false),
|
|
'ico' => 'home',
|
|
'value' => 'Accueil'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col2 offset4">
|
|
<?php echo template::button('themeFonts', [
|
|
'ico' => 'font',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/font',
|
|
'value' => 'Fontes'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2">
|
|
<?php echo template::button('themeAdvanced', [
|
|
'ico' => 'code',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/advanced',
|
|
'value' => 'Éditeur CSS'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col2 offset4">
|
|
<?php echo template::button('themeAdmin', [
|
|
'ico' => 'brush',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/admin',
|
|
'value' => 'Administration'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2">
|
|
<?php echo template::button('themeManage', [
|
|
'ico' => 'sliders',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/manage',
|
|
'value' => 'Gestion'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col4 offset4">
|
|
<?php echo template::button('themeShowAll', [
|
|
'ico' => 'eye',
|
|
'value' => 'Zones cachées'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<?php else: ?>
|
|
<?php echo template::speech('Cliquez sur une zone afin d\'accéder à ses options de personnalisation.'); ?>
|
|
<div class="row">
|
|
<div class="col4 offset4">
|
|
<?php echo template::button('themeBack', [
|
|
'href' => helper::baseUrl(false),
|
|
'ico' => 'home',
|
|
'value' => 'Accueil'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col2 offset4">
|
|
<?php echo template::button('themeFonts', [
|
|
'ico' => 'font',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/font',
|
|
'value' => 'Fontes'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2">
|
|
<?php echo template::button('themeAdvanced', [
|
|
'ico' => 'code',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/advanced',
|
|
'value' => 'Éditeur CSS'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col2 offset4">
|
|
<?php echo template::button('themeAdmin', [
|
|
'ico' => 'brush',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/admin',
|
|
'value' => 'Administration'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2">
|
|
<?php echo template::button('themeManage', [
|
|
'ico' => 'sliders',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/manage',
|
|
'value' => 'Gestion'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|