ZwiiCMS/core/module/theme/theme.php

713 lines
23 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<?php
/**
* This file is part of Zwii.
*
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Rémi Jean <remi.jean@outlook.com>
* @copyright Copyright (C) 2008-2018, Rémi Jean
* @license GNU General Public License, version 3
* @link http://zwiicms.fr/
2019-01-22 14:36:13 +01:00
* @copyright : Frédéric Tempez <frederic.tempez@outlook.com>
2020-01-21 09:14:04 +01:00
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
2018-04-02 08:29:19 +02:00
*/
class theme extends common {
public static $actions = [
'advanced' => self::GROUP_ADMIN,
'body' => self::GROUP_ADMIN,
'footer' => self::GROUP_ADMIN,
'header' => self::GROUP_ADMIN,
'index' => self::GROUP_ADMIN,
'menu' => self::GROUP_ADMIN,
'reset' => self::GROUP_ADMIN,
'resetAdmin' => self::GROUP_ADMIN,
2018-12-25 16:24:20 +01:00
'site' => self::GROUP_ADMIN,
2020-06-02 12:03:45 +02:00
'admin' => self::GROUP_ADMIN,
2018-12-25 16:24:20 +01:00
'manage' => self::GROUP_ADMIN,
2018-12-25 18:38:17 +01:00
'export' => self::GROUP_ADMIN,
2018-12-28 16:52:58 +01:00
'save' => self::GROUP_ADMIN
2018-04-02 08:29:19 +02:00
];
public static $aligns = [
'left' => 'À gauche',
'center' => 'Au centre',
'right' => 'À droite'
];
public static $attachments = [
2019-03-21 19:55:51 +01:00
'scroll' => 'Standard',
2018-04-02 08:29:19 +02:00
'fixed' => 'Fixe'
];
public static $fonts = [
'Abril+Fatface' => 'Abril Fatface',
'Arimo' => 'Arimo',
'Arvo' => 'Arvo',
'Berkshire+Swash' => 'Berkshire Swash',
'Cabin' => 'Cabin',
'Dancing+Script' => 'Dancing Script',
'Droid+Sans' => 'Droid Sans',
'Droid+Serif' => 'Droid Serif',
'Fira+Sans' => 'Fira Sans',
'Inconsolata' => 'Inconsolata',
'Indie+Flower' => 'Indie Flower',
'Josefin+Slab' => 'Josefin Slab',
'Lobster' => 'Lobster',
'Lora' => 'Lora',
'Lato' => 'Lato',
'Marvel' => 'Marvel',
'Old+Standard+TT' => 'Old Standard TT',
'Open+Sans' => 'Open Sans',
'Oswald' => 'Oswald',
'PT+Mono' => 'PT Mono',
'PT+Serif' => 'PT Serif',
'Raleway' => 'Raleway',
'Rancho' => 'Rancho',
'Roboto' => 'Roboto',
'Signika' => 'Signika',
'Ubuntu' => 'Ubuntu',
'Vollkorn' => 'Vollkorn'
];
2018-09-09 21:28:05 +02:00
public static $footerblocks = [
2019-06-19 09:35:19 +02:00
1 => [
'hide' => 'Masqué',
2020-06-02 12:03:45 +02:00
'center' => 'Affiché' ],
2019-06-22 19:44:13 +02:00
2 => [
2019-06-19 09:35:19 +02:00
'hide' => 'Masqué',
2020-04-17 17:39:16 +02:00
'left' => 'À gauche',
'right' => 'À droite' ],
2019-06-22 19:44:13 +02:00
3 => [
2019-06-19 09:35:19 +02:00
'hide' => 'Masqué',
2020-04-17 17:39:16 +02:00
'left' => 'À gauche',
'center' => 'Au centre',
2020-04-17 17:39:16 +02:00
'right' => 'À droite' ],
2019-06-22 19:44:13 +02:00
4 => [
'hide' => 'Masqué',
2019-06-23 23:37:12 +02:00
'left' => 'En haut',
'center' => 'Au milieu',
'right' => 'En bas' ]
2018-09-09 21:28:05 +02:00
];
2019-06-19 09:35:19 +02:00
2018-04-02 08:29:19 +02:00
public static $fontWeights = [
2019-03-22 09:53:28 +01:00
'normal' => 'Maigre',
2018-04-02 08:29:19 +02:00
'bold' => 'Gras'
];
public static $footerHeights = [
2019-11-12 18:57:41 +01:00
'0px' => 'Nulles (0px)',
'5px' => 'Très petites (5px)',
'10px' => 'Petites (10px)',
'15px' => 'Moyennes (15px)',
'20px' => 'Grandes (20px)'
2018-04-02 08:29:19 +02:00
];
public static $footerPositions = [
2019-05-02 13:21:48 +02:00
'hide' => 'Caché',
2018-04-02 08:29:19 +02:00
'site' => 'Dans le site',
'body' => 'En dessous du site'
];
2019-03-19 06:59:28 +01:00
public static $footerFontSizes = [
2019-03-20 18:25:17 +01:00
'.8em' => 'Très petite (80%)',
'.9em' => 'Petite (90%)',
2019-03-21 19:55:51 +01:00
'1em' => 'Standard (100%)',
'1.1em' => 'Moyenne (110%)',
'1.2em' => 'Grande (120%)',
'1.3em' => 'Très grande (130%)'
2020-06-02 12:03:45 +02:00
];
2018-04-02 08:29:19 +02:00
public static $headerFontSizes = [
2019-03-20 18:25:17 +01:00
'1.6em' => 'Très petite (160%)',
'1.8em' => 'Petite (180%)',
'2em' => 'Moyenne (200%)',
'2.2em' => 'Grande (220%)',
'2.4vmax' => 'Très grande (240%)'
2018-04-02 08:29:19 +02:00
];
public static $headerHeights = [
'none' => 'Hauteur de l\'image sélectionnée',
2019-05-02 13:21:48 +02:00
'100px' => 'Très petite (100px) ',
'150px' => 'Petite (150px)',
'200px' => 'Moyenne (200px)',
'300px' => 'Grande (300px)',
'400px' => 'Très grande (400px)'
2018-04-02 08:29:19 +02:00
];
public static $headerPositions = [
'body' => 'Au dessus du site',
2018-04-02 08:29:19 +02:00
'site' => 'Dans le site',
'hide' => 'Cachée'
2018-04-02 08:29:19 +02:00
];
public static $imagePositions = [
'top left' => 'En haut à gauche',
'top center' => 'En haut au centre',
'top right' => 'En haut à droite',
'center left' => 'Au milieu à gauche',
'center center' => 'Au milieu au centre',
'center right' => 'Au milieu à droite',
'bottom left' => 'En bas à gauche',
'bottom center' => 'En bas au centre',
'bottom right' => 'En bas à droite'
];
public static $menuFontSizes = [
2019-03-20 18:25:17 +01:00
'.8em' => 'Très petite (80%)',
'.9em' => 'Petite (90%)',
2019-03-21 19:55:51 +01:00
'1em' => 'Standard (100%)',
2019-03-20 18:25:17 +01:00
'1.1em' => 'Moyenne (110%)',
'1.2em' => 'Grande (120%)',
'1.3em' => 'Très grande (130%)'
2018-04-02 08:29:19 +02:00
];
public static $menuHeights = [
2019-03-24 14:50:28 +01:00
'5px 10px' => 'Très petite',
'10px' => 'Petite',
'15px 10px' => 'Moyenne',
'20px 15px' => 'Grande',
'25px 15px' => 'Très grande'
2018-04-02 08:29:19 +02:00
];
2019-02-07 17:26:39 +01:00
public static $menuPositionsSite = [
2020-06-02 12:03:45 +02:00
'top' => 'En-dehors du site',
'site-first' => 'Avant la bannière',
'site-second' => 'Après la bannière',
'hide' => 'Caché'
2018-04-02 08:29:19 +02:00
];
public static $menuPositionsBody = [
'top' => 'En-dehors du site',
'body-first' => 'Avant la bannière',
'body-second' => 'Après la bannière',
2019-03-12 09:18:31 +01:00
'site' => 'Dans le site',
'hide' => 'Caché'
2020-06-02 12:03:45 +02:00
];
public static $menuRadius = [
'0px' => 'Aucun',
'3px 3px 0px 0px' => 'Très léger',
'6px 6px 0px 0px' => 'Léger',
'9px 9px 0px 0px' => 'Moyen',
'12px 12px 0px 0px' => 'Important',
'15px 15px 0px 0px' => 'Très important'
];
2018-04-02 08:29:19 +02:00
public static $radius = [
2019-06-01 13:07:38 +02:00
'0px' => 'Aucun',
2018-04-02 08:29:19 +02:00
'5px' => 'Très léger',
'10px' => 'Léger',
'15px' => 'Moyen',
'25px' => 'Important',
'50px' => 'Très important'
];
public static $repeats = [
'no-repeat' => 'Ne pas répéter',
'repeat-x' => 'Sur l\'axe horizontal',
'repeat-y' => 'Sur l\'axe vertical',
'repeat' => 'Sur les deux axes'
];
public static $shadows = [
2019-06-01 13:07:38 +02:00
'0px' => 'Aucune',
2018-04-02 08:29:19 +02:00
'1px 1px 5px' => 'Très légère',
'1px 1px 10px' => 'Légère',
'1px 1px 15px' => 'Moyenne',
'1px 1px 25px' => 'Importante',
'1px 1px 50px' => 'Très importante'
];
public static $siteFontSizes = [
2019-03-20 18:25:17 +01:00
'12px' => '12 pixels',
'13px' => '13 pixels',
'14px' => '14 pixels',
'15px' => '15 pixels',
'16px' => '16 pixels'
2018-04-02 08:29:19 +02:00
];
2020-01-31 11:24:00 +01:00
public static $bodySizes = [
2020-06-02 12:03:45 +02:00
'auto' => 'Automatique',
2020-01-31 11:24:00 +01:00
'100% 100%' => 'Image étirée (100% 100%)',
'cover' => 'Responsive (cover)',
'contain' => 'Responsive (contain)'
2018-04-02 08:29:19 +02:00
];
public static $textTransforms = [
'none' => 'Standard',
'lowercase' => 'Minuscules',
'uppercase' => 'Majuscules',
2020-06-02 12:03:45 +02:00
'capitalize' => 'Majuscule à chaque mot'
2018-04-02 08:29:19 +02:00
];
public static $widths = [
'750px' => 'Petite (750 pixels)',
'960px' => 'Moyenne (960 pixels)',
'1170px' => 'Grande (1170 pixels)',
'100%' => 'Fluide (100%)'
];
2020-06-02 12:03:45 +02:00
public static $headerWide = [
'auto auto' => 'Automatique',
'100% 100%' => 'Image étirée (100% 100%)',
'cover' => 'Responsive (cover)',
'contain' => 'Responsive (contain)'
2019-01-02 23:55:43 +01:00
];
2020-06-02 12:03:45 +02:00
public static $footerTemplate = [
'1' => 'Une seule colonne',
'2' => 'Deux colonnes : 1/2 - 1/2',
'3' => 'Trois colonnes : 1/3 - 1/3 - 1/3',
'4' => 'Trois lignes superposées'
2019-06-18 20:08:04 +02:00
];
2019-01-02 23:55:43 +01:00
/**
* Thème des écrans d'administration
*/
public function admin() {
// Soumission du formulaire
if($this->isPost()) {
$this->setData(['admin', [
2020-05-17 07:41:44 +02:00
'backgroundColor' => $this->getInput('adminBackgroundColor'),
'colorTitle' => $this->getInput('adminColorTitle'),
'colorText' => $this->getInput('adminColorText'),
'colorButtonText' => $this->getInput('adminColorButtonText'),
'backgroundColorButton' => $this->getInput('adminColorButton'),
'backgroundColorButtonGrey' => $this->getInput('adminColorGrey'),
'backgroundColorButtonRed' => $this->getInput('adminColorRed'),
'backgroundColorButtonGreen'=> $this->getInput('adminColorGreen'),
'fontText' => $this->getInput('adminFontText'),
'fontSize' => $this->getInput('adminFontTextSize'),
'fontTitle' => $this->getInput('adminFontTitle'),
'backgroundBlockColor' => $this->getInput('adminBackGroundBlockColor'),
'borderBlockColor' => $this->getInput('adminBorderBlockColor'),
]]);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme/admin',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Administration',
'view' => 'admin',
'vendor' => [
'tinycolorpicker'
],
2020-06-02 12:03:45 +02:00
]);
}
2018-04-02 08:29:19 +02:00
/**
* Mode avancé
*/
public function advanced() {
// Soumission du formulaire
if($this->isPost()) {
// Enregistre le CSS
file_put_contents(self::DATA_DIR.'custom.css', $this->getInput('themeAdvancedCss', null));
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme/advanced',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
2019-01-22 14:36:13 +01:00
'title' => 'Éditeur CSS',
2018-04-02 08:29:19 +02:00
'vendor' => [
'codemirror'
],
'view' => 'advanced'
]);
}
/**
* Options de l'arrière plan
*/
public function body() {
// Soumission du formulaire
if($this->isPost()) {
$this->setData(['theme', 'body', [
'backgroundColor' => $this->getInput('themeBodyBackgroundColor'),
'image' => $this->getInput('themeBodyImage'),
'imageAttachment' => $this->getInput('themeBodyImageAttachment'),
'imagePosition' => $this->getInput('themeBodyImagePosition'),
'imageRepeat' => $this->getInput('themeBodyImageRepeat'),
2020-02-13 10:48:56 +01:00
'imageSize' => $this->getInput('themeBodyImageSize'),
'toTopbackgroundColor' => $this->getInput('themeBodyToTopBackground'),
'toTopColor' => $this->getInput('themeBodyToTopColor')
2018-04-02 08:29:19 +02:00
]]);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Personnalisation de l\'arrière plan',
'vendor' => [
'tinycolorpicker'
],
'view' => 'body'
]);
}
/**
* Options du pied de page
*/
public function footer() {
// Soumission du formulaire
if($this->isPost()) {
2020-06-02 12:03:45 +02:00
if ( $this->getInput('themeFooterCopyrightPosition') === 'hide' &&
2019-06-22 08:23:09 +02:00
$this->getInput('themeFooterSocialsPosition') === 'hide' &&
$this->getInput('themeFooterTextPosition') === 'hide' ) {
// Valeurs en sortie
$this->addOutput([
2019-06-27 11:35:33 +02:00
'notification' => 'Sélectionnez au moins un contenu à afficher',
2019-06-22 08:23:09 +02:00
'redirect' => helper::baseUrl() . 'theme/footer',
'state' => false
]);
} else {
$this->setData(['theme', 'footer', [
'backgroundColor' => $this->getInput('themeFooterBackgroundColor'),
'copyrightAlign' => $this->getInput('themeFooterCopyrightAlign'),
'height' => $this->getInput('themeFooterHeight'),
'loginLink' => $this->getInput('themeFooterLoginLink'),
'margin' => $this->getInput('themeFooterMargin', helper::FILTER_BOOLEAN),
'position' => $this->getInput('themeFooterPosition'),
2020-02-02 19:14:57 +01:00
'fixed' => $this->getInput('themeFooterFixed', helper::FILTER_BOOLEAN),
2019-06-22 08:23:09 +02:00
'socialsAlign' => $this->getInput('themeFooterSocialsAlign'),
'text' => $this->getInput('themeFooterText', null),
'textAlign' => $this->getInput('themeFooterTextAlign'),
'textColor' => $this->getInput('themeFooterTextColor'),
'copyrightPosition' => $this->getInput('themeFooterCopyrightPosition'),
'textPosition' => $this->getInput('themeFooterTextPosition'),
'socialsPosition' => $this->getInput('themeFooterSocialsPosition'),
2020-06-02 12:03:45 +02:00
'textTransform' => $this->getInput('themeFooterTextTransform'),
2019-06-22 08:23:09 +02:00
'font' => $this->getInput('themeFooterFont'),
'fontSize' => $this->getInput('themeFooterFontSize'),
'fontWeight' => $this->getInput('themeFooterFontWeight'),
'displayVersion' => $this->getInput('themefooterDisplayVersion', helper::FILTER_BOOLEAN),
'displaySiteMap' => $this->getInput('themefooterDisplaySiteMap', helper::FILTER_BOOLEAN),
'displayCopyright' => $this->getInput('themefooterDisplayCopyright', helper::FILTER_BOOLEAN),
'displayLegal' => $this->getInput('themeFooterDisplayLegal', helper::FILTER_BOOLEAN),
'displaySearch' => $this->getInput('themeFooterDisplaySearch', helper::FILTER_BOOLEAN),
'displayMemberBar'=> $this->getInput('themeFooterDisplayMemberBar', helper::FILTER_BOOLEAN),
'template' => $this->getInput('themeFooterTemplate')
2019-06-22 08:23:09 +02:00
]]);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme',
'state' => true
]);
}
2018-04-02 08:29:19 +02:00
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Personnalisation du pied de page',
'vendor' => [
2019-06-18 20:08:04 +02:00
'tinycolorpicker',
'tinymce'
2018-04-02 08:29:19 +02:00
],
'view' => 'footer'
]);
}
/**
* Options de la bannière
*/
public function header() {
// Soumission du formulaire
if($this->isPost()) {
// Si une image est positionnée, l'arrière en transparent.
2018-04-02 08:29:19 +02:00
$this->setData(['theme', 'header', [
'backgroundColor' => $this->getInput('themeHeaderBackgroundColor'),
2020-06-02 12:03:45 +02:00
'textTransform' => $this->getInput('themeHeaderTextTransform'),
2018-04-02 08:29:19 +02:00
'font' => $this->getInput('themeHeaderFont'),
'fontSize' => $this->getInput('themeHeaderFontSize'),
'fontWeight' => $this->getInput('themeHeaderFontWeight'),
'height' => $this->getInput('themeHeaderHeight'),
'image' => $this->getInput('themeHeaderImage'),
'imagePosition' => $this->getInput('themeHeaderImagePosition'),
'imageRepeat' => $this->getInput('themeHeaderImageRepeat'),
'margin' => $this->getInput('themeHeaderMargin', helper::FILTER_BOOLEAN),
'position' => $this->getInput('themeHeaderPosition'),
'textAlign' => $this->getInput('themeHeaderTextAlign'),
'textColor' => $this->getInput('themeHeaderTextColor'),
2020-06-02 12:03:45 +02:00
'textHide' => $this->getInput('themeHeaderTextHide', helper::FILTER_BOOLEAN),
2019-11-09 19:03:03 +01:00
'linkHomePage' => $this->getInput('themeHeaderlinkHomePage',helper::FILTER_BOOLEAN),
'imageContainer' => $this->getInput('themeHeaderImageContainer')
2018-04-02 08:29:19 +02:00
]]);
2019-01-22 13:46:35 +01:00
// Modification de la position du menu selon la position de la bannière
2019-03-24 14:22:19 +01:00
switch ($this->getInput('themeHeaderPosition') &&
$this->getData(['theme','menu','position']) !== 'site' &&
$this->getData(['theme','menu','position']) !== 'top' ) {
2019-01-22 13:46:35 +01:00
case 'site' :
2020-06-02 12:03:45 +02:00
$position = str_replace ('body','site',$this->getData(['theme','menu','position']));
2019-01-22 13:46:35 +01:00
break;
case 'body' :
$position = str_replace ('site','body',$this->getData(['theme','menu','position']));
2019-01-22 13:46:35 +01:00
break;
default:
2020-06-02 12:03:45 +02:00
$position = $this->getData(['theme','menu','position']);
2019-01-22 13:46:35 +01:00
}
$this->setData(['theme', 'menu', [
'backgroundColor' => $this->getData(['theme', 'menu', 'backgroundColor']),
2020-06-02 12:03:45 +02:00
'font' => $this->getData(['theme', 'menu', 'font']),
'fontSize' => $this->getData(['theme', 'menu', 'fontSize']),
'fontWeight' => $this->getData(['theme', 'menu', 'fontWeight']),
'height' => $this->getData(['theme', 'menu', 'height']),
'loginLink' => $this->getData(['theme', 'menu', 'loginLink']),
'margin' => $this->getData(['theme', 'menu', 'margin']),
'position' => $position,
'textAlign' => $this->getData(['theme', 'menu', 'textAlign']),
'textColor' => $this->getData(['theme', 'menu', 'textColor']),
'textTransform' => $this->getData(['theme','menu','textTransform']),
'fixed' => $this->getData(['theme','menu','fixed']),
'activeColorAuto' => $this->getData(['theme','menu','activeColorAuto']),
'activeColor' => $this->getData(['theme','menu','activeColor']),
'radius' => $this->getData(['theme','menu','radius']),
'burgerTitle' => $this->getData(['theme','menu','burgerTitle'])
]]);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Personnalisation de la bannière',
'vendor' => [
'tinycolorpicker'
],
'view' => 'header'
]);
}
/**
* Accueil de la personnalisation
*/
public function index() {
// Valeurs en sortie
$this->addOutput([
2020-06-02 12:03:45 +02:00
'title' => 'Personnalisation des thèmes',
2018-04-02 08:29:19 +02:00
'view' => 'index'
]);
}
/**
* Options du menu
*/
public function menu() {
// Soumission du formulaire
if($this->isPost()) {
$this->setData(['theme', 'menu', [
'backgroundColor' => $this->getInput('themeMenuBackgroundColor'),
2020-06-02 12:03:45 +02:00
'font' => $this->getInput('themeMenuFont'),
2018-04-02 08:29:19 +02:00
'fontSize' => $this->getInput('themeMenuFontSize'),
'fontWeight' => $this->getInput('themeMenuFontWeight'),
'height' => $this->getInput('themeMenuHeight'),
2019-02-22 22:53:51 +01:00
'loginLink' => $this->getInput('themeMenuLoginLink', helper::FILTER_BOOLEAN),
2018-04-02 08:29:19 +02:00
'margin' => $this->getInput('themeMenuMargin', helper::FILTER_BOOLEAN),
'position' => $this->getInput('themeMenuPosition'),
'textAlign' => $this->getInput('themeMenuTextAlign'),
'textColor' => $this->getInput('themeMenuTextColor'),
2018-04-07 23:31:15 +02:00
'textTransform' => $this->getInput('themeMenuTextTransform'),
'fixed' => $this->getInput('themeMenuFixed', helper::FILTER_BOOLEAN),
'activeColorAuto' => $this->getInput('themeMenuActiveColorAuto', helper::FILTER_BOOLEAN),
'activeColor' => $this->getInput('themeMenuActiveColor'),
'activeTextColor' => $this->getInput('themeMenuActiveTextColor'),
'radius' => $this->getInput('themeMenuRadius'),
'burgerTitle' => $this->getInput('themeMenuBurgerTitle', helper::FILTER_BOOLEAN),
'memberBar' => $this->getInput('themeMenuMemberBar', helper::FILTER_BOOLEAN)
2018-04-02 08:29:19 +02:00
]]);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Personnalisation du menu',
'vendor' => [
'tinycolorpicker'
],
'view' => 'menu'
]);
}
/**
* Réinitialisation de la personnalisation avancée
*/
public function reset() {
// Supprime le fichier de personnalisation avancée
unlink(self::DATA_DIR.'custom.css');
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'notification' => 'Personnalisation avancée réinitialisée',
'redirect' => helper::baseUrl() . 'theme/advanced',
'state' => true
]);
}
/**
* Réinitialisation de la personnalisation avancée
*/
public function resetAdmin() {
// Supprime le fichier de personnalisation avancée
2020-05-17 07:41:44 +02:00
//unlink(self::DATA_DIR.'admin.json');
$this->initData('admin');
// Valeurs en sortie
$this->addOutput([
'notification' => 'Thème réinitialisé',
'redirect' => helper::baseUrl() . 'theme/admin',
'state' => true
]);
}
2018-04-02 08:29:19 +02:00
/**
* Options du site
*/
public function site() {
// Soumission du formulaire
if($this->isPost()) {
$this->setData(['theme', 'title', [
'font' => $this->getInput('themeTitleFont'),
'textColor' => $this->getInput('themeTitleTextColor'),
'fontWeight' => $this->getInput('themeTitleFontWeight'),
'textTransform' => $this->getInput('themeTitleTextTransform')
]]);
$this->setData(['theme', 'text', [
'font' => $this->getInput('themeTextFont'),
'fontSize' => $this->getInput('themeTextFontSize'),
'textColor' => $this->getInput('themeTextTextColor'),
2020-05-18 10:50:43 +02:00
'linkColor'=> $this->getInput('themeTextLinkColor')
2018-04-02 08:29:19 +02:00
]]);
$this->setData(['theme', 'site', [
'backgroundColor' => $this->getInput('themeSiteBackgroundColor'),
'radius' => $this->getInput('themeSiteRadius'),
'shadow' => $this->getInput('themeSiteShadow'),
'width' => $this->getInput('themeSiteWidth'),
2020-05-18 10:50:43 +02:00
'margin' => $this->getInput('themeSiteMargin',helper::FILTER_BOOLEAN)
]]);
2020-06-02 12:03:45 +02:00
$this->setData(['theme', 'button', [
2020-05-18 10:50:43 +02:00
'backgroundColor' => $this->getInput('themeButtonBackgroundColor')
]]);
2020-06-02 12:03:45 +02:00
$this->setData(['theme', 'block', [
2020-05-18 10:50:43 +02:00
'backgroundColor' => $this->getInput('themeBlockBackgroundColor'),
'borderColor' => $this->getInput('themeBlockBorderColor')
]]);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'theme',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Personnalisation du site',
'vendor' => [
2019-01-02 23:55:43 +01:00
'tinycolorpicker',
'tinymce'
2018-04-02 08:29:19 +02:00
],
'view' => 'site'
]);
}
2018-12-25 16:24:20 +01:00
/**
* Import du thème
*/
public function manage() {
2018-12-27 20:06:03 +01:00
if($this->isPost() ) {
2018-12-28 17:13:26 +01:00
$zipFilename = $this->getInput('themeManageImport', helper::FILTER_STRING_SHORT, true);
2018-12-28 22:38:32 +01:00
2018-12-28 17:13:26 +01:00
$zip = new ZipArchive();
if ($zip->open(self::FILE_DIR.'source/'.$zipFilename) === TRUE) {
2018-12-28 22:38:32 +01:00
$zip->extractTo('.');
2018-12-28 17:13:26 +01:00
$zip->close();
2018-12-28 22:38:32 +01:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . 'theme'
2018-12-28 22:38:32 +01:00
]);
2018-12-29 17:49:48 +01:00
} else {
$this->addOutput([
2019-01-24 09:31:40 +01:00
'notification' => 'Erreur avec le thème <b>'.$zipFilename.'</b>',
2018-12-29 17:49:48 +01:00
'redirect' => helper::baseUrl() . 'theme/manage'
]);
}
2018-12-27 20:06:03 +01:00
}
2020-06-02 12:03:45 +02:00
2018-12-25 18:38:17 +01:00
// Valeurs en sortie
$this->addOutput([
'title' => 'Gestion des thèmes',
'view' => 'manage'
]);
2020-06-02 12:03:45 +02:00
2018-12-25 18:38:17 +01:00
}
2020-06-02 12:03:45 +02:00
2018-12-25 16:24:20 +01:00
/**
* Export du thème
*/
2018-12-25 18:38:17 +01:00
public function export() {
// Make zip
2020-06-02 12:03:45 +02:00
$zipFilename = $this->makezip($this->getUrl(2));
2018-12-28 16:52:58 +01:00
// Téléchargement du ZIP
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
header('Content-Disposition: attachment; filename="' . $zipFilename . '"');
header('Content-Length: ' . filesize(self::TEMP_DIR . $zipFilename));
readfile(self::TEMP_DIR . $zipFilename);
2018-12-28 16:52:58 +01:00
// Nettoyage du dossier
unlink (self::TEMP_DIR . $zipFilename);
die();
2018-12-28 16:52:58 +01:00
}
/**
* Export du thème
*/
public function save() {
// Make zip
2020-05-18 18:26:21 +02:00
$zipFilename = $this->makezip($this->getUrl(2));
// Téléchargement du ZIP
if (!is_dir(self::FILE_DIR.'source/theme')) {
mkdir(self::FILE_DIR.'source/theme');
}
copy (self::TEMP_DIR . $zipFilename , self::FILE_DIR.'source/theme/' . $zipFilename);
// Nettoyage du dossier
unlink (self::TEMP_DIR . $zipFilename);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Archive <b>'.$zipFilename.'</b> sauvegardée avec succès',
'redirect' => helper::baseUrl() . 'theme/manage',
'state' => true
]);
}
/**
* construction du zip
2020-05-18 18:26:21 +02:00
* @param string $modele theme ou admin
*/
2020-05-18 18:26:21 +02:00
public function makezip($modele) {
2018-12-26 12:00:30 +01:00
// Creation du dossier
2020-05-18 18:26:21 +02:00
$zipFilename = $modele . ' ' .date('d m Y').' '.date('H i s ').'.zip';
$zip = new ZipArchive();
if ($zip->open(self::TEMP_DIR . $zipFilename, ZipArchive::CREATE | ZipArchive::OVERWRITE ) === TRUE) {
2020-05-18 18:26:21 +02:00
switch ($modele) {
case 'admin':
$zip->addFile(self::DATA_DIR.'admin.json',self::DATA_DIR.'admin.json');
$zip->addFile(self::DATA_DIR.'admin.css',self::DATA_DIR.'admin.css');
break;
case 'theme':
$zip->addFile(self::DATA_DIR.'theme.json',self::DATA_DIR.'theme.json');
$zip->addFile(self::DATA_DIR.'theme.css',self::DATA_DIR.'theme.css');
2020-06-02 12:03:45 +02:00
$zip->addFile(self::DATA_DIR.'custom.css',self::DATA_DIR.'custom.css');
2020-05-18 18:26:21 +02:00
if ($this->getData(['theme','body','image']) !== '' ) {
$zip->addFile(self::FILE_DIR.'source/'.$this->getData(['theme','body','image']),
self::FILE_DIR.'source/'.$this->getData(['theme','body','image'])
);
}
2020-06-02 12:03:45 +02:00
if ($this->getData(['theme','header','image']) !== '' ) {
2020-05-18 18:26:21 +02:00
$zip->addFile(self::FILE_DIR.'source/'.$this->getData(['theme','header','image']),
self::FILE_DIR.'source/'.$this->getData(['theme','header','image'])
);
}
break;
}
2018-12-28 15:03:23 +01:00
$ret = $zip->close();
}
return ($zipFilename);
}
2019-05-02 13:21:48 +02:00
}