forked from ZwiiCMS-Team/ZwiiCMS
id et class des éléments de menu
This commit is contained in:
parent
50354200af
commit
129a3b568b
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
|
|
||||||
## Version 11.3.00
|
## Version 11.3.00
|
||||||
- Correction :
|
- Corrections :
|
||||||
- Thème / site : problème d'aperçu du body ; police du thème admin non chargées.
|
- Thème / site : problème d'aperçu du body ; police du thème admin non chargées.
|
||||||
- Bugs avec les aperçus des sélecteurs de fontes.
|
- Bugs avec les aperçus des sélecteurs de fontes.
|
||||||
- Modification :
|
- Modification :
|
||||||
@ -10,6 +10,7 @@
|
|||||||
- Changement de fournisseur, CdnFont remplace Google Font.
|
- Changement de fournisseur, CdnFont remplace Google Font.
|
||||||
- Les polices pourront désormais être téléchargées à partir du site et non du CDN.
|
- Les polices pourront désormais être téléchargées à partir du site et non du CDN.
|
||||||
- Thème / Bannière : ergonomie de l'information sur l'image sélectionnée.
|
- Thème / Bannière : ergonomie de l'information sur l'image sélectionnée.
|
||||||
|
- Identifications des éléments du menu, les pages parents prennent comme id CSS leur id, les pages enfants également et pour classe Id de la page parente.
|
||||||
|
|
||||||
## Version 11.2.05
|
## Version 11.2.05
|
||||||
- Corrections :
|
- Corrections :
|
||||||
|
@ -1670,10 +1670,10 @@ class common {
|
|||||||
)
|
)
|
||||||
){
|
){
|
||||||
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
|
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
|
||||||
$itemsLeft .= '<a class="A ' . $parentPageId . '" href="' . $pageUrl . '">';
|
$itemsLeft .= '<a id="' . $parentPageId . '" href="' . $pageUrl . '">';
|
||||||
} else {
|
} else {
|
||||||
$pageUrl = ($this->getData(['locale', 'homePageId']) === $parentPageId) ? helper::baseUrl(false) : helper::baseUrl() . $parentPageId;
|
$pageUrl = ($this->getData(['locale', 'homePageId']) === $parentPageId) ? helper::baseUrl(false) : helper::baseUrl() . $parentPageId;
|
||||||
$itemsLeft .= '<a class="B ' . $active . $parentPageId . '" href="' . $pageUrl . '"' . $targetBlank . '>';
|
$itemsLeft .= '<a class="' . $active . '" id="' . $parentPageId . '" href="' . $pageUrl . '"' . $targetBlank . '>';
|
||||||
}
|
}
|
||||||
|
|
||||||
switch ($this->getData(['page', $parentPageId, 'typeMenu'])) {
|
switch ($this->getData(['page', $parentPageId, 'typeMenu'])) {
|
||||||
@ -1732,10 +1732,10 @@ class common {
|
|||||||
)
|
)
|
||||||
){
|
){
|
||||||
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
|
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
|
||||||
$itemsLeft .= '<a class="' . $parentPageId . '" href="'. $pageUrl .'">';
|
$itemsLeft .= '<a id="' . $parentPageId . '" href="'. $pageUrl .'">';
|
||||||
} else {
|
} else {
|
||||||
$pageUrl = ($this->getData(['locale', 'homePageId']) === $childKey) ? helper::baseUrl(false) : helper::baseUrl() . $childKey;
|
$pageUrl = ($this->getData(['locale', 'homePageId']) === $childKey) ? helper::baseUrl(false) : helper::baseUrl() . $childKey;
|
||||||
$itemsLeft .= '<a class="' . $active . $parentPageId . '" href="' . $pageUrl . '"' . $targetBlank . '>';
|
$itemsLeft .= '<a class="' . $active . ' ' . $parentPageId . '" id="' . $childKey . '" href="' . $pageUrl . '"' . $targetBlank . '>';
|
||||||
}
|
}
|
||||||
|
|
||||||
switch ($this->getData(['page', $childKey, 'typeMenu'])) {
|
switch ($this->getData(['page', $childKey, 'typeMenu'])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user