forked from ZwiiCMS-Team/ZwiiCMS
Validité des fontes
This commit is contained in:
parent
66cb645700
commit
bd1a174272
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## Version 11.4.02
|
||||
### Modifications :
|
||||
- Liste des aperçus de fontes, contrôle de validité amélioré.
|
||||
|
||||
## Version 11.4.01
|
||||
### Corrections :
|
||||
- Défaut de chargement des fontes locales (ex: fichiers woff).
|
||||
|
@ -1190,6 +1190,8 @@ class theme extends common {
|
||||
*/
|
||||
$gf = false;
|
||||
$fileContent = '<!-- Fontes personnalisées -->';
|
||||
if ( is_array($this->getData(['fonts', 'imported'])) &&
|
||||
!empty($this->getData(['fonts', 'imported'])) ) {
|
||||
foreach ($this->getData(['fonts', 'imported']) as $fontId => $fontValue) {
|
||||
if (
|
||||
( $scope === 'user' && in_array($fontId, $fontsInstalled) )
|
||||
@ -1202,6 +1204,7 @@ class theme extends common {
|
||||
$gf = strpos($fontValue['resource'], 'fonts.googleapis.com') === false ? $gf || false : $gf || true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Ajoute le préconnect des fontes Googles.
|
||||
$fileContent = $gf ? '<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>' . $fileContent
|
||||
@ -1213,6 +1216,9 @@ class theme extends common {
|
||||
* Fontes installées localement
|
||||
*/
|
||||
$fileContentCss = '';
|
||||
$fileContent = '<!-- Fontes personnalisées -->';
|
||||
if ( is_array($this->getData(['fonts', 'files'])) &&
|
||||
!empty($this->getData(['fonts', 'files'])) ) {
|
||||
foreach ($this->getData(['fonts', 'files']) as $fontId => $fontValue) {
|
||||
if (
|
||||
( $scope === 'user' && in_array($fontId, $fontsInstalled) )
|
||||
@ -1231,6 +1237,7 @@ class theme extends common {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enregistre la personnalisation
|
||||
file_put_contents(self::DATA_DIR.'fonts/fonts.html', $fileContent);
|
||||
|
Loading…
Reference in New Issue
Block a user