Position module dans page

This commit is contained in:
fredtempez 2022-03-16 11:07:00 +01:00
parent 4a8e2ff541
commit 19fcd10430
2 changed files with 14 additions and 13 deletions

View File

@ -39,9 +39,9 @@ class page extends common {
]; ];
// Position du module // Position du module
public static $modulePosition = [ public static $modulePosition = [
'bottom' => 'En bas', 'bottom' => 'Après le contenu de page',
'top' => 'En haut', 'top' => 'Avant le contenu de page',
'free' => 'Libre' 'free' => 'Libre, à l\'emplacement de [MODULE] dans la page'
]; ];
public static $pageBlocks = [ public static $pageBlocks = [
'12' => 'Page standard', '12' => 'Page standard',

View File

@ -74,7 +74,7 @@
<div class="block"> <div class="block">
<h4>Extensions</h4> <h4>Extensions</h4>
<div class="row"> <div class="row">
<div class="col12"> <div class="col10">
<?php echo template::hidden('pageEditModuleRedirect'); ?> <?php echo template::hidden('pageEditModuleRedirect'); ?>
<?php echo template::select('pageEditModuleId', $module::$moduleIds, [ <?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.', 'help' => 'En cas de changement de module, les données du module précédent seront supprimées.',
@ -86,15 +86,6 @@
'value' => array_key_exists($this->getData(['page', $this->getUrl(2), 'moduleId']),$module::$moduleIds)? $module::$moduleIds[$this->getData(['page', $this->getUrl(2), 'moduleId'])] : ucfirst($this->getData(['page', $this->getUrl(2), 'moduleId'])) 'value' => array_key_exists($this->getData(['page', $this->getUrl(2), 'moduleId']),$module::$moduleIds)? $module::$moduleIds[$this->getData(['page', $this->getUrl(2), 'moduleId'])] : ucfirst($this->getData(['page', $this->getUrl(2), 'moduleId']))
]); ?> ]); ?>
</div> </div>
</div>
<div class="row">
<div class="col10">
<?php echo template::select('configModulePosition', $module::$modulePosition,[
'help' => 'En position libre ajoutez le module en plaçant [MODULE] à l\'endroit voulu dans votre page.',
'label' => 'Position du module',
'selected' => $this->getData(['page', $this->getUrl(2), 'modulePosition'])
]); ?>
</div>
<div class="col2 verticalAlignBottom"> <div class="col2 verticalAlignBottom">
<?php echo template::button('pageEditModuleConfig', [ <?php echo template::button('pageEditModuleConfig', [
'disabled' => (bool) $this->getData(['page', $this->getUrl(2), 'moduleId']) === false, 'disabled' => (bool) $this->getData(['page', $this->getUrl(2), 'moduleId']) === false,
@ -103,6 +94,16 @@
]); ?> ]); ?>
</div> </div>
</div> </div>
<div class="row">
<div class="col12">
<?php echo template::select('configModulePosition', $module::$modulePosition,[
'help' => 'En position libre ajoutez le module en plaçant [MODULE] à l\'endroit voulu dans votre page.',
'label' => 'Position du module',
'selected' => $this->getData(['page', $this->getUrl(2), 'modulePosition'])
]); ?>
</div>
</div>
</div> </div>
</div> </div>
<div class="col6"> <div class="col6">