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.
38 lines
1.4 KiB
38 lines
1.4 KiB
<?php echo template::formOpen('configScript'); ?> |
|
<div class="row"> |
|
<div class="col2"> |
|
<?php echo template::button('configManageBack', [ |
|
'class' => 'buttonGrey', |
|
'href' => helper::baseUrl() . 'config', |
|
'ico' => 'left', |
|
'value' => 'Retour' |
|
]); ?> |
|
</div> |
|
<div class="col2 offset8"> |
|
<?php echo template::submit('configManageSubmit',[ |
|
'value' => 'Valider', |
|
'ico' => 'check' |
|
]); ?> |
|
</div> |
|
</div> |
|
<?php if ($this->geturl(2) === 'head'): ?> |
|
<div class="row"> |
|
<div class="col12"> |
|
<?php echo template::textarea('configScriptHead', [ |
|
'value' => file_exists( self::DATA_DIR . 'head.inc.html') ? file_get_contents (self::DATA_DIR . 'head.inc.html') : '' , |
|
'class' => 'editor' |
|
]); ?> |
|
</div> |
|
</div> |
|
<?php endif ?> |
|
<?php if ($this->geturl(2) === 'body'): ?> |
|
<div class="row"> |
|
<div class="col12"> |
|
<?php echo template::textarea('configScriptBody', [ |
|
'value' => file_exists( self::DATA_DIR . 'body.inc.html') ? file_get_contents (self::DATA_DIR . 'body.inc.html') : '' , |
|
'class' => 'editor' |
|
]); ?> |
|
</div> |
|
</div> |
|
<?php endif ?> |
|
<?php echo template::formClose(); ?>
|