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', [
|
2023-12-19 18:32:28 +01:00
|
|
|
'class' => 'buttonHelp',
|
|
|
|
'href' => 'https://doc.zwiicms.fr/configuration-du-site',
|
|
|
|
'target' => '_blank',
|
|
|
|
'value' => template::ico('help'),
|
|
|
|
'help' => 'Consulter l\'aide en ligne'
|
|
|
|
]); */?>
|
2022-09-29 08:45:59 +02:00
|
|
|
</div>
|
2023-12-19 18:32:28 +01:00
|
|
|
<div class="col2 offset6">
|
|
|
|
<?php echo template::button('configLocaleButton', [
|
|
|
|
'value' => 'Identité',
|
|
|
|
'href' => helper::baseUrl() . 'language/site'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
2022-09-29 08:45:59 +02:00
|
|
|
<?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'
|
|
|
|
]); ?>
|
|
|
|
<?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(); ?>
|