Label plan du cours et non plan du site

This commit is contained in:
Fred Tempez 2023-10-04 18:20:23 +02:00
parent cfce58a050
commit 0b2624f986
7 changed files with 8 additions and 8 deletions

View File

@ -302,7 +302,7 @@ class layout extends common
// Affichage du sitemap
$items .= '<span id="footerDisplaySiteMap"';
$items .= $this->getData(['theme', 'footer', 'displaySiteMap']) === false ? ' class="displayNone"' : '';
$label = ($this->getData(['config', 'sitemapPageLabel']) === 'none') ? 'Plan du site' : $this->getData(['config', 'sitemapPageLabel']);
$label = ($this->getData(['config', 'sitemapPageLabel']) === 'none') ? 'Plan du cours' : $this->getData(['config', 'sitemapPageLabel']);
$items .= '><wbr>&nbsp;|&nbsp;<a href="' . helper::baseUrl() . 'sitemap" >' . $label . '</a>';
$items .= '</span>';
// Affichage du module de recherche

View File

@ -816,7 +816,7 @@ class common
'value' => $rewrite . 'search'
];
$children[] = [
'title' => 'Plan du site',
'title' => 'Plan du cours',
'value' => $rewrite . 'sitemap'
];
$parents[] = [

View File

@ -468,7 +468,7 @@ class config extends common
'poweredPageLabel' => empty($this->getInput('configLocalePoweredPageLabel', helper::FILTER_STRING_SHORT)) ? 'Motorisé par' : $this->getInput('configLocalePoweredPageLabel', helper::FILTER_STRING_SHORT),
'searchPageLabel' => empty($this->getInput('configLocaleSearchPageLabel', helper::FILTER_STRING_SHORT)) ? 'Rechercher' : $this->getInput('configLocaleSearchPageLabel', helper::FILTER_STRING_SHORT),
'legalPageLabel' => empty($this->getInput('configLocaleLegalPageLabel', helper::FILTER_STRING_SHORT)) ? 'Mentions légales' : $this->getInput('configLocaleLegalPageLabel', helper::FILTER_STRING_SHORT),
'sitemapPageLabel' => empty($this->getInput('configLocaleSitemapPageLabel', helper::FILTER_STRING_SHORT)) ? 'Plan du site' : $this->getInput('configLocaleSitemapPageLabel', helper::FILTER_STRING_SHORT),
'sitemapPageLabel' => empty($this->getInput('configLocaleSitemapPageLabel', helper::FILTER_STRING_SHORT)) ? 'Plan du cours' : $this->getInput('configLocaleSitemapPageLabel', helper::FILTER_STRING_SHORT),
'metaDescription' => $this->getInput('configLocaleMetaDescription', helper::FILTER_STRING_LONG, true),
'title' => $this->getInput('configLocaleTitle', helper::FILTER_STRING_SHORT, true),
'cookies' => [

View File

@ -129,8 +129,8 @@
<div class="row">
<div class="col4 offset2">
<?php echo template::text('configLocaleSitemapPageLabel', [
'label' => 'Plan du site',
'placeholder' => 'Plan du site',
'label' => 'Plan du cours',
'placeholder' => 'Plan du cours',
'value' => $this->getData(['config', 'sitemapPageLabel']),
]); ?>
</div>

View File

@ -18,7 +18,7 @@ class init extends common
'legalPageId' => 'none',
'searchPageId' => 'none',
'searchPageLabel' => 'Rechercher',
'sitemapPageLabel' => 'Plan du site',
'sitemapPageLabel' => 'Plan du cours',
'legalPageLabel' => 'Mentions légales',
'metaDescription' => 'Zwii est un CMS sans base de données qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation.',
'title' => 'Votre site en quelques clics !',

View File

@ -109,7 +109,7 @@ class sitemap extends common
// Valeurs en sortie
$this->addOutput([
'title' => helper::translate('Plan du site'),
'title' => helper::translate('Plan du cours'),
'view' => 'index'
]);
}

View File

@ -103,7 +103,7 @@
]); ?>
</div>
<div class="col3">
<?php echo template::checkbox('themefooterDisplaySiteMap', true, 'Plan du site', [
<?php echo template::checkbox('themefooterDisplaySiteMap', true, 'Plan du cours', [
'checked' => $this->getData(['theme', 'footer', 'displaySiteMap'])
]); ?>
</div>