forked from ZwiiCMS-Team/ZwiiCMS
142 lines
5.3 KiB
PHP
Executable File
142 lines
5.3 KiB
PHP
Executable File
<?php echo template::formOpen('pageEditForm'); ?>
|
|
<div class="row">
|
|
<div class="col2">
|
|
<?php $href = helper::baseUrl() . $this->getUrl(2); ?>
|
|
<?php if ($this->getData(['page', $this->getUrl(2), 'moduleId']) === 'redirection')$href = helper::baseUrl(); ?>
|
|
<?php echo template::button('pageEditBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => $href,
|
|
'ico' => 'left',
|
|
'value' => 'Retour'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2 offset6">
|
|
<?php echo template::button('pageEditDelete', [
|
|
'class' => 'buttonRed',
|
|
'href' => helper::baseUrl() . 'page/delete/' . $this->getUrl(2) . '&csrf=' . $_SESSION['csrf'],
|
|
'value' => 'Supprimer',
|
|
'ico' => 'cancel'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2">
|
|
<?php echo template::submit('pageEditSubmit'); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col12">
|
|
<div class="block">
|
|
<h4>Informations générales</h4>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<?php echo template::text('pageEditTitle', [
|
|
'label' => 'Titre',
|
|
'value' => $this->getData(['page', $this->getUrl(2), 'title'])
|
|
]); ?>
|
|
</div>
|
|
|
|
<div class="col6">
|
|
<div class="row">
|
|
<div class="col10">
|
|
<?php echo template::hidden('pageEditModuleRedirect'); ?>
|
|
<?php echo template::select('pageEditModuleId', $module::$moduleIds, [
|
|
'help' => 'En cas de changement de module, les données du module précédent seront supprimées.',
|
|
'label' => 'Module',
|
|
'selected' => $this->getData(['page', $this->getUrl(2), 'moduleId'])
|
|
]); ?>
|
|
</div>
|
|
<div class="col2 verticalAlignBottom">
|
|
<?php echo template::button('pageEditModuleConfig', [
|
|
'disabled' => (bool) $this->getData(['page', $this->getUrl(2), 'moduleId']) === false,
|
|
'uniqueSubmission' => true,
|
|
'value' => template::ico('gear')
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<?php echo template::select('pageTypeMenu', $module::$typeMenu,[
|
|
'help' => 'Sélectionnez le type de menu.',
|
|
'label' => 'Type de menu',
|
|
'selected' => $this->getData(['page', $this->getUrl(2), 'typeMenu'])
|
|
]); ?>
|
|
</div>
|
|
<div class="col6">
|
|
<?php echo template::file('pageIconUrl', [
|
|
'label' => 'Icône',
|
|
'value' => $this->getData(['page', $this->getUrl(2), 'iconUrl'])
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo template::textarea('pageEditContent', [
|
|
'class' => 'editorWysiwyg',
|
|
'value' => $this->getData(['page', $this->getUrl(2), 'content'])
|
|
]); ?>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<div class="block">
|
|
<h4>Menu</h4>
|
|
<?php if($this->getHierarchy($this->getUrl(2), false)): ?>
|
|
<?php echo template::hidden('pageEditParentPageId', [
|
|
'value' => $this->getData(['page', $this->getUrl(2), 'parentPageId'])
|
|
]); ?>
|
|
<?php else: ?>
|
|
<?php echo template::select('pageEditParentPageId', $module::$pagesNoParentId, [
|
|
'label' => 'Page parent',
|
|
'selected' => $this->getData(['page', $this->getUrl(2), 'parentPageId'])
|
|
]); ?>
|
|
<?php endif; ?>
|
|
<?php echo template::select('pageEditPosition', [], [
|
|
'label' => 'Position'
|
|
]); ?>
|
|
<?php echo template::checkbox('pageEditTargetBlank', true, 'Ouvrir dans un nouvel onglet', [
|
|
'checked' => $this->getData(['page', $this->getUrl(2), 'targetBlank'])
|
|
]); ?>
|
|
<?php echo template::checkbox('pageDisable', true, 'Page inactive', [
|
|
'checked' => $this->getData(['page', $this->getUrl(2), 'disable'])
|
|
]); ?>
|
|
</div>
|
|
<div class="block">
|
|
<h4>Mise en page</h4>
|
|
<?php echo template::select('pageEditBlocks', $module::$pageBlocks, [
|
|
'label' => 'Gabarit :',
|
|
'help' => 'Pour éditer le contenu des encarts, sélectionnez \'Édition des encarts\' dans la liste des pages.',
|
|
'selected' => $this->getData(['page', $this->getUrl(2) , 'blocks'])
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="col6">
|
|
<div class="block">
|
|
<h4>Options avancées</h4>
|
|
<?php echo template::select('pageEditGroup', self::$groupPublics, [
|
|
'label' => 'Groupe requis pour accéder à la page',
|
|
'selected' => $this->getData(['page', $this->getUrl(2), 'group'])
|
|
]); ?>
|
|
<?php echo template::text('pageEditMetaTitle', [
|
|
'label' => 'Méta-titre',
|
|
'value' => $this->getData(['page', $this->getUrl(2), 'metaTitle'])
|
|
]); ?>
|
|
<?php echo template::textarea('pageEditMetaDescription', [
|
|
'label' => 'Méta-description',
|
|
'maxlength' => '500',
|
|
'value' => $this->getData(['page', $this->getUrl(2), 'metaDescription'])
|
|
]); ?>
|
|
<?php if (($this->getData(['page', $this->getUrl(2), 'moduleId']) === 'form') or ($this->getData(['page', $this->getUrl(2), 'moduleId']) === 'gallery')) {
|
|
echo template::select('configModulePosition', $module::$modulePosition,[
|
|
'help' => 'En position libre ajoutez manuellement le module en plaçant deux crochets [] à l\'endroit voulu dans votre page.',
|
|
'label' => 'Position du module dans la page',
|
|
'selected' => $this->getData(['page', $this->getUrl(2), 'modulePosition'])
|
|
]);
|
|
} ?>
|
|
<?php echo template::checkbox('pageEditHideTitle', true, 'Cacher le titre', [
|
|
'checked' => $this->getData(['page', $this->getUrl(2), 'hideTitle'])
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo template::formClose(); ?>
|