ZwiiCMS, le gestionnaire de site Web sans base de données à installer.
Conçu en 2008 par Rémi Jean, le développement a été repris par Frédéric Tempez en 2018.
zwii cms nosql json flat file
https://www.zwiicms.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.3 KiB
79 lines
2.3 KiB
<?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="col3"> |
|
<?php echo template::button('themeBack', [ |
|
'class' => 'buttonGrey', |
|
'href' => helper::baseUrl(false), |
|
'ico' => 'home', |
|
'value' => 'Accueil' |
|
]); ?> |
|
</div> |
|
<div class="col3"> |
|
<?php echo template::button('themeAdmin', [ |
|
'ico' => 'brush', |
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/admin', |
|
'value' => 'Administration' |
|
]); ?> |
|
</div> |
|
<div class="col3"> |
|
<?php echo template::button('themeAdvanced', [ |
|
'ico' => 'code', |
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/advanced', |
|
'value' => 'Éditeur CSS' |
|
]); ?> |
|
</div> |
|
<div class="col3"> |
|
<?php echo template::button('themeManage', [ |
|
'ico' => 'upload', |
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/manage', |
|
'value' => 'Gestion' |
|
]); ?> |
|
</div> |
|
</div> |
|
<div class="row"> |
|
<div class="col3 offset5"> |
|
<?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="col3"> |
|
<?php echo template::button('themeBack', [ |
|
'class' => 'buttonGrey', |
|
'href' => helper::baseUrl(false), |
|
'ico' => 'home', |
|
'value' => 'Accueil' |
|
]); ?> |
|
</div> |
|
<div class="col3"> |
|
<?php echo template::button('themeAdmin', [ |
|
'ico' => 'brush', |
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/admin', |
|
'value' => 'Administration' |
|
]); ?> |
|
</div> |
|
<div class="col3"> |
|
<?php echo template::button('themeManage', [ |
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/manage', |
|
'ico' => 'upload', |
|
'value' => 'Gestion' |
|
]); ?> |
|
</div> |
|
<div class="col3"> |
|
<?php echo template::button('themeAdvanced', [ |
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/advanced', |
|
'value' => 'Éditeur CSS', |
|
'ico' => 'code' |
|
]); ?> |
|
</div> |
|
</div> |
|
<?php endif; ?>
|