[9.0.08] inactive color page and child symbole
This commit is contained in:
parent
7608571598
commit
60b8eecb3e
3
.gitignore
vendored
3
.gitignore
vendored
@ -25,7 +25,4 @@ site/file/thumb/*
|
||||
.htaccess
|
||||
.gitignore
|
||||
core/vendor/tinymce/link_list.json
|
||||
core/vendor/tinymce/link_list.json
|
||||
site/tmp/.htaccess
|
||||
core/vendor/tinymce/link_list.json
|
||||
site/tmp/.htaccess
|
||||
|
@ -1,10 +1,12 @@
|
||||
# ChangeLog
|
||||
|
||||
|
||||
## Version 9.0.08
|
||||
- Modification :
|
||||
- Modifications :
|
||||
- Prise en compte taille des petits écrans, suppression des marges
|
||||
- TinyMCE : désactivation du thème mobile
|
||||
- Ajouts :
|
||||
- Thèmes : pied de page choix de police et de styles
|
||||
- Corrections :
|
||||
- TinyMCE : désactivation du thème mobile ne fonctionnait pas sur ipad et iphone
|
||||
|
||||
## Version 9.0.07
|
||||
- Correction :
|
||||
|
@ -29,7 +29,7 @@ class common {
|
||||
// Numéro de version de développement, ajouter dev:
|
||||
// Désactive l'update auto
|
||||
// Numéro de version stable
|
||||
const ZWII_VERSION = '9.0.08';
|
||||
const ZWII_VERSION = '9.0.08-dev';
|
||||
|
||||
|
||||
public static $actions = [];
|
||||
@ -2358,12 +2358,19 @@ class layout extends common {
|
||||
helper::baseUrl() .
|
||||
$parentPageId . '"' .
|
||||
($parentPageId === $currentPageId ? ' selected' : false) .
|
||||
($this->getData(['page', $parentPageId, 'disable']) === true ? ' class="inactive"' : false) .
|
||||
($this->getData(['page', $parentPageId, 'disable']) === true ? ' class="inactive"' : '') .
|
||||
'>' .
|
||||
$this->getData(['page', $parentPageId, 'title']) .
|
||||
'</option>';
|
||||
foreach($childrenPageIds as $childKey) {
|
||||
$leftItems .= '<option value="' . helper::baseUrl() . $childKey . '"' . ($childKey === $currentPageId ? ' selected' : false) . '> ' . $this->getData(['page', $childKey, 'title']) . '</option>';
|
||||
$leftItems .= '<option value="' .
|
||||
helper::baseUrl() .
|
||||
$childKey . '"' .
|
||||
($childKey === $currentPageId ? ' selected' : false) .
|
||||
($this->getData(['page', $childKey, 'disable']) === true ? ' class="inactive"' : '') .
|
||||
'> ⟩ ' .
|
||||
$this->getData(['page', $childKey, 'title']) .
|
||||
'</option>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user