2022-09-29 08:45:59 +02:00
|
|
|
<?php echo template::formOpen('configForm'); ?>
|
2020-05-12 16:28:10 +02:00
|
|
|
<div class="row">
|
2022-09-29 08:45:59 +02:00
|
|
|
<div class="col1">
|
|
|
|
<?php echo template::button('configBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl(false),
|
2022-02-18 12:43:48 +01:00
|
|
|
'value' => template::ico('home')
|
2022-09-29 08:45:59 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2022-02-18 12:43:48 +01:00
|
|
|
<div class="col1">
|
2022-09-29 08:45:59 +02:00
|
|
|
<?php /**echo template::button('configHelp', [
|
2021-11-02 12:48:51 +01:00
|
|
|
'class' => 'buttonHelp',
|
2021-11-02 18:29:32 +01:00
|
|
|
'href' => 'https://doc.zwiicms.fr/configuration-du-site',
|
2021-11-02 12:52:19 +01:00
|
|
|
'target' => '_blank',
|
2022-02-18 12:43:48 +01:00
|
|
|
'value' => template::ico('help'),
|
|
|
|
'help' => 'Consulter l\'aide en ligne'
|
2022-09-29 08:45:59 +02:00
|
|
|
]); */ ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset8">
|
|
|
|
<?php echo template::submit('Submit'); ?>
|
|
|
|
</div>
|
2020-05-12 16:28:10 +02:00
|
|
|
</div>
|
2022-03-01 19:39:24 +01:00
|
|
|
|
|
|
|
<div class="tab">
|
|
|
|
<?php echo template::button('configSetupButton', [
|
|
|
|
'value' => 'Configuration',
|
|
|
|
'class' => 'buttonTab'
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::button('configSocialButton', [
|
|
|
|
'value' => 'Référencement',
|
|
|
|
'class' => 'buttonTab'
|
|
|
|
]); ?>
|
2022-03-03 16:53:46 +01:00
|
|
|
|
2022-03-01 19:39:24 +01:00
|
|
|
<?php echo template::button('configConnectButton', [
|
|
|
|
'value' => 'Connexion',
|
|
|
|
'class' => 'buttonTab'
|
|
|
|
]); ?>
|
2022-03-03 16:53:46 +01:00
|
|
|
|
2022-03-01 19:39:24 +01:00
|
|
|
<?php echo template::button('configNetworkButton', [
|
|
|
|
'value' => 'Réseau',
|
|
|
|
'class' => 'buttonTab'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
|
2022-09-29 08:45:59 +02:00
|
|
|
<?php include('core/module/config/view/setup/setup.php') ?>
|
|
|
|
<?php include('core/module/config/view/social/social.php') ?>
|
|
|
|
<?php include('core/module/config/view/connect/connect.php') ?>
|
|
|
|
<?php include('core/module/config/view/network/network.php') ?>
|
2021-10-30 12:31:24 +02:00
|
|
|
<?php echo template::formClose(); ?>
|