1.4.02 fontes
This commit is contained in:
parent
bc9db7f525
commit
a6a866c01d
@ -105,53 +105,14 @@ class core extends common
|
|||||||
// Suppression des polices identiques
|
// Suppression des polices identiques
|
||||||
$fonts = array_unique($fonts);
|
$fonts = array_unique($fonts);
|
||||||
|
|
||||||
/**
|
|
||||||
* Charge les fontes websafe
|
|
||||||
*/
|
|
||||||
$fontFile = '';
|
|
||||||
foreach ($fonts as $fontId) {
|
|
||||||
if (isset($fontsAvailable['websafe'][$fontId])) {
|
|
||||||
$fonts[$fontId] = $fontsAvailable['websafe'][$fontId]['font-family'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Chargement des polices en ligne dans un fichier font.html inclus dans main.php
|
* Charge les fontes
|
||||||
*/
|
|
||||||
$fontFile = '';
|
|
||||||
$gf = false;
|
|
||||||
foreach ($fonts as $fontId) {
|
|
||||||
if (isset($fontsAvailable['imported'][$fontId])) {
|
|
||||||
$fontFile .= '<link href="' . $fontsAvailable['imported'][$fontId]['resource'] . '" rel="stylesheet">';
|
|
||||||
// Tableau pour la construction de la feuille de style
|
|
||||||
$fonts[$fontId] = $fontsAvailable['imported'][$fontId]['font-family'];
|
|
||||||
$gf = strpos($fontsAvailable['imported'][$fontId]['resource'], 'fonts.googleapis.com') === false ? $gf || false : $gf || true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Ajoute le préconnect des fontes Googles.
|
|
||||||
$fontFile = $gf ? '<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>' . $fontFile
|
|
||||||
: $fontFile;
|
|
||||||
// Enregistre la personnalisation
|
|
||||||
if (!is_dir(self::DATA_DIR . 'font')) {
|
|
||||||
mkdir(self::DATA_DIR . 'font');
|
|
||||||
}
|
|
||||||
file_put_contents(self::DATA_DIR . 'font/font.html', $fontFile);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fontes installées localement
|
|
||||||
*/
|
*/
|
||||||
foreach ($fonts as $fontId) {
|
foreach ($fonts as $fontId) {
|
||||||
// Validité du tableau :
|
foreach (['websafe', 'imported', 'files'] as $typeFont) {
|
||||||
if (isset($fontsAvailable['files'][$fontId])) {
|
if (isset($fontsAvailable[$typeFont][$fontId])) {
|
||||||
if (file_exists(self::DATA_DIR . 'font/' . $fontId)) {
|
$fonts[$fontId] = $fontsAvailable[$typeFont][$fontId]['font-family'];
|
||||||
// Chargement de la police
|
|
||||||
$css .= '@font-face {font-family:"' . $fontsAvailable['files'][$fontId]['font-family'] . '";';
|
|
||||||
$css .= 'src: url("' . helper::baseUrl(false) . self::DATA_DIR . 'font/' . $fontsAvailable['files'][$fontId]['resource'] . '");}';
|
|
||||||
// Tableau pour la construction de la feuille de style
|
|
||||||
$fonts[$fontId] = $fontsAvailable['files'][$fontId]['font-family'];
|
|
||||||
} else {
|
|
||||||
// Le fichier de font n'est pas disponible, fonte par défaut
|
|
||||||
$fonts[$fontId] = 'verdana';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -223,7 +184,7 @@ class core extends common
|
|||||||
|
|
||||||
// Bannière
|
// Bannière
|
||||||
|
|
||||||
// Éléments communs
|
// Eléments communs
|
||||||
if ($this->getData(['theme', 'header', 'margin'])) {
|
if ($this->getData(['theme', 'header', 'margin'])) {
|
||||||
if ($this->getData(['theme', 'menu', 'position']) === 'site-first') {
|
if ($this->getData(['theme', 'menu', 'position']) === 'site-first') {
|
||||||
$css .= 'header{margin:0 20px}';
|
$css .= 'header{margin:0 20px}';
|
||||||
@ -311,12 +272,6 @@ class core extends common
|
|||||||
$css .= '#footerText > p {text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}';
|
$css .= '#footerText > p {text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}';
|
||||||
$css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}';
|
$css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}';
|
||||||
|
|
||||||
// Enregistre les fontes
|
|
||||||
if (!is_dir(self::DATA_DIR . 'font')) {
|
|
||||||
mkdir(self::DATA_DIR . 'font');
|
|
||||||
}
|
|
||||||
file_put_contents(self::DATA_DIR . 'font/font.html', $fontFile);
|
|
||||||
|
|
||||||
// Enregistre la personnalisation
|
// Enregistre la personnalisation
|
||||||
file_put_contents(self::DATA_DIR . self::$siteContent . '/theme.css', $css);
|
file_put_contents(self::DATA_DIR . self::$siteContent . '/theme.css', $css);
|
||||||
|
|
||||||
@ -352,44 +307,12 @@ class core extends common
|
|||||||
$fonts = array_unique($fonts);
|
$fonts = array_unique($fonts);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Charge les fontes websafe
|
* Charge les fontes
|
||||||
*/
|
|
||||||
$fontFile = '';
|
|
||||||
foreach ($fonts as $fontId) {
|
|
||||||
if (isset($fontsAvailable['websafe'][$fontId])) {
|
|
||||||
$fonts[$fontId] = $fontsAvailable['websafe'][$fontId]['font-family'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Chargement des polices en ligne dans un fichier font.html inclus dans main.php
|
|
||||||
*/
|
|
||||||
$fontFile = '';
|
|
||||||
foreach ($fonts as $fontId) {
|
|
||||||
if (isset($fontsAvailable['imported'][$fontId])) {
|
|
||||||
$fontFile .= '<link href="' . $fontsAvailable['imported'][$fontId]['resource'] . '" rel="stylesheet">';
|
|
||||||
// Tableau pour la construction de la feuille de style
|
|
||||||
$fonts[$fontId] = $fontsAvailable['imported'][$fontId]['font-family'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Enregistre la personnalisation
|
|
||||||
file_put_contents(self::DATA_DIR . 'font/font.html', $fontFile);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fontes installées localement
|
|
||||||
*/
|
*/
|
||||||
foreach ($fonts as $fontId) {
|
foreach ($fonts as $fontId) {
|
||||||
// Validité du tableau :
|
foreach (['websafe', 'imported', 'files'] as $typeFont) {
|
||||||
if (isset($fontsAvailable['files'][$fontId])) {
|
if (isset($fontsAvailable[$typeFont][$fontId])) {
|
||||||
if (file_exists(self::DATA_DIR . 'font/' . $fontId)) {
|
$fonts[$fontId] = $fontsAvailable[$typeFont][$fontId]['font-family'];
|
||||||
// Chargement de la police
|
|
||||||
$css .= '@font-face {font-family:"' . $fontsAvailable['files'][$fontId]['font-family'] . '";';
|
|
||||||
$css .= 'src: url("' . helper::baseUrl(false) . self::DATA_DIR . 'font/' . $fontsAvailable['files'][$fontId]['resource'] . '");}';
|
|
||||||
// Tableau pour la construction de la feuille de style
|
|
||||||
$fonts[$fontId] = $fontsAvailable['files'][$fontId]['font-family'];
|
|
||||||
} else {
|
|
||||||
// Le fichier de font n'est pas disponible, fonte par défaut
|
|
||||||
$fonts[$fontId] = 'verdana';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@ class common
|
|||||||
const ACCESS_TIMER = 1800;
|
const ACCESS_TIMER = 1800;
|
||||||
|
|
||||||
// Numéro de version
|
// Numéro de version
|
||||||
const ZWII_VERSION = '1.4.01';
|
const ZWII_VERSION = '1.4.02';
|
||||||
|
|
||||||
// URL autoupdate
|
// URL autoupdate
|
||||||
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/campus-update/raw/branch/master/';
|
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/campus-update/raw/branch/master/';
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/blank.css">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/blank.css">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR . self::$siteContent; ?>/theme.css?<?php echo md5_file(self::DATA_DIR. self::$siteContent . '/theme.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR . self::$siteContent; ?>/theme.css?<?php echo md5_file(self::DATA_DIR. self::$siteContent . '/theme.css'); ?>">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
|
||||||
|
<?php if (file_exists(self::DATA_DIR . 'font/font.css')): ?>
|
||||||
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>font/font.css?<?php echo md5_file(self::DATA_DIR . 'font/font.css'); ?>">
|
||||||
|
<?php endif; ?>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php $layout->showContent(); ?>
|
<?php $layout->showContent(); ?>
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/light.css">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/light.css">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR . self::$siteContent; ?>/theme.css?<?php echo md5_file(self::DATA_DIR. self::$siteContent . '/theme.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR . self::$siteContent; ?>/theme.css?<?php echo md5_file(self::DATA_DIR. self::$siteContent . '/theme.css'); ?>">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
|
||||||
|
<?php if (file_exists(self::DATA_DIR . 'font/font.css')): ?>
|
||||||
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>font/font.css?<?php echo md5_file(self::DATA_DIR . 'font/font.css'); ?>">
|
||||||
|
<?php endif; ?>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php $layout->showNotification(); ?>
|
<?php $layout->showNotification(); ?>
|
||||||
|
@ -16,6 +16,9 @@
|
|||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css?<?php echo md5_file('core/layout/common.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css?<?php echo md5_file('core/layout/common.css'); ?>">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR . self::$siteContent; ?>/theme.css?<?php echo md5_file(self::DATA_DIR . self::$siteContent . '/theme.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR . self::$siteContent; ?>/theme.css?<?php echo md5_file(self::DATA_DIR . self::$siteContent . '/theme.css'); ?>">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR . 'custom.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR . 'custom.css'); ?>">
|
||||||
|
<?php if (file_exists(self::DATA_DIR . 'font/font.css')): ?>
|
||||||
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>font/font.css?<?php echo md5_file(self::DATA_DIR . 'font/font.css'); ?>">
|
||||||
|
<?php endif; ?>
|
||||||
<!-- Détection RSS -->
|
<!-- Détection RSS -->
|
||||||
<?php if (($this->getData(['page', $this->getUrl(0), 'moduleId']) === 'blog'
|
<?php if (($this->getData(['page', $this->getUrl(0), 'moduleId']) === 'blog'
|
||||||
or $this->getData(['page', $this->getUrl(0), 'moduleId']) === 'news')
|
or $this->getData(['page', $this->getUrl(0), 'moduleId']) === 'news')
|
||||||
|
@ -666,7 +666,7 @@ class theme extends common
|
|||||||
'class' => 'themeFontEdit',
|
'class' => 'themeFontEdit',
|
||||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/fontEdit/' . $type . '/' . $fontId,
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/fontEdit/' . $type . '/' . $fontId,
|
||||||
'value' => template::ico('pencil'),
|
'value' => template::ico('pencil'),
|
||||||
'disabled' => !empty($fontUsed[$fontId])
|
//'disabled' => !empty($fontUsed[$fontId])
|
||||||
])
|
])
|
||||||
: '',
|
: '',
|
||||||
$type !== 'websafe' ? template::button('themeFontDelete' . $fontId, [
|
$type !== 'websafe' ? template::button('themeFontDelete' . $fontId, [
|
||||||
@ -701,8 +701,8 @@ class theme extends common
|
|||||||
// Type d'import en ligne ou local
|
// Type d'import en ligne ou local
|
||||||
$type = $this->getInput('fontAddUrl', helper::FILTER_BOOLEAN) ? 'imported' : 'files';
|
$type = $this->getInput('fontAddUrl', helper::FILTER_BOOLEAN) ? 'imported' : 'files';
|
||||||
$type === 'files' ? 'imported' : 'files';
|
$type === 'files' ? 'imported' : 'files';
|
||||||
$ressource = $type === 'imported' ? $this->getInput('fontAddUrl', null) : $this->getInput('fontAddFile', null);
|
$resource = $type === 'imported' ? $this->getInput('fontAddUrl', null) : $this->getInput('fontAddFile', null);
|
||||||
if (!empty($ressource)) {
|
if (!empty($resource)) {
|
||||||
$fontId = $this->getInput('fontAddFontId', null, true);
|
$fontId = $this->getInput('fontAddFontId', null, true);
|
||||||
$fontName = $this->getInput('fontAddFontName', null, true);
|
$fontName = $this->getInput('fontAddFontName', null, true);
|
||||||
$fontFamilyName = $this->getInput('fontAddFontFamilyName', null, true);
|
$fontFamilyName = $this->getInput('fontAddFontFamilyName', null, true);
|
||||||
@ -714,6 +714,19 @@ class theme extends common
|
|||||||
if (is_array($this->getData(['font', $type, $fontId]))) {
|
if (is_array($this->getData(['font', $type, $fontId]))) {
|
||||||
$this->deleteData(['font', $type, $fontId]);
|
$this->deleteData(['font', $type, $fontId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Copier la fonte si le nom du fichier est fourni
|
||||||
|
$success = false;
|
||||||
|
if (!is_dir(self::DATA_DIR . 'font/')) {
|
||||||
|
mkdir(self::DATA_DIR . 'font/');
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
$type === 'files' &&
|
||||||
|
file_exists(self::FILE_DIR . 'source/' . $resource)
|
||||||
|
) {
|
||||||
|
$success = copy(self::FILE_DIR . 'source/' . $resource, self::DATA_DIR . 'font/' . basename($resource));
|
||||||
|
}
|
||||||
|
|
||||||
// Stocker la fonte
|
// Stocker la fonte
|
||||||
$this->setData([
|
$this->setData([
|
||||||
'font',
|
'font',
|
||||||
@ -722,24 +735,15 @@ class theme extends common
|
|||||||
[
|
[
|
||||||
'name' => $fontName,
|
'name' => $fontName,
|
||||||
'font-family' => $fontFamilyName,
|
'font-family' => $fontFamilyName,
|
||||||
'resource' => $ressource
|
'resource' => $resource
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
// Copier la fonte si le nom du fichier est fourni
|
|
||||||
if (
|
|
||||||
$type === 'files' &&
|
|
||||||
file_exists(self::FILE_DIR . 'source/' . $ressource)
|
|
||||||
) {
|
|
||||||
copy(self::FILE_DIR . 'source/' . $ressource, self::DATA_DIR . 'font/' . $ressource);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'notification' => helper::translate('Fonte créée'),
|
'notification' => $success ? helper::translate('Fonte actualisée') : helper::translate('Erreur de copie'),
|
||||||
'redirect' => helper::baseUrl() . 'theme/fonts',
|
'redirect' => helper::baseUrl() . 'theme/font',
|
||||||
'state' => true
|
'state' => $success
|
||||||
]);
|
]);
|
||||||
} else {
|
} else {
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
@ -770,8 +774,8 @@ class theme extends common
|
|||||||
) {
|
) {
|
||||||
// Type d'import en ligne ou local
|
// Type d'import en ligne ou local
|
||||||
$type = $this->getInput('fontEditUrl', helper::FILTER_BOOLEAN) ? 'imported' : 'files';
|
$type = $this->getInput('fontEditUrl', helper::FILTER_BOOLEAN) ? 'imported' : 'files';
|
||||||
$ressource = $type === 'imported' ? $this->getInput('fontEditUrl', null) : $this->getInput('fontEditFile', null);
|
|
||||||
$fontId = $this->getInput('fontEditFontId', null, true);
|
$fontId = $this->getInput('fontEditFontId', null, true);
|
||||||
|
$resource = $this->getData(['font', $type, $fontId, 'resource']);
|
||||||
$fontName = $this->getInput('fontEditFontName', null, true);
|
$fontName = $this->getInput('fontEditFontName', null, true);
|
||||||
$fontFamilyName = $this->getInput('fontEditFontFamilyName', null, true);
|
$fontFamilyName = $this->getInput('fontEditFontFamilyName', null, true);
|
||||||
|
|
||||||
@ -783,6 +787,7 @@ class theme extends common
|
|||||||
$this->deleteData(['font', $type, $fontId]);
|
$this->deleteData(['font', $type, $fontId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Stocker les fontes
|
// Stocker les fontes
|
||||||
$this->setData([
|
$this->setData([
|
||||||
'font',
|
'font',
|
||||||
@ -791,21 +796,14 @@ class theme extends common
|
|||||||
[
|
[
|
||||||
'name' => $fontName,
|
'name' => $fontName,
|
||||||
'font-family' => $fontFamilyName,
|
'font-family' => $fontFamilyName,
|
||||||
'resource' => $ressource
|
'resource' => $resource
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
// Copier la fonte si le nom du fichier est fourni
|
|
||||||
if (
|
|
||||||
$type === 'files' &&
|
|
||||||
file_exists(self::FILE_DIR . 'source/' . $ressource)
|
|
||||||
) {
|
|
||||||
copy(self::FILE_DIR . 'source/' . $ressource, self::DATA_DIR . 'font/' . $ressource);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'notification' => helper::translate('Fonte actualisée'),
|
'notification' => helper::translate('Fonte actualisée'),
|
||||||
'redirect' => helper::baseUrl() . 'theme/fonts',
|
'redirect' => helper::baseUrl() . 'theme/font',
|
||||||
'state' => true
|
'state' => true
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
@ -847,7 +845,7 @@ class theme extends common
|
|||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'redirect' => helper::baseUrl() . 'theme/fonts',
|
'redirect' => helper::baseUrl() . 'theme/font',
|
||||||
'notification' => helper::translate('Fonte supprimée'),
|
'notification' => helper::translate('Fonte supprimée'),
|
||||||
'state' => true
|
'state' => true
|
||||||
]);
|
]);
|
||||||
@ -1045,8 +1043,8 @@ class theme extends common
|
|||||||
// Archive de thème ?
|
// Archive de thème ?
|
||||||
if (
|
if (
|
||||||
file_exists(self::TEMP_DIR . $tempFolder . '/site/data/custom.css')
|
file_exists(self::TEMP_DIR . $tempFolder . '/site/data/custom.css')
|
||||||
and file_exists(self::TEMP_DIR . $tempFolder . '/site/data//theme.css')
|
and file_exists(self::TEMP_DIR . $tempFolder . '/site/data/theme.css')
|
||||||
and file_exists(self::TEMP_DIR . $tempFolder . '/site/data//theme.json')
|
and file_exists(self::TEMP_DIR . $tempFolder . '/site/data/theme.json')
|
||||||
) {
|
) {
|
||||||
$modele = 'theme';
|
$modele = 'theme';
|
||||||
}
|
}
|
||||||
@ -1381,13 +1379,13 @@ class theme extends common
|
|||||||
($scope === 'user' && in_array($fontId, $fontsInstalled))
|
($scope === 'user' && in_array($fontId, $fontsInstalled))
|
||||||
|| $scope === 'all'
|
|| $scope === 'all'
|
||||||
) {
|
) {
|
||||||
if (file_exists(self::DATA_DIR . 'font/' . $fontValue['resource'])) {
|
if (file_exists($fontValue['resource'])) {
|
||||||
// Extension
|
// Extension
|
||||||
$path_parts = pathinfo(helper::baseUrl(false) . self::DATA_DIR . 'font/' . $fontValue['resource']);
|
$path_parts = pathinfo(helper::baseUrl(false) . self::DATA_DIR . 'font/' . $fontValue['resource']);
|
||||||
// Chargement de la police
|
// Chargement de la police
|
||||||
$fileContentCss .= '@font-face {';
|
$fileContentCss .= '@font-face {';
|
||||||
$fileContentCss .= 'font-family:"' . $fontValue['name'] . '";';
|
$fileContentCss .= 'font-family:"' . $fontValue['name'] . '";';
|
||||||
$fileContentCss .= 'src: url("' . $fontValue['resource'] . '") format("' . $path_parts['extension'] . '");';
|
$fileContentCss .= 'src: url("' . helper::baseUrl(false) . $fontValue['resource'] . '") format("' . $path_parts['extension'] . '");';
|
||||||
$fileContentCss .= '}';
|
$fileContentCss .= '}';
|
||||||
// Préchargement
|
// Préchargement
|
||||||
//$fileContent = '<link rel="preload" href="' . self::DATA_DIR . 'font/' . $fontValue['resource'] . '" type="font/woff" crossorigin="anonymous" as="font">' . $fileContent;
|
//$fileContent = '<link rel="preload" href="' . self::DATA_DIR . 'font/' . $fontValue['resource'] . '" type="font/woff" crossorigin="anonymous" as="font">' . $fileContent;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div class="col1">
|
<div class="col1">
|
||||||
<?php echo template::button('fontAddBack', [
|
<?php echo template::button('fontAddBack', [
|
||||||
'class' => 'buttonGrey',
|
'class' => 'buttonGrey',
|
||||||
'href' => helper::baseUrl() . 'theme/fonts',
|
'href' => helper::baseUrl() . 'theme/font',
|
||||||
'value' => template::ico('left')
|
'value' => template::ico('left')
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div class="col1">
|
<div class="col1">
|
||||||
<?php echo template::button('fontEditBack', [
|
<?php echo template::button('fontEditBack', [
|
||||||
'class' => 'buttonGrey',
|
'class' => 'buttonGrey',
|
||||||
'href' => helper::baseUrl() . 'theme/fonts',
|
'href' => helper::baseUrl() . 'theme/font',
|
||||||
'value' => template::ico('left')
|
'value' => template::ico('left')
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
@ -66,10 +66,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row" id="containerfontEditFile">
|
<div class="row" id="containerfontEditFile">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<?php echo template::file('fontEditFile', [
|
<?php echo template::text('fontEditFile', [
|
||||||
'label' => 'Fichier de fonte (Format WOFF)',
|
'label' => 'Fichier de fonte (Format WOFF)',
|
||||||
'language' => $this->getData(['user', $this->getUser('id'), 'language']),
|
'value' => $this->getUrl(2) === 'files' ? $this->getData(['font', $this->getUrl(2), $this->getUrl(3), 'resource']) : '',
|
||||||
'value' => $this->getUrl(2) === 'files' ? $this->getData(['font', $this->getUrl(2), $this->getUrl(3), 'resource']) : ''
|
'disabled' => true
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -131,29 +131,29 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col3">
|
<div class="col3">
|
||||||
<?php echo template::checkbox('themeFooterDisplayLegal', true, 'Mentions légales', [
|
<?php echo template::checkbox('themeFooterDisplayLegal', true, 'Mentions légales', [
|
||||||
'checked' => $this->getData(['config', 'legalPageId']) === 'none' ? false : $this->getData(['theme', 'footer', 'displayLegal']),
|
'checked' => $this->getData(['locale', 'legalPageId']) === 'none' ? false : $this->getData(['theme', 'footer', 'displayLegal']),
|
||||||
'disabled' => $this->getData(['config', 'legalPageId']) === 'none' ? true : false,
|
'disabled' => $this->getData(['locale', 'legalPageId']) === 'none' ? true : false,
|
||||||
'help' => 'Sélectionnez une page pour activer'
|
'help' => 'Sélectionnez une page pour activer'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col3">
|
<div class="col3">
|
||||||
<?php echo template::select('configLegalPageId', array_merge(['none' => 'Aucune'], helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC')), [
|
<?php echo template::select('configLegalPageId', array_merge(['none' => 'Aucune'], helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC')), [
|
||||||
'label' => helper::translate('Mentions légales') . ' ' . template::flag('selected', '20px'),
|
'label' => helper::translate('Mentions légales') . ' ' . template::flag('selected', '20px'),
|
||||||
'selected' => $this->getData(['config', 'legalPageId'])
|
'selected' => $this->getData(['locale', 'legalPageId'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col3">
|
<div class="col3">
|
||||||
<?php echo template::checkbox('themeFooterDisplaySearch', true, 'Rechercher dans le site', [
|
<?php echo template::checkbox('themeFooterDisplaySearch', true, 'Rechercher dans le site', [
|
||||||
'checked' => $this->getData(['config', 'searchPageId']) === 'none' ? false : $this->getData(['theme', 'footer', 'displaySearch']),
|
'checked' => $this->getData(['locale', 'searchPageId']) === 'none' ? false : $this->getData(['theme', 'footer', 'displaySearch']),
|
||||||
'disabled' => $this->getData(['config', 'searchPageId']) === 'none' ? true : false,
|
'disabled' => $this->getData(['locale', 'searchPageId']) === 'none' ? true : false,
|
||||||
'help' => 'Sélectionnez une page pour activer'
|
'help' => 'Sélectionnez une page pour activer'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col3">
|
<div class="col3">
|
||||||
<?php echo template::select('configSearchPageId', array_merge(['none' => 'Aucune'], helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC')), [
|
<?php echo template::select('configSearchPageId', array_merge(['none' => 'Aucune'], helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC')), [
|
||||||
'label' => helper::translate('Rechercher dans le site') . ' ' . template::flag('selected', '20px'),
|
'label' => helper::translate('Rechercher dans le site') . ' ' . template::flag('selected', '20px'),
|
||||||
'selected' => $this->getData(['config', 'searchPageId'])
|
'selected' => $this->getData(['locale', 'searchPageId'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user