[9.0.21] Pages parentes non sélectionnables dans lien de TinyMCE

This commit is contained in:
Prof Langues 2019-04-23 15:48:02 +02:00
parent 96cf295374
commit 14fedd0935
1 changed files with 7 additions and 13 deletions

View File

@ -28,7 +28,7 @@ class common {
const GROUP_ADMIN = 3;
// Numéro de version stable
const ZWII_VERSION = '9.0.20';
const ZWII_VERSION = '9.0.21';
public static $actions = [];
public static $coreModuleIds = [
@ -553,23 +553,17 @@ class common {
$children = [];
// Exclure les barres
if ($this->getData(['page', $parentId, 'block']) !== 'bar' ) {
$parents [] = ['title' => $this->getData(['page', $parentId, 'title']) ,
'value'=> $rewrite.$parentId
];
foreach($childIds as $childId) {
$children [] = ['title' => $this->getData(['page', $childId, 'title']) ,
$parents [] = ['title' => $this->getData(['page', $parentId, 'title']) . ' / '. $this->getData(['page', $childId, 'title']) ,
'value'=> $rewrite.$childId
];
];
}
if (empty($childIds)) {
$parents [] = ['title' => $this->getData(['page', $parentId, 'title']) ,
'value'=> $rewrite.$parentId
];
} else {
$parents [] = ['title' => $this->getData(['page', $parentId, 'title']) ,
'value'=> $rewrite.$parentId ,
'menu' => $children
];
}
}
}
// 3 tentatives
for($i = 0; $i < 3; $i++) {