ZwiiCMS/core/module/config/view/index/index.php

49 lines
1.6 KiB
PHP
Raw Normal View History

2022-09-29 08:45:59 +02:00
<?php echo template::formOpen('configForm'); ?>
<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>
<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>
</div>
2022-03-01 19:39:24 +01:00
<div class="tab">
<?php echo template::button('configSetupButton', [
'value' => 'Configuration',
2024-09-18 19:34:04 +02:00
'class' => 'buttonTab',
'href' => helper::baseUrl() . 'config/register/setup'
2022-03-01 19:39:24 +01:00
]); ?>
<?php echo template::button('configSocialButton', [
'value' => 'Référencement',
2024-09-18 19:34:04 +02:00
'class' => 'buttonTab',
'href' => helper::baseUrl() . 'config/register/social'
2022-03-01 19:39:24 +01:00
]); ?>
2022-03-03 16:53:46 +01:00
2022-03-01 19:39:24 +01:00
<?php echo template::button('configConnectButton', [
'value' => 'Connexion',
2024-09-18 19:34:04 +02:00
'class' => 'buttonTab',
'href' => helper::baseUrl() . 'config/register/connect'
2022-03-01 19:39:24 +01:00
]); ?>
<?php echo template::button('configNetworkButton', [
'value' => 'Réseau',
2024-09-18 19:34:04 +02:00
'class' => 'buttonTab',
'href' => helper::baseUrl() . 'config/register/network'
2022-03-01 19:39:24 +01:00
]); ?>
</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(); ?>