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
2019-01-22 21:56:38 +01:00
* @ author Frédéric Tempez < frederic . tempez @ outlook . com >
* @ copyright Copyright ( C ) 2018 - 2019 , Frédéric Tempez
2018-04-02 08:29:19 +02:00
* @ link http :// zwiicms . com /
*/
class common {
const DISPLAY_RAW = 0 ;
const DISPLAY_JSON = 1 ;
const DISPLAY_LAYOUT_BLANK = 2 ;
const DISPLAY_LAYOUT_MAIN = 3 ;
const DISPLAY_LAYOUT_LIGHT = 4 ;
const GROUP_BANNED = - 1 ;
const GROUP_VISITOR = 0 ;
const GROUP_MEMBER = 1 ;
const GROUP_MODERATOR = 2 ;
const GROUP_ADMIN = 3 ;
2019-05-28 09:04:10 +02:00
const BACKUP_DIR = 'site/backup/' ;
const DATA_DIR = 'site/data/' ;
const FILE_DIR = 'site/file/' ;
const TEMP_DIR = 'site/tmp/' ;
2019-03-22 19:04:51 +01:00
2019-05-02 13:21:48 +02:00
// Numéro de version
2019-07-31 17:47:26 +02:00
const ZWII_VERSION = '9.2.03' ;
2018-04-02 08:29:19 +02:00
public static $actions = [];
public static $coreModuleIds = [
'config' ,
'install' ,
'maintenance' ,
'page' ,
2019-07-04 12:38:23 +02:00
'search' ,
2018-04-02 08:29:19 +02:00
'sitemap' ,
'theme' ,
2019-07-04 12:38:23 +02:00
'user'
2018-04-02 08:29:19 +02:00
];
private $data = [];
private $hierarchy = [
'all' => [],
2019-01-30 19:38:17 +01:00
'visible' => [],
'bar' => []
2018-04-02 08:29:19 +02:00
];
private $input = [
'_COOKIE' => [],
'_POST' => []
];
public static $inputBefore = [];
public static $inputNotices = [];
public $output = [
'access' => true ,
'content' => '' ,
2019-05-02 13:21:48 +02:00
'contentLeft' => '' ,
'contentRight' => '' ,
2018-04-02 08:29:19 +02:00
'display' => self :: DISPLAY_LAYOUT_MAIN ,
'metaDescription' => '' ,
'metaTitle' => '' ,
'notification' => '' ,
'redirect' => '' ,
'script' => '' ,
'showBarEditButton' => false ,
'showPageContent' => false ,
'state' => false ,
'style' => '' ,
'title' => null , // Null car un titre peut être vide
// Trié par ordre d'exécution
'vendor' => [
'jquery' ,
'normalize' ,
'lity' ,
'filemanager' ,
2018-11-28 14:12:33 +01:00
'flatpickr' ,
2018-04-02 08:29:19 +02:00
// 'tinycolorpicker', Désactivé par défaut
// 'tinymce', Désactivé par défaut
// 'codemirror', // Désactivé par défaut
'tippy' ,
2019-03-11 11:36:23 +01:00
'zwiico' ,
2019-03-21 11:18:45 +01:00
'imagemap' ,
2019-05-02 13:21:48 +02:00
'simplelightbox' ,
'swiper'
2018-04-02 08:29:19 +02:00
],
'view' => ''
];
public static $groups = [
self :: GROUP_BANNED => 'Banni' ,
self :: GROUP_VISITOR => 'Visiteur' ,
self :: GROUP_MEMBER => 'Membre' ,
2019-01-11 19:42:35 +01:00
self :: GROUP_MODERATOR => 'Éditeur' ,
2018-04-02 08:29:19 +02:00
self :: GROUP_ADMIN => 'Administrateur'
];
public static $groupEdits = [
self :: GROUP_BANNED => 'Banni' ,
self :: GROUP_MEMBER => 'Membre' ,
2019-01-11 19:42:35 +01:00
self :: GROUP_MODERATOR => 'Éditeur' ,
2018-04-02 08:29:19 +02:00
self :: GROUP_ADMIN => 'Administrateur'
];
public static $groupNews = [
self :: GROUP_MEMBER => 'Membre' ,
2019-01-11 19:42:35 +01:00
self :: GROUP_MODERATOR => 'Éditeur' ,
2018-04-02 08:29:19 +02:00
self :: GROUP_ADMIN => 'Administrateur'
];
public static $groupPublics = [
self :: GROUP_VISITOR => 'Visiteur' ,
self :: GROUP_MEMBER => 'Membre' ,
2019-01-11 19:42:35 +01:00
self :: GROUP_MODERATOR => 'Éditeur' ,
2018-04-02 08:29:19 +02:00
self :: GROUP_ADMIN => 'Administrateur'
];
public static $timezone ;
private $url = '' ;
private $user = [];
/**
* Constructeur commun
*/
public function __construct () {
// Extraction des données http
if ( isset ( $_POST )) {
$this -> input [ '_POST' ] = $_POST ;
}
if ( isset ( $_COOKIE )) {
$this -> input [ '_COOKIE' ] = $_COOKIE ;
}
2019-01-24 20:44:53 +01:00
2019-01-26 22:55:16 +01:00
// Import des données d'une version 8
$this -> importData ();
2019-01-24 21:25:12 +01:00
2018-12-24 19:48:14 +01:00
// Génère le fichier de données lorque les deux fichiers sont absents ou seulement le thème est - installation fraîche par défaut
2019-05-28 09:04:10 +02:00
if ( file_exists ( self :: DATA_DIR . 'core.json' ) === false OR
file_exists ( self :: DATA_DIR . 'theme.json' ) === false ) {
2019-03-22 19:04:51 +01:00
include_once ( 'core/module/install/ressource/defaultdata.php' );
$this -> setData ([ install :: $defaultData ]);
2018-04-02 08:29:19 +02:00
$this -> saveData ();
2019-05-28 09:04:10 +02:00
chmod ( self :: DATA_DIR . 'core.json' , 0755 );
chmod ( self :: DATA_DIR . 'theme.json' , 0755 );
2018-12-24 19:48:14 +01:00
}
2019-01-26 22:55:16 +01:00
// Import des données d'un fichier data.json déjà présent
2019-01-26 22:45:04 +01:00
if ( $this -> data === []) {
$this -> readData ();
}
2019-02-12 15:42:31 +01:00
// Mise à jour des données core
2019-03-20 07:45:16 +01:00
$this -> update ();
2019-02-12 15:42:31 +01:00
2018-04-02 08:29:19 +02:00
// Utilisateur connecté
if ( $this -> user === []) {
$this -> user = $this -> getData ([ 'user' , $this -> getInput ( 'ZWII_USER_ID' )]);
}
// Construit la liste des pages parents/enfants
if ( $this -> hierarchy [ 'all' ] === []) {
$pages = helper :: arrayCollumn ( $this -> getData ([ 'page' ]), 'position' , 'SORT_ASC' );
// Parents
foreach ( $pages as $pageId => $pagePosition ) {
if (
// Page parent
$this -> getData ([ 'page' , $pageId , 'parentPageId' ]) === " "
// Ignore les pages dont l'utilisateur n'a pas accès
AND (
$this -> getData ([ 'page' , $pageId , 'group' ]) === self :: GROUP_VISITOR
OR (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) >= $this -> getData ([ 'page' , $pageId , 'group' ])
)
)
) {
if ( $pagePosition !== 0 ) {
$this -> hierarchy [ 'visible' ][ $pageId ] = [];
}
2019-01-30 19:38:17 +01:00
if ( $this -> getData ([ 'page' , $pageId , 'block' ]) === 'bar' ) {
$this -> hierarchy [ 'bar' ][ $pageId ] = [];
}
2018-04-02 08:29:19 +02:00
$this -> hierarchy [ 'all' ][ $pageId ] = [];
}
}
// Enfants
foreach ( $pages as $pageId => $pagePosition ) {
if (
// Page parent
$parentId = $this -> getData ([ 'page' , $pageId , 'parentPageId' ])
// Ignore les pages dont l'utilisateur n'a pas accès
AND (
(
$this -> getData ([ 'page' , $pageId , 'group' ]) === self :: GROUP_VISITOR
AND $this -> getData ([ 'page' , $parentId , 'group' ]) === self :: GROUP_VISITOR
)
OR (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) >= $this -> getData ([ 'page' , $parentId , 'group' ])
AND $this -> getUser ( 'group' ) >= $this -> getData ([ 'page' , $pageId , 'group' ])
)
)
) {
if ( $pagePosition !== 0 ) {
$this -> hierarchy [ 'visible' ][ $parentId ][] = $pageId ;
}
2019-01-30 19:38:17 +01:00
if ( $this -> getData ([ 'page' , $pageId , 'block' ]) === 'bar' ) {
$this -> hierarchy [ 'bar' ][ $pageId ] = [];
}
2018-04-02 08:29:19 +02:00
$this -> hierarchy [ 'all' ][ $parentId ][] = $pageId ;
}
}
}
// Construit l'url
if ( $this -> url === '' ) {
if ( $url = $_SERVER [ 'QUERY_STRING' ]) {
$this -> url = $url ;
}
else {
$this -> url = $this -> getData ([ 'config' , 'homePageId' ]);
}
}
}
2019-01-23 03:34:11 +01:00
/**
* Lecture des fichiers de données
*
*/
2018-12-29 17:49:48 +01:00
public function readData () {
2018-12-30 18:33:37 +01:00
// Trois tentatives
for ( $i = 0 ; $i < 3 ; $i ++ ) {
2019-05-28 09:04:10 +02:00
$this -> setData ([ json_decode ( file_get_contents ( self :: DATA_DIR . 'core.json' ), true ) + json_decode ( file_get_contents ( self :: DATA_DIR . 'theme.json' ), true )]);
2018-12-30 18:33:37 +01:00
if ( $this -> data ) {
break ;
2018-12-29 17:49:48 +01:00
}
2018-12-30 18:33:37 +01:00
elseif ( $i === 2 ) {
exit ( 'Unable to read data file.' );
}
// Pause de 10 millisecondes
usleep ( 10000 );
2018-12-29 17:49:48 +01:00
}
}
2018-12-24 19:48:14 +01:00
/**
2019-01-23 03:34:11 +01:00
* Import des données de la version 8
2018-12-24 22:25:28 +01:00
* Converti un fichier de données data . json puis le renomme
2018-12-24 19:48:14 +01:00
*/
public function importData () {
2019-05-28 09:04:10 +02:00
if ( file_exists ( self :: DATA_DIR . 'data.json' )) {
2018-12-24 19:48:14 +01:00
// Trois tentatives
for ( $i = 0 ; $i < 3 ; $i ++ ) {
2019-05-28 09:04:10 +02:00
$tempData = [ json_decode ( file_get_contents ( self :: DATA_DIR . 'data.json' ), true )];
2018-12-24 19:48:14 +01:00
if ( $tempData ) {
for ( $i = 0 ; $i < 3 ; $i ++ ) {
2019-05-28 09:04:10 +02:00
if ( file_put_contents ( self :: DATA_DIR . 'core.json' , json_encode ( array_slice ( $tempData [ 0 ], 0 , 5 )), LOCK_EX ) !== false ) {
2018-12-24 19:48:14 +01:00
break ;
}
// Pause de 10 millisecondes
usleep ( 10000 );
}
2018-12-24 22:25:28 +01:00
for ( $i = 0 ; $i < 3 ; $i ++ ) {
2019-05-28 09:04:10 +02:00
if ( file_put_contents ( self :: DATA_DIR . 'theme.json' , json_encode ( array_slice ( $tempData [ 0 ], 5 )), LOCK_EX ) !== false ) {
2018-12-24 22:25:28 +01:00
break ;
}
// Pause de 10 millisecondes
usleep ( 10000 );
}
2019-05-28 09:04:10 +02:00
rename ( self :: DATA_DIR . 'data.json' , self :: DATA_DIR . 'imported_data.json' );
2018-12-24 19:48:14 +01:00
break ;
}
elseif ( $i === 2 ) {
exit ( 'Unable to read data file.' );
}
// Pause de 10 millisecondes
usleep ( 10000 );
}
}
}
2018-04-02 08:29:19 +02:00
/**
* Ajoute les valeurs en sortie
* @ param array $output Valeurs en sortie
*/
public function addOutput ( $output ) {
$this -> output = array_merge ( $this -> output , $output );
}
/**
* Ajoute une notice de champ obligatoire
* @ param string $key Clef du champ
*/
public function addRequiredInputNotices ( $key ) {
// La clef est un tableau
if ( preg_match ( '#\[(.*)\]#' , $key , $secondKey )) {
$firstKey = explode ( '[' , $key )[ 0 ];
$secondKey = $secondKey [ 1 ];
if ( empty ( $this -> input [ '_POST' ][ $firstKey ][ $secondKey ])) {
common :: $inputNotices [ $firstKey . '_' . $secondKey ] = 'Obligatoire' ;
}
}
// La clef est une chaine
elseif ( empty ( $this -> input [ '_POST' ][ $key ])) {
common :: $inputNotices [ $key ] = 'Obligatoire' ;
}
}
/**
* Check du token CSRF ( true = bo
*/
public function checkCSRF () {
return (( empty ( $_POST [ 'csrf' ]) OR hash_equals ( $_SESSION [ 'csrf' ], $_POST [ 'csrf' ]) === false ) === false );
}
/**
* Supprime des données
* @ param array $keys Clé ( s ) des données
*/
public function deleteData ( $keys ) {
switch ( count ( $keys )) {
case 1 :
unset ( $this -> data [ $keys [ 0 ]]);
break ;
case 2 :
unset ( $this -> data [ $keys [ 0 ]][ $keys [ 1 ]]);
break ;
case 3 :
unset ( $this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]]);
break ;
case 4 :
unset ( $this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]]);
break ;
case 5 :
unset ( $this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]][ $keys [ 4 ]]);
break ;
case 6 :
unset ( $this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]][ $keys [ 4 ]][ $keys [ 5 ]]);
break ;
case 7 :
unset ( $this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]][ $keys [ 4 ]][ $keys [ 5 ]][ $keys [ 6 ]]);
break ;
}
}
2018-11-19 10:46:38 +01:00
2018-10-24 22:48:10 +02:00
/**
2018-11-13 13:27:37 +01:00
* Récupérer une copie d 'écran du site Web pour le tag image si le fichier n' existe pas
2018-10-24 22:48:10 +02:00
* En local , copie du site décran de ZwiiCMS
2018-11-19 10:46:38 +01:00
*/
2018-10-24 22:48:10 +02:00
public function makeImageTag () {
2019-05-28 09:04:10 +02:00
if ( ! file_exists ( self :: FILE_DIR . 'source/screenshot.png' ))
2018-11-19 10:46:38 +01:00
{
if ( strpos ( helper :: baseUrl ( false ), 'localhost' ) == 0 AND strpos ( helper :: baseUrl ( false ), '127.0.0.1' ) == 0 ) {
2019-06-18 10:13:09 +02:00
$googlePagespeedData = @ file_get_contents ( 'https://www.googleapis.com/pagespeedonline/v2/runPagespeed?url=' . helper :: baseUrl ( false ) . '&screenshot=true' );
if ( $googlePagespeedData !== false ) {
$googlePagespeedData = json_decode ( $googlePagespeedData , true );
$screenshot = $googlePagespeedData [ 'screenshot' ][ 'data' ];
$screenshot = str_replace ( array ( '_' , '-' ), array ( '/' , '+' ), $screenshot );
$data = 'data:image/jpeg;base64,' . $screenshot ;
$data = base64_decode ( preg_replace ( '#^data:image/\w+;base64,#i' , '' , $data ));
file_put_contents ( self :: FILE_DIR . 'source/screenshot.png' , $data );
}
2018-11-19 10:46:38 +01:00
}
2018-10-24 22:48:10 +02:00
}
}
2018-11-19 10:50:18 +01:00
2018-10-24 22:48:10 +02:00
2018-11-19 10:46:38 +01:00
2018-04-02 08:29:19 +02:00
/**
* Accède aux données
* @ param array $keys Clé ( s ) des données
* @ return mixed
*/
public function getData ( $keys = null ) {
// Retourne l'ensemble des données
if ( $keys === null ) {
return $this -> data ;
}
// Décent dans les niveaux de la variable $data
$data = $this -> data ;
foreach ( $keys as $key ) {
// Si aucune donnée n'existe retourne null
if ( isset ( $data [ $key ]) === false ) {
return null ;
}
// Sinon décent dans les niveaux
else {
$data = $data [ $key ];
}
}
// Retourne les données
return $data ;
}
/**
2019-02-10 13:07:43 +01:00
* Accède à la liste des pages parents et de leurs enfants
2018-04-02 08:29:19 +02:00
* @ param int $parentId Id de la page parent
* @ param bool $onlyVisible Affiche seulement les pages visibles
2019-02-10 13:07:43 +01:00
* @ param bool $onlyBlock Affiche seulement les pages de type barre
2018-04-02 08:29:19 +02:00
* @ return array
*/
2019-01-30 19:38:17 +01:00
public function getHierarchy ( $parentId = null , $onlyVisible = true , $onlyBlock = false ) {
2018-04-02 08:29:19 +02:00
$hierarchy = $onlyVisible ? $this -> hierarchy [ 'visible' ] : $this -> hierarchy [ 'all' ];
2019-01-30 19:38:17 +01:00
$hierarchy = $onlyBlock ? $this -> hierarchy [ 'bar' ] : $hierarchy ;
2018-04-02 08:29:19 +02:00
// Enfants d'un parent
if ( $parentId ) {
if ( array_key_exists ( $parentId , $hierarchy )) {
return $hierarchy [ $parentId ];
}
else {
return [];
}
}
// Parents et leurs enfants
else {
return $hierarchy ;
}
}
/**
* Accède à une valeur des variables http ( ordre de recherche en l ' absence de type : _COOKIE , _POST )
* @ param string $key Clé de la valeur
* @ param int $filter Filtre à appliquer à la valeur
* @ param bool $required Champ requis
* @ return mixed
*/
public function getInput ( $key , $filter = helper :: FILTER_STRING_SHORT , $required = false ) {
// La clef est un tableau
if ( preg_match ( '#\[(.*)\]#' , $key , $secondKey )) {
$firstKey = explode ( '[' , $key )[ 0 ];
$secondKey = $secondKey [ 1 ];
foreach ( $this -> input as $type => $values ) {
// Champ obligatoire
if ( $required ) {
$this -> addRequiredInputNotices ( $key );
}
// Check de l'existence
// Également utile pour les checkboxs qui ne retournent rien lorsqu'elles ne sont pas cochées
if (
array_key_exists ( $firstKey , $values )
AND array_key_exists ( $secondKey , $values [ $firstKey ])
) {
// Retourne la valeur filtrée
if ( $filter ) {
return helper :: filter ( $this -> input [ $type ][ $firstKey ][ $secondKey ], $filter );
}
// Retourne la valeur
else {
return $this -> input [ $type ][ $firstKey ][ $secondKey ];
}
}
}
}
// La clef est une chaine
else {
foreach ( $this -> input as $type => $values ) {
// Champ obligatoire
if ( $required ) {
$this -> addRequiredInputNotices ( $key );
}
// Check de l'existence
// Également utile pour les checkboxs qui ne retournent rien lorsqu'elles ne sont pas cochées
if ( array_key_exists ( $key , $values )) {
// Retourne la valeur filtrée
if ( $filter ) {
return helper :: filter ( $this -> input [ $type ][ $key ], $filter );
}
// Retourne la valeur
else {
return $this -> input [ $type ][ $key ];
}
}
}
}
// Sinon retourne null
return helper :: filter ( null , $filter );
}
/**
* Accède à une partie l 'url ou à l' url complète
* @ param int $key Clé de l ' url
* @ return string | null
*/
public function getUrl ( $key = null ) {
// Url complète
if ( $key === null ) {
return $this -> url ;
}
// Une partie de l'url
else {
$url = explode ( '/' , $this -> url );
return array_key_exists ( $key , $url ) ? $url [ $key ] : null ;
}
}
/**
* Accède à l ' utilisateur connecté
* @ param int $key Clé de la valeur
* @ return string | null
*/
public function getUser ( $key ) {
if ( is_array ( $this -> user ) === false ) {
return false ;
}
elseif ( $key === 'id' ) {
return $this -> getInput ( 'ZWII_USER_ID' );
}
elseif ( array_key_exists ( $key , $this -> user )) {
return $this -> user [ $key ];
}
else {
return false ;
}
}
/**
* Check qu ' une valeur est transmise par la méthode _POST
* @ return bool
*/
public function isPost () {
return ( $this -> checkCSRF () AND $this -> input [ '_POST' ] !== []);
}
/**
2019-01-23 03:34:11 +01:00
* Enregistre les données dans deux fichiers séparés
2018-04-02 08:29:19 +02:00
*/
public function saveData () {
2018-12-23 23:37:17 +01:00
// Save config core page module et user
// 5 premières clés principales
2018-04-02 08:29:19 +02:00
// Trois tentatives
for ( $i = 0 ; $i < 3 ; $i ++ ) {
2019-05-28 09:04:10 +02:00
if ( file_put_contents ( self :: DATA_DIR . 'core.json' , json_encode ( array_slice ( $this -> getData (), 0 , 5 )) , LOCK_EX ) !== false ) {
2018-12-23 23:37:17 +01:00
break ;
}
// Pause de 10 millisecondes
usleep ( 10000 );
}
// Save theme
// dernière clé principale
// Trois tentatives
for ( $i = 0 ; $i < 3 ; $i ++ ) {
2019-05-28 09:04:10 +02:00
if ( file_put_contents ( self :: DATA_DIR . 'theme.json' , json_encode ( array_slice ( $this -> getData (), 5 )), LOCK_EX ) !== false ) {
2018-04-02 08:29:19 +02:00
break ;
}
// Pause de 10 millisecondes
usleep ( 10000 );
}
}
2019-03-13 17:11:04 +01:00
/**
2019-05-02 13:21:48 +02:00
* Génére un fichier json avec la liste des pages
*
2019-07-04 19:54:51 +02:00
*/
public function pages2Json () {
// Sauve la liste des pages pour TinyMCE
2019-03-14 19:04:03 +01:00
$parents = [];
2019-07-04 19:54:51 +02:00
$rewrite = ( helper :: checkRewrite ()) ? '' : '?' ;
// Boucle de recherche des pages actives
2019-03-14 19:04:03 +01:00
foreach ( $this -> getHierarchy ( null , false , false ) as $parentId => $childIds ) {
$children = [];
// Exclure les barres
if ( $this -> getData ([ 'page' , $parentId , 'block' ]) !== 'bar' ) {
2019-04-23 19:24:03 +02:00
// Boucler sur les enfants et récupérer le tableau children avec la liste des enfants
foreach ( $childIds as $childId ) {
$children [] = [ 'title' => ' » ' . $this -> getData ([ 'page' , $childId , 'title' ]) ,
2019-03-14 19:04:03 +01:00
'value' => $rewrite . $childId
2019-04-23 19:24:03 +02:00
];
2019-03-13 17:11:04 +01:00
}
2019-04-23 19:24:03 +02:00
// Traitement
if ( empty ( $childIds )) {
// Pas d'enfant, uniuement l'entrée du parent
$parents [] = [ 'title' => $this -> getData ([ 'page' , $parentId , 'title' ]) ,
'value' => $rewrite . $parentId
];
} else {
// Des enfants, on ajoute la page parent en premier
array_unshift ( $children , [ 'title' => $this -> getData ([ 'page' , $parentId , 'title' ]) ,
'value' => $rewrite . $parentId
]);
// puis on ajoute les enfants au parent
$parents [] = [ 'title' => $this -> getData ([ 'page' , $parentId , 'title' ]) ,
'value' => $rewrite . $parentId ,
'menu' => $children
];
}
2019-03-14 19:04:03 +01:00
}
}
2019-07-04 23:52:21 +02:00
// Sitemap et Search
$children = [];
$children [] = [ 'title' => 'Rechercher dans le site' ,
'value' => $rewrite . 'search'
];
$children [] = [ 'title' => 'Plan du site' ,
'value' => $rewrite . 'sitemap'
];
$parents [] = [ 'title' => 'Pages spéciales' ,
'value' => '#' ,
'menu' => $children
];
2019-03-14 19:04:03 +01:00
2019-07-04 23:52:21 +02:00
// Enregistrement : 3 tentatives
2019-03-14 19:04:03 +01:00
for ( $i = 0 ; $i < 3 ; $i ++ ) {
if ( file_put_contents ( 'core/vendor/tinymce/link_list.json' , json_encode ( $parents ), LOCK_EX ) !== false ) {
break ;
}
// Pause de 10 millisecondes
usleep ( 10000 );
}
2019-03-13 17:11:04 +01:00
}
2019-05-02 13:21:48 +02:00
/**
* Génére un fichier robots . txt à l ' installation
* Si le fichier exite déjà les commandes sont ajoutées
*/
public function createRobots () {
$robotValue =
PHP_EOL .
'# ZWII CONFIG ---------' . PHP_EOL .
'User-agent: *' . PHP_EOL .
'Disallow: /core/' . PHP_EOL .
'Disallow: /module/' . PHP_EOL .
'Disallow: /site/data' . PHP_EOL .
'Disallow: /site/tmp' . PHP_EOL .
'Disallow: /site/backup' . PHP_EOL .
'Allow: /site/file/' . PHP_EOL .
2019-06-15 18:27:00 +02:00
'Sitemap: ' . helper :: baseUrl ( false ) . 'sitemap.xml' . PHP_EOL .
'Sitemap: ' . helper :: baseUrl ( false ) . 'sitemap.xml.gz' . PHP_EOL .
2019-05-02 13:21:48 +02:00
'# ZWII CONFIG ---------' . PHP_EOL ;
if ( file_exists ( 'robots.txt' )) {
return ( file_put_contents (
'robots.txt' ,
$robotValue ,
FILE_APPEND
));
} else {
// Sinon on crée un fichier
return ( file_put_contents (
'robots.txt' ,
$robotValue
));
}
}
/**
* Génére un fichier un fchier sitemap . xml
* https :// github . com / icamys / php - sitemap - generator
* $command valeurs possible
* all : génére un site map complet
* Sinon contient id de la page à créer
*/
public function createSitemap ( $command = " all " ) {
require_once " core/vendor/sitemap/SitemapGenerator.php " ;
2019-06-13 14:01:43 +02:00
$timezone = $this -> getData ([ 'config' , 'timezone' ]);
2019-05-02 13:21:48 +02:00
$sitemap = new \Icamys\SitemapGenerator\SitemapGenerator ( helper :: baseurl ());
// will create also compressed (gzipped) sitemap
$sitemap -> createGZipFile = true ;
// determine how many urls should be put into one file
// according to standard protocol 50000 is maximum value (see http://www.sitemaps.org/protocol.html)
$sitemap -> maxURLsPerSitemap = 50000 ;
// sitemap file name
$sitemap -> sitemapFileName = " sitemap.xml " ;
$datetime = new DateTime ( date ( 'c' ));
$datetime -> format ( DateTime :: ATOM ); // Updated ISO8601
// sitemap index file name
$sitemap -> sitemapIndexFileName = " sitemap-index.xml " ;
2019-06-10 15:48:43 +02:00
foreach ( $this -> getHierarchy ( null , null , null ) as $parentPageId => $childrenPageIds ) {
2019-06-08 21:30:12 +02:00
// Exclure les barres et les pages non publiques et les pages masquées
2019-06-13 14:01:43 +02:00
if ( $this -> getData ([ 'page' , $parentPageId , 'group' ]) !== 0 ||
$this -> getData ([ 'page' , $parentPageId , 'block' ]) === 'bar' ) {
2019-05-07 18:36:05 +02:00
continue ;
}
2019-06-18 16:25:39 +02:00
// Page désactivée, traiter les sous-pages sans prendre en compte la page parente.
if ( $this -> getData ([ 'page' , $parentPageId , 'disable' ]) !== true ) {
$sitemap -> addUrl ( $parentPageId , $datetime );
}
2019-06-09 15:24:43 +02:00
// Sous-pages
2019-05-02 13:21:48 +02:00
foreach ( $childrenPageIds as $childKey ) {
2019-06-08 21:30:12 +02:00
if ( $this -> getData ([ 'page' , $childKey , 'group' ]) !== 0 || $this -> getData ([ 'page' , $childKey , 'disable' ]) === true ) {
continue ;
}
2019-05-02 13:21:48 +02:00
$sitemap -> addUrl ( $childKey , $datetime );
2019-06-09 15:24:43 +02:00
// La sous-page est un blog
2019-06-20 20:26:08 +02:00
if ( $this -> getData ([ 'page' , $childKey , 'moduleId' ]) === 'blog' &&
! empty ( $this -> getData ([ 'module' , $childKey ])) ) {
2019-06-10 16:21:41 +02:00
foreach ( $this -> getData ([ 'module' , $childKey ]) as $articleId => $article ) {
if ( $this -> getData ([ 'module' , $childKey , $articleId , 'state' ]) === true ) {
2019-06-13 14:01:43 +02:00
$date = $this -> getData ([ 'module' , $childKey , $articleId , 'publishedOn' ]);
2019-06-16 17:54:41 +02:00
$sitemap -> addUrl ( $childKey . '/' . $articleId , new DateTime ( " @ { $date } " , new DateTimeZone ( $timezone )));
2019-06-10 16:21:41 +02:00
}
2019-06-09 18:36:57 +02:00
}
}
2019-06-09 15:24:43 +02:00
}
// Articles du blog
2019-06-20 20:26:08 +02:00
if ( $this -> getData ([ 'page' , $parentPageId , 'moduleId' ]) === 'blog' &&
! empty ( $this -> getData ([ 'module' , $parentPageId ])) ) {
2019-06-10 16:21:41 +02:00
foreach ( $this -> getData ([ 'module' , $parentPageId ]) as $articleId => $article ) {
2019-06-13 14:01:43 +02:00
if ( $this -> getData ([ 'module' , $parentPageId , $articleId , 'state' ]) === true ) {
$date = $this -> getData ([ 'module' , $parentPageId , $articleId , 'publishedOn' ]);
$sitemap -> addUrl ( $parentPageId . '/' . $articleId , new DateTime ( " @ { $date } " , new DateTimeZone ( $timezone )));
2019-06-10 16:21:41 +02:00
}
2019-06-09 15:24:43 +02:00
}
2019-05-02 13:21:48 +02:00
}
2019-06-13 14:01:43 +02:00
}
2019-05-02 13:21:48 +02:00
// generating internally a sitemap
$sitemap -> createSitemap ();
// writing early generated sitemap to file
$sitemap -> writeSitemap ();
return ( file_exists ( 'sitemap.xml' ));
}
2018-12-23 23:37:17 +01:00
2019-02-28 12:46:38 +01:00
/**
2018-04-02 08:29:19 +02:00
* Envoi un mail
* @ param string | array $to Destinataire
* @ param string $subject Sujet
* @ param string $content Contenu
* @ return bool
*/
public function sendMail ( $to , $subject , $content ) {
2019-02-28 12:46:38 +01:00
// Utilisation de PHPMailer version 6.0.6
require " core/vendor/phpmailer/phpmailer.php " ;
require " core/vendor/phpmailer/exception.php " ;
2018-04-02 08:29:19 +02:00
// Layout
ob_start ();
include 'core/layout/mail.php' ;
$layout = ob_get_clean ();
// Mail
2019-02-28 12:46:38 +01:00
try {
$mail = new PHPMailer\PHPMailer\PHPMailer ;
$mail -> CharSet = 'UTF-8' ;
$host = str_replace ( 'www.' , '' , $_SERVER [ 'HTTP_HOST' ]);
$mail -> setFrom ( 'no-reply@' . $host , $this -> getData ([ 'config' , 'title' ]));
$mail -> addReplyTo ( 'no-reply@' . $host , $this -> getData ([ 'config' , 'title' ]));
if ( is_array ( $to )) {
foreach ( $to as $userMail ) {
2019-03-05 09:58:52 +01:00
$mail -> addAddress ( $userMail );
2019-02-28 12:46:38 +01:00
}
2018-04-02 08:29:19 +02:00
}
2019-02-28 12:46:38 +01:00
else {
2019-03-05 09:38:09 +01:00
$mail -> addAddress ( $to );
2019-02-28 12:46:38 +01:00
}
$mail -> isHTML ( true );
$mail -> Subject = $subject ;
$mail -> Body = $layout ;
$mail -> AltBody = strip_tags ( $content );
if ( $mail -> send ()) {
return true ;
}
else {
return $mail -> ErrorInfo ;
}
} catch ( phpmailerException $e ) {
return $e -> errorMessage ();
} catch ( Exception $e ) {
return $e -> getMessage ();
2018-04-02 08:29:19 +02:00
}
2019-02-28 12:46:38 +01:00
}
2018-04-02 08:29:19 +02:00
/**
* Insert des données
* @ param array $keys Clé ( s ) des données
*/
public function setData ( $keys ) {
switch ( count ( $keys )) {
case 1 :
$this -> data = $keys [ 0 ];
break ;
case 2 :
$this -> data [ $keys [ 0 ]] = $keys [ 1 ];
break ;
case 3 :
$this -> data [ $keys [ 0 ]][ $keys [ 1 ]] = $keys [ 2 ];
break ;
case 4 :
$this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]] = $keys [ 3 ];
break ;
case 5 :
$this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]] = $keys [ 4 ];
break ;
case 6 :
$this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]][ $keys [ 4 ]] = $keys [ 5 ];
break ;
case 7 :
$this -> data [ $keys [ 0 ]][ $keys [ 1 ]][ $keys [ 2 ]][ $keys [ 3 ]][ $keys [ 4 ]][ $keys [ 5 ]] = $keys [ 6 ];
break ;
}
}
/**
* Mises à jour
*/
private function update () {
// Version 8.1.0
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 810 ) {
$this -> setData ([ 'config' , 'timezone' , 'Europe/Paris' ]);
$this -> setData ([ 'core' , 'dataVersion' , 810 ]);
$this -> saveData ();
}
// Version 8.2.0
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 820 ) {
$this -> setData ([ 'theme' , 'body' , 'backgroundColor' , 'rgba(236, 239, 241, 1)' ]);
$this -> setData ([ 'theme' , 'site' , 'backgroundColor' , 'rgba(255, 255, 255, 1)' ]);
2019-06-03 13:08:48 +02:00
$this -> setData ([ 'theme' , 'text' , 'fontSize' , '13px' ]);
2018-04-02 08:29:19 +02:00
$this -> setData ([ 'theme' , 'text' , 'textColor' , 'rgba(33, 34, 35, 1)' ]);
$this -> setData ([ 'theme' , 'menu' , 'fontSize' , '1em' ]);
$this -> setData ([ 'theme' , 'menu' , 'textColor' , 'rgba(255, 255, 255, 1)' ]);
$this -> setData ([ 'theme' , 'header' , 'fontSize' , '2em' ]);
$this -> setData ([ 'theme' , 'footer' , 'textColor' , 'rgba(33, 34, 35, 1)' ]);
$this -> setData ([ 'core' , 'dataVersion' , 820 ]);
$this -> saveData ();
}
// Version 8.2.2
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 822 ) {
$this -> setData ([ 'config' , 'maintenance' , false ]);
$this -> setData ([ 'core' , 'dataVersion' , 822 ]);
2018-11-14 20:18:29 +01:00
$this -> saveData ();
2018-04-02 08:29:19 +02:00
}
// Version 8.2.6
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 826 ) {
2019-05-04 12:39:08 +02:00
$this -> setData ([ 'theme' , 'header' , 'linkHome' , true ]);
2018-11-14 20:18:29 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 826 ]);
2018-04-02 08:29:19 +02:00
$this -> SaveData ();
}
2018-11-20 23:11:02 +01:00
// Version 8.3.1
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 831 ) {
2018-09-09 11:47:24 +02:00
$this -> setData ([ 'theme' , 'header' , 'imageContainer' , 'auto' ]);
2018-11-20 23:11:02 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 831 ]);
2018-09-09 11:47:24 +02:00
$this -> SaveData ();
}
2019-01-24 21:25:12 +01:00
2018-11-13 13:27:37 +01:00
// Version 8.4.0
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 840 ) {
2018-12-09 00:52:05 +01:00
$this -> setData ([ 'config' , 'itemsperPage' , 10 ]);
2018-11-13 13:27:37 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 840 ]);
2018-09-09 21:28:05 +02:00
$this -> SaveData ();
}
2018-11-15 11:32:59 +01:00
// Version 8.4.4
2019-03-23 08:07:46 +01:00
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 844 ) {
2018-11-15 11:32:59 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 844 ]);
$this -> SaveData ();
2018-12-09 00:52:05 +01:00
}
2018-11-19 18:06:03 +01:00
// Version 8.4.6
2019-03-23 08:07:46 +01:00
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 846 ) {
2018-12-10 22:14:05 +01:00
$this -> setData ([ 'config' , 'itemsperPage' , 10 ]);
2018-11-19 18:06:03 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 846 ]);
$this -> SaveData ();
2018-11-15 11:32:59 +01:00
}
2018-12-09 00:52:05 +01:00
// Version 8.5.0
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 850 ) {
2018-12-09 01:05:35 +01:00
$this -> setData ([ 'theme' , 'menu' , 'font' , 'Open+Sans' ]);
2018-12-09 00:52:05 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 850 ]);
$this -> SaveData ();
}
2018-12-10 23:18:17 +01:00
// Version 8.5.1
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 851 ) {
$this -> setData ([ 'config' , 'itemsperPage' , 10 ]);
$this -> deleteData ([ 'config' , 'ItemsperPage' ]);
$this -> setData ([ 'core' , 'dataVersion' , 851 ]);
$this -> SaveData ();
2018-12-23 23:37:17 +01:00
}
// Version 9.0.0
2019-02-12 15:29:44 +01:00
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9000 ) {
2019-03-23 21:13:11 +01:00
$this -> deleteData ([ 'theme' , 'site' , 'block' ]);
2019-01-24 21:25:12 +01:00
if ( $this -> getData ([ 'theme' , 'menu' , 'position' ]) === 'body-top' ) {
$this -> setData ([ 'theme' , 'menu' , 'position' , 'top' ]);
}
2019-02-11 16:05:44 +01:00
$this -> setData ([ 'theme' , 'menu' , 'fixed' , false ]);
2019-02-12 15:29:44 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 9000 ]);
2018-12-23 23:37:17 +01:00
$this -> SaveData ();
2019-03-05 09:46:34 +01:00
}
// Version 9.0.01
2019-03-24 08:59:29 +01:00
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9001 ) {
$this -> deleteData ([ 'config' , 'social' , 'googleplusId' ]);
2019-03-05 09:46:34 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 9001 ]);
$this -> SaveData ();
2019-03-19 06:59:28 +01:00
}
// Version 9.0.08
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9008 ) {
$this -> setData ([ 'theme' , 'footer' , 'textTransform' , 'none' ]);
$this -> setData ([ 'theme' , 'footer' , 'fontWeight' , 'normal' ]);
2019-04-08 19:29:20 +02:00
$this -> setData ([ 'theme' , 'footer' , 'fontSize' , '.8em' ]);
2019-03-23 21:17:28 +01:00
$this -> setData ([ 'theme' , 'footer' , 'font' , 'Open+Sans' ]);
2019-03-19 06:59:28 +01:00
$this -> setData ([ 'core' , 'dataVersion' , 9008 ]);
$this -> SaveData ();
2019-03-23 18:41:05 +01:00
}
// Version 9.0.09
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9009 ) {
$this -> setData ([ 'core' , 'dataVersion' , 9009 ]);
$this -> SaveData ();
2019-03-23 18:57:19 +01:00
}
2019-03-24 08:59:29 +01:00
// Version 9.0.10
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9010 ) {
$this -> deleteData ([ 'config' , 'social' , 'googleplusId' ]);
$this -> setData ([ 'core' , 'dataVersion' , 9010 ]);
$this -> SaveData ();
}
2019-03-24 19:23:06 +01:00
// Version 9.0.11
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9011 ) {
if ( $this -> getData ([ 'theme' , 'menu' , 'position' ]) === 'body' )
$this -> setData ([ 'theme' , 'menu' , 'position' , 'site' ]);
$this -> setData ([ 'core' , 'dataVersion' , 9011 ]);
$this -> SaveData ();
}
2019-04-09 09:39:19 +02:00
// Version 9.0.17
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9017 ) {
2019-04-09 10:05:38 +02:00
$this -> setData ([ 'theme' , 'footer' , 'displayVersion' , true ]);
2019-04-09 09:39:19 +02:00
$this -> setData ([ 'core' , 'dataVersion' , 9017 ]);
$this -> SaveData ();
}
2019-05-02 13:21:48 +02:00
// Version 9.1.0
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9100 ) {
$this -> setData ([ 'theme' , 'footer' , 'displayVersion' , true ]);
$this -> setData ([ 'theme' , 'footer' , 'displaySiteMap' , true ]);
$this -> setData ([ 'theme' , 'footer' , 'displayCopyright' , true ]);
$this -> setData ([ 'core' , 'dataVersion' , 9100 ]);
$this -> SaveData ();
}
2019-07-10 09:19:12 +02:00
// Version 9.2.00
if ( $this -> getData ([ 'core' , 'dataVersion' ]) < 9200 ) {
2019-06-18 20:08:04 +02:00
$this -> setData ([ 'theme' , 'footer' , 'template' , 3 ]);
2019-06-23 23:37:12 +02:00
$this -> setData ([ 'theme' , 'footer' , 'margin' , true ]);
2019-07-10 09:19:12 +02:00
$this -> setData ([ 'theme' , 'footer' , 'displayLegal' , false ]);
$this -> setData ([ 'theme' , 'footer' , 'displaySearch' , false ]);
$this -> setData ([ 'config' , 'social' , 'githubId' , '' ]);
$this -> setData ([ 'core' , 'dataVersion' , 9200 ]);
2019-06-18 20:08:04 +02:00
$this -> SaveData ();
2019-07-10 09:19:12 +02:00
}
2018-04-02 08:29:19 +02:00
}
}
class core extends common {
/**
* Constructeur du coeur
*/
public function __construct () {
parent :: __construct ();
// Token CSRF
if ( empty ( $_SESSION [ 'csrf' ])) {
$_SESSION [ 'csrf' ] = bin2hex ( openssl_random_pseudo_bytes ( 32 ));
}
// Fuseau horaire
self :: $timezone = $this -> getData ([ 'config' , 'timezone' ]); // Utile pour transmettre le timezone à la classe helper
date_default_timezone_set ( self :: $timezone );
// Supprime les fichiers temporaires
$lastClearTmp = mktime ( 0 , 0 , 0 );
if ( $lastClearTmp > $this -> getData ([ 'core' , 'lastClearTmp' ]) + 86400 ) {
2019-05-28 09:04:10 +02:00
$iterator = new DirectoryIterator ( self :: TEMP_DIR );
2018-04-02 08:29:19 +02:00
foreach ( $iterator as $fileInfos ) {
if ( $fileInfos -> isFile () AND $fileInfos -> getBasename () !== '.gitkeep' ) {
@ unlink ( $fileInfos -> getPathname ());
}
}
// Date de la dernière suppression
$this -> setData ([ 'core' , 'lastClearTmp' , $lastClearTmp ]);
// Enregistre les données
$this -> saveData ();
}
// Backup automatique des données
$lastBackup = mktime ( 0 , 0 , 0 );
if (
$this -> getData ([ 'config' , 'autoBackup' ])
AND $lastBackup > $this -> getData ([ 'core' , 'lastBackup' ]) + 86400
AND $this -> getData ([ 'user' ]) // Pas de backup pendant l'installation
) {
// Copie du fichier de données
2019-05-28 09:04:10 +02:00
copy ( self :: DATA_DIR . 'core.json' , self :: BACKUP_DIR . date ( 'Y-m-d' , $lastBackup ) . '.json' );
2018-04-02 08:29:19 +02:00
// Date du dernier backup
$this -> setData ([ 'core' , 'lastBackup' , $lastBackup ]);
// Enregistre les données
$this -> saveData ();
// Supprime les backups de plus de 30 jours
2019-05-28 09:04:10 +02:00
$iterator = new DirectoryIterator ( self :: BACKUP_DIR );
2018-04-02 08:29:19 +02:00
foreach ( $iterator as $fileInfos ) {
if (
$fileInfos -> isFile ()
AND $fileInfos -> getBasename () !== '.htaccess'
AND $fileInfos -> getMTime () + ( 86400 * 30 ) < time ()
) {
@ unlink ( $fileInfos -> getPathname ());
}
}
}
// Crée le fichier de personnalisation avancée
2019-05-28 09:04:10 +02:00
if ( file_exists ( self :: DATA_DIR . 'custom.css' ) === false ) {
file_put_contents ( self :: DATA_DIR . 'custom.css' , file_get_contents ( 'core/module/theme/resource/custom.css' ));
chmod ( self :: DATA_DIR . 'custom.css' , 0755 );
2018-04-02 08:29:19 +02:00
}
// Crée le fichier de personnalisation
2019-05-28 09:04:10 +02:00
if ( file_exists ( self :: DATA_DIR . 'theme.css' ) === false ) {
file_put_contents ( self :: DATA_DIR . 'theme.css' , '' );
chmod ( self :: DATA_DIR . 'theme.css' , 0755 );
2018-04-02 08:29:19 +02:00
}
// Check la version
2019-05-28 09:04:10 +02:00
$cssVersion = preg_split ( '/\*+/' , file_get_contents ( self :: DATA_DIR . 'theme.css' ));
2018-04-02 08:29:19 +02:00
if ( empty ( $cssVersion [ 1 ]) OR $cssVersion [ 1 ] !== md5 ( json_encode ( $this -> getData ([ 'theme' ])))) {
// Version
$css = '/*' . md5 ( json_encode ( $this -> getData ([ 'theme' ]))) . '*/' ;
// Import des polices de caractères
2018-12-09 00:52:05 +01:00
$css .= '@import url("https://fonts.googleapis.com/css?family=' . $this -> getData ([ 'theme' , 'text' , 'font' ]) . '|' . $this -> getData ([ 'theme' , 'title' , 'font' ]) . '|' . $this -> getData ([ 'theme' , 'header' , 'font' ]) . '|' . $this -> getData ([ 'theme' , 'menu' , 'font' ]) . '");' ;
2018-04-02 08:29:19 +02:00
// Fond du site
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'body' , 'backgroundColor' ]));
$css .= 'body{background-color:' . $colors [ 'normal' ] . ';font-family:"' . str_replace ( '+' , ' ' , $this -> getData ([ 'theme' , 'text' , 'font' ])) . '",sans-serif}' ;
if ( $themeBodyImage = $this -> getData ([ 'theme' , 'body' , 'image' ])) {
$css .= 'body{background-image:url("../file/source/' . $themeBodyImage . '");background-position:' . $this -> getData ([ 'theme' , 'body' , 'imagePosition' ]) . ';background-attachment:' . $this -> getData ([ 'theme' , 'body' , 'imageAttachment' ]) . ';background-size:' . $this -> getData ([ 'theme' , 'body' , 'imageSize' ]) . ';background-repeat:' . $this -> getData ([ 'theme' , 'body' , 'imageRepeat' ]) . '}' ;
}
// Site
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'link' , 'textColor' ]));
$css .= 'a{color:' . $colors [ 'normal' ] . '}' ;
$css .= 'a:hover{color:' . $colors [ 'darken' ] . '}' ;
$css .= 'body,.row > div{font-size:' . $this -> getData ([ 'theme' , 'text' , 'fontSize' ]) . '}' ;
$css .= 'body,.block h4,input[type=\'email\'],input[type=\'text\'],input[type=\'password\'],.inputFile,select,textarea,.inputFile,.button.buttonGrey,.button.buttonGrey:hover{color:' . $this -> getData ([ 'theme' , 'text' , 'textColor' ]) . '}' ;
$css .= '.container{max-width:' . $this -> getData ([ 'theme' , 'site' , 'width' ]) . '}' ;
2019-05-27 11:09:18 +02:00
$css .= $this -> getData ([ 'theme' , 'site' , 'width' ]) === '100%' ? '#site{margin:0 auto !important;} body{margin:0 auto !important;} #bar{margin:0 auto !important;} body > header{margin:0 auto !important;} body > nav {margin: 0 auto !important;} body > footer {margin:0 auto !important;}' : '' ;
2019-05-13 21:35:04 +02:00
$css .= $this -> getData ([ 'theme' , 'site' , 'width' ]) === '750px' ? '.button, button{font-size:0.8em;}' : '' ;
2019-06-19 03:42:05 +02:00
$css .= '#site{background-color:' . $this -> getData ([ 'theme' , 'site' , 'backgroundColor' ]) . ';border-radius:' . $this -> getData ([ 'theme' , 'site' , 'radius' ]) . ';box-shadow:' . $this -> getData ([ 'theme' , 'site' , 'shadow' ]) . ' #212223;}' ;
2018-04-02 08:29:19 +02:00
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'button' , 'backgroundColor' ]));
$css .= '.speechBubble,.button,.button:hover,button[type=\'submit\'],.pagination a,.pagination a:hover,input[type=\'checkbox\']:checked + label:before,input[type=\'radio\']:checked + label:before,.helpContent{background-color:' . $colors [ 'normal' ] . ';color:' . $colors [ 'text' ] . '}' ;
$css .= '.helpButton span{color:' . $colors [ 'normal' ] . '}' ;
$css .= 'input[type=\'text\']:hover,input[type=\'password\']:hover,.inputFile:hover,select:hover,textarea:hover{border-color:' . $colors [ 'normal' ] . '}' ;
$css .= '.speechBubble:before{border-color:' . $colors [ 'normal' ] . ' transparent transparent transparent}' ;
$css .= '.button:hover,button[type=\'submit\']:hover,.pagination a:hover,input[type=\'checkbox\']:not(:active):checked:hover + label:before,input[type=\'checkbox\']:active + label:before,input[type=\'radio\']:checked:hover + label:before,input[type=\'radio\']:not(:checked):active + label:before{background-color:' . $colors [ 'darken' ] . '}' ;
$css .= '.helpButton span:hover{color:' . $colors [ 'darken' ] . '}' ;
$css .= '.button:active,button[type=\'submit\']:active,.pagination a:active{background-color:' . $colors [ 'veryDarken' ] . '}' ;
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'title' , 'textColor' ]));
$css .= 'h1,h2,h3,h4,h5,h6{color:' . $colors [ 'normal' ] . ';font-family:"' . str_replace ( '+' , ' ' , $this -> getData ([ 'theme' , 'title' , 'font' ])) . '",sans-serif;font-weight:' . $this -> getData ([ 'theme' , 'title' , 'fontWeight' ]) . ';text-transform:' . $this -> getData ([ 'theme' , 'title' , 'textTransform' ]) . '}' ;
// Bannière
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'header' , 'backgroundColor' ]));
if ( $this -> getData ([ 'theme' , 'header' , 'margin' ])) {
if ( $this -> getData ([ 'theme' , 'menu' , 'position' ]) === 'site-first' ) {
$css .= 'header{margin:0 20px}' ;
}
else {
$css .= 'header{margin:20px 20px 0 20px}' ;
}
}
2018-09-09 11:47:24 +02:00
$css .= 'header{background-size:' . $this -> getData ([ 'theme' , 'header' , 'imageContainer' ]) . '}' ;
2019-05-06 21:53:00 +02:00
$css .= 'header{background-color:' . $colors [ 'normal' ];
if ( $this -> getData ([ 'theme' , 'header' , 'height' ]) === 'none' ) {
// Controle de l'existence du fichier
2019-05-28 09:04:10 +02:00
if ( file_exists ( self :: FILE_DIR . 'source/' . $this -> getData ([ 'theme' , 'header' , 'image' ])) &&
2019-05-06 21:53:00 +02:00
$this -> getData ([ 'theme' , 'header' , 'image' ]) ) {
// On établie la hauteur du div en proportion de l'image
// (hauteur / largeur) . 100
2019-05-28 09:04:10 +02:00
$sizes = getimagesize ( self :: FILE_DIR . 'source/' . $this -> getData ([ 'theme' , 'header' , 'image' ]));
2019-05-06 21:53:00 +02:00
$css .= ';height: 0; padding-top:' ;
$css .= ( $sizes [ 1 ] / $sizes [ 0 ] ) * 100 ;
$css .= '%' ;
}
} else {
// Valeur de hauteur traditionnelle
2019-05-11 23:31:37 +02:00
$css .= ';height:' . $this -> getData ([ 'theme' , 'header' , 'height' ]) . ';line-height:' . $this -> getData ([ 'theme' , 'header' , 'height' ]) ;
2019-05-06 21:53:00 +02:00
}
2019-05-11 23:31:37 +02:00
$css .= ';text-align:' . $this -> getData ([ 'theme' , 'header' , 'textAlign' ]) . '}' ;
2018-04-02 08:29:19 +02:00
if ( $themeHeaderImage = $this -> getData ([ 'theme' , 'header' , 'image' ])) {
$css .= 'header{background-image:url("../file/source/' . $themeHeaderImage . '");background-position:' . $this -> getData ([ 'theme' , 'header' , 'imagePosition' ]) . ';background-repeat:' . $this -> getData ([ 'theme' , 'header' , 'imageRepeat' ]) . '}' ;
}
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'header' , 'textColor' ]));
$css .= 'header span{color:' . $colors [ 'normal' ] . ';font-family:"' . str_replace ( '+' , ' ' , $this -> getData ([ 'theme' , 'header' , 'font' ])) . '",sans-serif;font-weight:' . $this -> getData ([ 'theme' , 'header' , 'fontWeight' ]) . ';font-size:' . $this -> getData ([ 'theme' , 'header' , 'fontSize' ]) . ';text-transform:' . $this -> getData ([ 'theme' , 'header' , 'textTransform' ]) . '}' ;
// Menu
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'menu' , 'backgroundColor' ]));
$css .= 'nav,nav a{background-color:' . $colors [ 'normal' ] . '}' ;
$css .= 'nav a,#toggle span,nav a:hover{color:' . $this -> getData ([ 'theme' , 'menu' , 'textColor' ]) . '}' ;
$css .= 'nav a:hover{background-color:' . $colors [ 'darken' ] . '}' ;
$css .= 'nav a.active{background-color:' . $colors [ 'veryDarken' ] . '}' ;
$css .= '#menu{text-align:' . $this -> getData ([ 'theme' , 'menu' , 'textAlign' ]) . '}' ;
if ( $this -> getData ([ 'theme' , 'menu' , 'margin' ])) {
if (
$this -> getData ([ 'theme' , 'menu' , 'position' ]) === 'site-first'
2019-03-23 18:41:05 +01:00
OR $this -> getData ([ 'theme' , 'menu' , 'position' ]) === 'site-second'
2018-04-02 08:29:19 +02:00
) {
$css .= 'nav{margin:20px 20px 0 20px}' ;
}
else {
$css .= 'nav{margin:0 20px 0}' ;
}
}
2018-12-09 00:52:05 +01:00
$css .= '#toggle span,#menu a{padding:' . $this -> getData ([ 'theme' , 'menu' , 'height' ]) . ';font-family:"' . str_replace ( '+' , ' ' , $this -> getData ([ 'theme' , 'menu' , 'font' ])) . '",sans-serif;font-weight:' . $this -> getData ([ 'theme' , 'menu' , 'fontWeight' ]) . ';font-size:' . $this -> getData ([ 'theme' , 'menu' , 'fontSize' ]) . ';text-transform:' . $this -> getData ([ 'theme' , 'menu' , 'textTransform' ]) . '}' ;
2018-04-02 08:29:19 +02:00
// Pied de page
$colors = helper :: colorVariants ( $this -> getData ([ 'theme' , 'footer' , 'backgroundColor' ]));
if ( $this -> getData ([ 'theme' , 'footer' , 'margin' ])) {
2019-07-15 11:54:04 +02:00
$css .= 'footer{margin:0 10px 10px;padding: 0px 10px;}' ;
2019-06-20 07:51:56 +02:00
} else {
$css .= 'footer{margin:0;padding:0}' ;
2018-04-02 08:29:19 +02:00
}
2019-03-19 06:59:28 +01:00
$css .= 'footer span{color:' . $this -> getData ([ 'theme' , 'footer' , 'textColor' ]) . ';font-family:"' . str_replace ( '+' , ' ' , $this -> getData ([ 'theme' , 'footer' , 'font' ])) . '",sans-serif;font-weight:' . $this -> getData ([ 'theme' , 'footer' , 'fontWeight' ]) . ';font-size:' . $this -> getData ([ 'theme' , 'footer' , 'fontSize' ]) . ';text-transform:' . $this -> getData ([ 'theme' , 'footer' , 'textTransform' ]) . '}' ;
2018-04-02 08:29:19 +02:00
$css .= 'footer{background-color:' . $colors [ 'normal' ] . ';color:' . $this -> getData ([ 'theme' , 'footer' , 'textColor' ]) . '}' ;
$css .= 'footer a{color:' . $this -> getData ([ 'theme' , 'footer' , 'textColor' ]) . '}' ;
2019-07-15 12:27:41 +02:00
$css .= 'footer #footersite > div {margin:' . $this -> getData ([ 'theme' , 'footer' , 'height' ]) . ' 0}' ;
$css .= 'footer #footerbody > div {margin:' . $this -> getData ([ 'theme' , 'footer' , 'height' ]) . ' 0}' ;
$css .= " footer #footersite > div { padding:0} " ;
$css .= " footer #footerbody > div { padding:0} " ;
2019-06-27 20:52:30 +02:00
$css .= '#footerFontText > p {margin-top: 0; margin-bottom: 0;}' ;
2019-07-15 12:27:41 +02:00
//$css .= '#footersiteLeft, #footersiteCenter, #footersiteRight {padding:' . $this->getData(['theme', 'footer', 'height']) . ' 0}';
//$css .= '#footerbodyLeft, #footerbodyCenter, #footerbodyRight {padding:' . $this->getData(['theme', 'footer', 'height']) . ' 0}';
2018-04-02 08:29:19 +02:00
$css .= '#footerSocials{text-align:' . $this -> getData ([ 'theme' , 'footer' , 'socialsAlign' ]) . '}' ;
$css .= '#footerText{text-align:' . $this -> getData ([ 'theme' , 'footer' , 'textAlign' ]) . '}' ;
$css .= '#footerCopyright{text-align:' . $this -> getData ([ 'theme' , 'footer' , 'copyrightAlign' ]) . '}' ;
// Enregistre la personnalisation
2019-05-28 09:04:10 +02:00
file_put_contents ( self :: DATA_DIR . 'theme.css' , $css );
2018-04-02 08:29:19 +02:00
}
}
/**
* Auto - chargement des classes
* @ param string $className Nom de la classe à charger
*/
public static function autoload ( $className ) {
$classPath = strtolower ( $className ) . '/' . strtolower ( $className ) . '.php' ;
// Module du coeur
if ( is_readable ( 'core/module/' . $classPath )) {
require 'core/module/' . $classPath ;
}
// Module
elseif ( is_readable ( 'module/' . $classPath )) {
require 'module/' . $classPath ;
}
// Librairie
elseif ( is_readable ( 'core/vendor/' . $classPath )) {
require 'core/vendor/' . $classPath ;
}
}
/**
* Routage des modules
*/
public function router () {
// Installation
if (
$this -> getData ([ 'user' ]) === []
AND $this -> getUrl ( 0 ) !== 'install'
) {
http_response_code ( 302 );
header ( 'Location:' . helper :: baseUrl () . 'install' );
exit ();
}
// Force la déconnexion des membres bannis
if (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) === self :: GROUP_BANNED
) {
$user = new user ;
$user -> logout ();
}
// Mode maintenance
if (
$this -> getData ([ 'config' , 'maintenance' ])
AND in_array ( $this -> getUrl ( 0 ), [ 'maintenance' , 'user' ]) === false
AND $this -> getUrl ( 1 ) !== 'login'
AND (
$this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' )
OR (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) < self :: GROUP_ADMIN
)
)
) {
// Déconnexion
$user = new user ;
$user -> logout ();
// Rédirection
http_response_code ( 302 );
header ( 'Location:' . helper :: baseUrl () . 'maintenance' );
exit ();
}
// Check l'accès à la page
$access = null ;
if ( $this -> getData ([ 'page' , $this -> getUrl ( 0 )]) !== null ) {
if (
$this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'group' ]) === self :: GROUP_VISITOR
OR (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) >= $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'group' ])
)
) {
$access = true ;
}
else {
if ( $this -> getUrl ( 0 ) === $this -> getData ([ 'config' , 'homePageId' ])) {
$access = 'login' ;
}
else {
$access = false ;
}
}
}
2019-02-06 16:54:10 +01:00
// Breadcrumb
2019-05-02 13:21:48 +02:00
2019-02-06 16:54:10 +01:00
$title = $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'title' ]);
if ( ! empty ( $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'parentPageId' ])) &&
$this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'breadCrumb' ])) {
2019-02-06 17:05:28 +01:00
$title = '<a href="' . helper :: baseUrl () .
$this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'parentPageId' ]) .
'">' .
ucfirst ( $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'parentPageId' ])) .
'</a> › ' .
2019-02-06 16:54:10 +01:00
$this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'title' ]);
}
2018-04-02 08:29:19 +02:00
// Importe la page
if (
$this -> getData ([ 'page' , $this -> getUrl ( 0 )]) !== null
AND $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'moduleId' ]) === ''
AND $access
) {
$this -> addOutput ([
2019-02-06 16:54:10 +01:00
'title' => $title ,
2018-04-02 08:29:19 +02:00
'content' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'content' ]),
'metaDescription' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'metaDescription' ]),
'metaTitle' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'metaTitle' ]),
'typeMenu' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'typeMenu' ]),
'iconUrl' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'iconUrl' ]),
2019-05-02 13:21:48 +02:00
'disable' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'disable' ]),
'contentRight' => $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barRight' ]), 'content' ]),
'contentLeft' => $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barLeft' ]), 'content' ])
2018-04-02 08:29:19 +02:00
]);
}
// Importe le module
else {
// Id du module, et valeurs en sortie de la page si il s'agit d'un module de page
2019-05-02 13:21:48 +02:00
2018-04-02 08:29:19 +02:00
if ( $access AND $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'moduleId' ])) {
$moduleId = $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'moduleId' ]);
$this -> addOutput ([
2019-02-06 16:54:10 +01:00
'title' => $title ,
2018-04-02 08:29:19 +02:00
'metaDescription' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'metaDescription' ]),
'metaTitle' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'metaTitle' ]),
'typeMenu' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'typeMenu' ]),
'iconUrl' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'iconUrl' ]),
2019-05-02 13:21:48 +02:00
'disable' => $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'disable' ]),
'contentRight' => $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barRight' ]), 'content' ]),
'contentLeft' => $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barLeft' ]), 'content' ])
2018-04-02 08:29:19 +02:00
]);
$pageContent = $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'content' ]);
}
else {
$moduleId = $this -> getUrl ( 0 );
$pageContent = '' ;
}
// Check l'existence du module
if ( class_exists ( $moduleId )) {
/** @var common $module */
$module = new $moduleId ;
// Check l'existence de l'action
$action = '' ;
$ignore = true ;
foreach ( explode ( '-' , $this -> getUrl ( 1 )) as $actionPart ) {
if ( $ignore ) {
$action .= $actionPart ;
$ignore = false ;
}
else {
$action .= ucfirst ( $actionPart );
}
}
$action = array_key_exists ( $action , $module :: $actions ) ? $action : 'index' ;
if ( array_key_exists ( $action , $module :: $actions )) {
$module -> $action ();
$output = $module -> output ;
2018-11-14 20:18:29 +01:00
// Check le groupe de l'utilisateur
2018-04-02 08:29:19 +02:00
if (
(
$module :: $actions [ $action ] === self :: GROUP_VISITOR
OR (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) >= $module :: $actions [ $action ]
)
)
AND $output [ 'access' ] === true
) {
// Enregistrement du contenu de la méthode POST lorsqu'une notice est présente
2018-11-14 20:18:29 +01:00
if ( common :: $inputNotices ) {
2018-04-02 08:29:19 +02:00
foreach ( $_POST as $postId => $postValue ) {
if ( is_array ( $postValue )) {
foreach ( $postValue as $subPostId => $subPostValue ) {
self :: $inputBefore [ $postId . '_' . $subPostId ] = $subPostValue ;
}
}
else {
self :: $inputBefore [ $postId ] = $postValue ;
}
}
}
// Sinon traitement des données de sortie qui requiert qu'aucune notice ne soit présente
else {
// Enregistrement des données
if ( $output [ 'state' ] !== false ) {
$this -> setData ([ $module -> getData ()]);
$this -> saveData ();
}
// Notification
if ( $output [ 'notification' ]) {
if ( $output [ 'state' ] === true ) {
$notification = 'ZWII_NOTIFICATION_SUCCESS' ;
}
elseif ( $output [ 'state' ] === false ) {
$notification = 'ZWII_NOTIFICATION_ERROR' ;
}
else {
$notification = 'ZWII_NOTIFICATION_OTHER' ;
}
$_SESSION [ $notification ] = $output [ 'notification' ];
}
// Redirection
if ( $output [ 'redirect' ]) {
http_response_code ( 301 );
header ( 'Location:' . $output [ 'redirect' ]);
exit ();
}
}
// Données en sortie applicables même lorsqu'une notice est présente
// Affichage
if ( $output [ 'display' ]) {
$this -> addOutput ([
'display' => $output [ 'display' ]
]);
}
// Contenu brut
if ( $output [ 'content' ]) {
$this -> addOutput ([
'content' => $output [ 'content' ]
]);
}
// Contenu par vue
elseif ( $output [ 'view' ]) {
// Chemin en fonction d'un module du coeur ou d'un module
$modulePath = in_array ( $moduleId , self :: $coreModuleIds ) ? 'core/' : '' ;
// CSS
$stylePath = $modulePath . 'module/' . $moduleId . '/view/' . $output [ 'view' ] . '/' . $output [ 'view' ] . '.css' ;
if ( file_exists ( $stylePath )) {
$this -> addOutput ([
'style' => file_get_contents ( $stylePath )
]);
}
// JS
$scriptPath = $modulePath . 'module/' . $moduleId . '/view/' . $output [ 'view' ] . '/' . $output [ 'view' ] . '.js.php' ;
if ( file_exists ( $scriptPath )) {
ob_start ();
include $scriptPath ;
$this -> addOutput ([
'script' => ob_get_clean ()
]);
}
// Vue
$viewPath = $modulePath . 'module/' . $moduleId . '/view/' . $output [ 'view' ] . '/' . $output [ 'view' ] . '.php' ;
if ( file_exists ( $viewPath )) {
ob_start ();
include $viewPath ;
2018-10-23 10:21:57 +02:00
$modpos = $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'modulePosition' ]);
2018-11-14 20:18:29 +01:00
if ( $modpos === 'top' ) {
2018-10-23 10:21:57 +02:00
$this -> addOutput ([
'content' => ob_get_clean () . ( $output [ 'showPageContent' ] ? $pageContent : '' )]);
}
else if ( $modpos === 'free' ) {
$begin = strstr ( $pageContent , '[]' , true );
$end = strstr ( $pageContent , '[]' );
2018-11-14 20:18:29 +01:00
$cut = 2 ;
2018-10-23 10:21:57 +02:00
$end = substr ( $end , - strlen ( $end ) + $cut );
$this -> addOutput ([
'content' => ( $output [ 'showPageContent' ] ? $begin : '' ) . ob_get_clean () . ( $output [ 'showPageContent' ] ? $end : '' )]); }
2018-11-14 20:18:29 +01:00
else {
2018-10-23 10:21:57 +02:00
$this -> addOutput ([
'content' => ( $output [ 'showPageContent' ] ? $pageContent : '' ) . ob_get_clean ()]);
2018-11-14 20:18:29 +01:00
}
2018-04-02 08:29:19 +02:00
}
2018-11-14 20:18:29 +01:00
}
2018-04-02 08:29:19 +02:00
// Librairies
if ( $output [ 'vendor' ] !== $this -> output [ 'vendor' ]) {
$this -> addOutput ([
'vendor' => array_merge ( $this -> output [ 'vendor' ], $output [ 'vendor' ])
]);
}
2019-02-06 16:54:10 +01:00
if ( $output [ 'title' ] !== null ) {
2018-04-02 08:29:19 +02:00
$this -> addOutput ([
'title' => $output [ 'title' ]
]);
}
// Affiche le bouton d'édition de la page dans la barre de membre
if ( $output [ 'showBarEditButton' ]) {
$this -> addOutput ([
'showBarEditButton' => $output [ 'showBarEditButton' ]
]);
}
}
// Erreur 403
else {
$access = false ;
}
}
}
}
// Erreurs
if ( $access === 'login' ) {
http_response_code ( 302 );
header ( 'Location:' . helper :: baseUrl () . 'user/login/' );
exit ();
}
if ( $access === false ) {
http_response_code ( 403 );
$this -> addOutput ([
'title' => 'Erreur 403' ,
'content' => template :: speech ( 'Vous n\'êtes pas autorisé à accéder à cette page...' )
]);
}
elseif ( $this -> output [ 'content' ] === '' ) {
http_response_code ( 404 );
$this -> addOutput ([
'title' => 'Erreur 404' ,
'content' => template :: speech ( 'Oups ! La page demandée est introuvable...' )
]);
}
// Mise en forme des métas
if ( $this -> output [ 'metaTitle' ] === '' ) {
if ( $this -> output [ 'title' ]) {
$this -> addOutput ([
2019-02-06 17:05:28 +01:00
'metaTitle' => strip_tags ( $this -> output [ 'title' ]) . ' - ' . $this -> getData ([ 'config' , 'title' ])
2018-04-02 08:29:19 +02:00
]);
}
else {
$this -> addOutput ([
'metaTitle' => $this -> getData ([ 'config' , 'title' ])
]);
}
}
if ( $this -> output [ 'metaDescription' ] === '' ) {
$this -> addOutput ([
'metaDescription' => $this -> getData ([ 'config' , 'metaDescription' ])
]);
}
// Choix du type d'affichage
switch ( $this -> output [ 'display' ]) {
// Layout vide
case self :: DISPLAY_LAYOUT_BLANK :
require 'core/layout/blank.php' ;
break ;
// Affichage en JSON
case self :: DISPLAY_JSON :
header ( 'Content-Type: application/json' );
echo json_encode ( $this -> output [ 'content' ]);
break ;
// Layout alléger
case self :: DISPLAY_LAYOUT_LIGHT :
require 'core/layout/light.php' ;
break ;
// Layout principal
case self :: DISPLAY_LAYOUT_MAIN :
require 'core/layout/main.php' ;
break ;
// Layout brut
case self :: DISPLAY_RAW :
echo $this -> output [ 'content' ];
break ;
}
}
}
class helper {
/** Statut de la réécriture d'URL (pour éviter de lire le contenu du fichier .htaccess à chaque self::baseUrl()) */
public static $rewriteStatus = null ;
/** Filtres personnalisés */
const FILTER_BOOLEAN = 1 ;
const FILTER_DATETIME = 2 ;
const FILTER_FLOAT = 3 ;
const FILTER_ID = 4 ;
const FILTER_INT = 5 ;
const FILTER_MAIL = 6 ;
const FILTER_PASSWORD = 7 ;
const FILTER_STRING_LONG = 8 ;
const FILTER_STRING_SHORT = 9 ;
const FILTER_TIMESTAMP = 10 ;
const FILTER_URL = 11 ;
/**
* Retourne les valeurs d ' une colonne du tableau de données
* @ param array $array Tableau cible
* @ param string $column Colonne à extraire
* @ param string $sort Type de tri à appliquer au tableau ( SORT_ASC , SORT_DESC , ou null )
* @ return array
*/
public static function arrayCollumn ( $array , $column , $sort = null ) {
$newArray = [];
if ( empty ( $array ) === false ) {
$newArray = array_map ( function ( $element ) use ( $column ) {
return $element [ $column ];
}, $array );
switch ( $sort ) {
case 'SORT_ASC' :
asort ( $newArray );
break ;
case 'SORT_DESC' :
arsort ( $newArray );
break ;
}
}
return $newArray ;
}
/**
* Retourne l ' URL de base du site
* @ param bool $queryString Affiche ou non le point d ' interrogation
* @ param bool $host Affiche ou non l ' host
* @ return string
*/
public static function baseUrl ( $queryString = true , $host = true ) {
// Protocol
if (
( empty ( $_SERVER [ 'HTTPS' ]) === false AND $_SERVER [ 'HTTPS' ] !== 'off' )
OR $_SERVER [ 'SERVER_PORT' ] === 443
) {
$protocol = 'https://' ;
}
else {
$protocol = 'http://' ;
}
// Host
if ( $host ) {
$host = $protocol . $_SERVER [ 'HTTP_HOST' ];
}
// Pathinfo
$pathInfo = pathinfo ( $_SERVER [ 'PHP_SELF' ]);
// Querystring
if ( $queryString AND helper :: checkRewrite () === false ) {
$queryString = '?' ;
}
else {
$queryString = '' ;
}
return $host . rtrim ( $pathInfo [ 'dirname' ], ' /' ) . '/' . $queryString ;
}
/**
* Check le statut de l ' URL rewriting
* @ return bool
*/
public static function checkRewrite () {
if ( self :: $rewriteStatus === null ) {
// Ouvre et scinde le fichier .htaccess
$htaccess = explode ( '# URL rewriting' , file_get_contents ( '.htaccess' ));
// Retourne un boolean en fonction du contenu de la partie réservée à l'URL rewriting
self :: $rewriteStatus = ( empty ( $htaccess [ 1 ]) === false );
}
return self :: $rewriteStatus ;
}
2019-01-25 11:54:37 +01:00
/**
* Renvoie le numéro de version de Zwii est en ligne
* @ return string
*/
public static function getOnlineVersion () {
return ( @ file_get_contents ( 'http://zwiicms.com/update/version' ));
}
2018-04-02 08:29:19 +02:00
/**
* Check si une nouvelle version de Zwii est disponible
* @ return bool
*/
public static function checkNewVersion () {
2019-01-25 11:54:37 +01:00
if ( $version = helper :: getOnlineVersion ()) {
2019-03-10 10:26:41 +01:00
//return (trim($version) !== common::ZWII_VERSION);
return (( version_compare ( common :: ZWII_VERSION , $version )) === - 1 );
2018-04-02 08:29:19 +02:00
}
else {
return false ;
}
}
2019-01-25 11:54:37 +01:00
2018-04-02 08:29:19 +02:00
/**
* Génère des variations d ' une couleur
* @ param string $rgba Code rgba de la couleur
* @ return array
*/
public static function colorVariants ( $rgba ) {
preg_match ( '#\(+(.*)\)+#' , $rgba , $matches );
$rgba = explode ( ', ' , $matches [ 1 ]);
return [
'normal' => 'rgba(' . $rgba [ 0 ] . ',' . $rgba [ 1 ] . ',' . $rgba [ 2 ] . ',' . $rgba [ 3 ] . ')' ,
'darken' => 'rgba(' . max ( 0 , $rgba [ 0 ] - 15 ) . ',' . max ( 0 , $rgba [ 1 ] - 15 ) . ',' . max ( 0 , $rgba [ 2 ] - 15 ) . ',' . $rgba [ 3 ] . ')' ,
'veryDarken' => 'rgba(' . max ( 0 , $rgba [ 0 ] - 20 ) . ',' . max ( 0 , $rgba [ 1 ] - 20 ) . ',' . max ( 0 , $rgba [ 2 ] - 20 ) . ',' . $rgba [ 3 ] . ')' ,
'text' => self :: relativeLuminanceW3C ( $rgba ) > . 22 ? " inherit " : " white "
];
}
/**
* Supprime un cookie
* @ param string $cookieKey Clé du cookie à supprimer
*/
public static function deleteCookie ( $cookieKey ) {
unset ( $_COOKIE [ $cookieKey ]);
setcookie ( $cookieKey , '' , time () - 3600 , helper :: baseUrl ( false , false ));
}
/**
* Filtre une chaîne en fonction d ' un tableau de données
* @ param string $text Chaîne à filtrer
* @ param int $filter Type de filtre à appliquer
* @ return string
*/
public static function filter ( $text , $filter ) {
$text = trim ( $text );
switch ( $filter ) {
case self :: FILTER_BOOLEAN :
$text = ( bool ) $text ;
break ;
case self :: FILTER_DATETIME :
$timezone = new DateTimeZone ( core :: $timezone );
$date = new DateTime ( $text );
$date -> setTimezone ( $timezone );
$text = ( int ) $date -> format ( 'U' );
break ;
case self :: FILTER_FLOAT :
$text = filter_var ( $text , FILTER_SANITIZE_NUMBER_FLOAT );
$text = ( float ) $text ;
break ;
case self :: FILTER_ID :
$text = mb_strtolower ( $text , 'UTF-8' );
2019-03-22 09:03:08 +01:00
$text = strip_tags ( str_replace (
2018-04-02 08:29:19 +02:00
explode ( ',' , 'á,à,â,ä,ã,å,ç,é,è,ê,ë,í,ì,î,ï,ñ,ó,ò,ô,ö,õ,ú,ù,û,ü,ý,ÿ,\',", ' ),
explode ( ',' , 'a,a,a,a,a,a,c,e,e,e,e,i,i,i,i,n,o,o,o,o,o,u,u,u,u,y,y,-,-,-' ),
$text
2019-03-22 09:03:08 +01:00
));
2018-04-02 08:29:19 +02:00
$text = preg_replace ( '/([^a-z0-9-])/' , '' , $text );
2019-04-02 09:22:46 +02:00
// Cas où un identifiant est vide
if ( empty ( $text )) {
$text = uniqid ( 'page-' );
2019-05-02 13:21:48 +02:00
}
2018-04-02 08:29:19 +02:00
// Un ID ne peut pas être un entier, pour éviter les conflits avec le système de pagination
if ( intval ( $text ) !== 0 ) {
$text = 'i' . $text ;
2019-03-25 09:38:49 +01:00
}
2018-04-02 08:29:19 +02:00
break ;
case self :: FILTER_INT :
$text = ( int ) filter_var ( $text , FILTER_SANITIZE_NUMBER_INT );
break ;
case self :: FILTER_MAIL :
$text = filter_var ( $text , FILTER_SANITIZE_EMAIL );
break ;
case self :: FILTER_PASSWORD :
$text = password_hash ( $text , PASSWORD_BCRYPT );
break ;
case self :: FILTER_STRING_LONG :
$text = mb_substr ( filter_var ( $text , FILTER_SANITIZE_STRING ), 0 , 500000 );
break ;
case self :: FILTER_STRING_SHORT :
$text = mb_substr ( filter_var ( $text , FILTER_SANITIZE_STRING ), 0 , 500 );
break ;
case self :: FILTER_TIMESTAMP :
$text = date ( 'Y-m-d H:i:s' , $text );
break ;
case self :: FILTER_URL :
$text = filter_var ( $text , FILTER_SANITIZE_URL );
break ;
}
return get_magic_quotes_gpc () ? stripslashes ( $text ) : $text ;
}
/**
* Incrémente une clé en fonction des clés ou des valeurs d ' un tableau
* @ param mixed $key Clé à incrémenter
* @ param array $array Tableau à vérifier
* @ return string
*/
public static function increment ( $key , $array = []) {
// Pas besoin d'incrémenter si la clef n'existe pas
if ( $array === []) {
return $key ;
}
// Incrémente la clef
else {
// Si la clef est numérique elle est incrémentée
if ( is_numeric ( $key )) {
$newKey = $key ;
while ( array_key_exists ( $newKey , $array ) OR in_array ( $newKey , $array )) {
$newKey ++ ;
}
}
// Sinon l'incrémentation est ajoutée après la clef
else {
$i = 2 ;
$newKey = $key ;
while ( array_key_exists ( $newKey , $array ) OR in_array ( $newKey , $array )) {
$newKey = $key . '-' . $i ;
$i ++ ;
}
}
return $newKey ;
}
}
/**
* Minimise du css
* @ param string $css Css à minimiser
* @ return string
*/
public static function minifyCss ( $css ) {
// Supprime les commentaires
$css = preg_replace ( '!/\*[^*]*\*+([^/][^*]*\*+)*/!' , '' , $css );
// Supprime les tabulations, espaces, nouvelles lignes, etc...
$css = str_replace ([ " \r \n " , " \r " , " \n " , " \t " , ' ' , ' ' , ' ' ], '' , $css );
$css = preg_replace ([ '(( )+{)' , '({( )+)' ], '{' , $css );
$css = preg_replace ([ '(( )+})' , '(}( )+)' , '(;( )*})' ], '}' , $css );
$css = preg_replace ([ '(;( )+)' , '(( )+;)' ], ';' , $css );
// Retourne le css minifié
return $css ;
}
/**
* Minimise du js
* @ param string $js Js à minimiser
* @ return string
*/
public static function minifyJs ( $js ) {
// Supprime les commentaires
$js = preg_replace ( '/\\/\\*[^*]*\\*+([^\\/][^*]*\\*+)*\\/|\s*(?<![\:\=])\/\/.*/' , '' , $js );
// Supprime les tabulations, espaces, nouvelles lignes, etc...
$js = str_replace ([ " \r \n " , " \r " , " \t " , " \n " , ' ' , ' ' , ' ' ], '' , $js );
$js = preg_replace ([ '(( )+\))' , '(\)( )+)' ], ')' , $js );
// Retourne le js minifié
return $js ;
}
/**
* Crée un système de pagination ( retourne un tableau contenant les informations sur la pagination ( first , last , pages ))
* @ param array $array Tableau de donnée à utiliser
* @ param string $url URL à utiliser , la dernière partie doit correspondre au numéro de page , par défaut utiliser $this -> getUrl ()
2018-11-14 20:18:29 +01:00
* @ param string $item pagination nombre d ' éléments par page
2018-04-02 08:29:19 +02:00
* @ param null | int $sufix Suffixe de l ' url
* @ return array
*/
2018-10-06 05:46:07 +02:00
public static function pagination ( $array , $url , $item , $sufix = null ) {
2018-04-02 08:29:19 +02:00
// Scinde l'url
$url = explode ( '/' , $url );
// Url de pagination
$urlPagination = is_numeric ( $url [ count ( $url ) - 1 ]) ? array_pop ( $url ) : 1 ;
// Url de la page courante
$urlCurrent = implode ( '/' , $url );
// Nombre d'éléments à afficher
$nbElements = count ( $array );
// Nombre de page
2018-10-06 05:46:07 +02:00
$nbPage = ceil ( $nbElements / $item );
2018-04-02 08:29:19 +02:00
// Page courante
$currentPage = is_numeric ( $urlPagination ) ? self :: filter ( $urlPagination , self :: FILTER_INT ) : 1 ;
// Premier élément de la page
2018-10-06 05:46:07 +02:00
$firstElement = ( $currentPage - 1 ) * $item ;
2018-04-02 08:29:19 +02:00
// Dernier élément de la page
2018-10-06 05:46:07 +02:00
$lastElement = $firstElement + $item ;
2018-04-02 08:29:19 +02:00
$lastElement = ( $lastElement > $nbElements ) ? $nbElements : $lastElement ;
// Mise en forme de la liste des pages
$pages = '' ;
if ( $nbPage > 1 ) {
for ( $i = 1 ; $i <= $nbPage ; $i ++ ) {
$disabled = ( $i === $currentPage ) ? ' class="disabled"' : false ;
$pages .= '<a href="' . helper :: baseUrl () . $urlCurrent . '/' . $i . $sufix . '"' . $disabled . '>' . $i . '</a>' ;
}
$pages = '<div class="pagination">' . $pages . '</div>' ;
}
// Retourne un tableau contenant les informations sur la pagination
return [
'first' => $firstElement ,
'last' => $lastElement ,
'pages' => $pages
];
}
/**
* Calcul de la luminance relative d ' une couleur
*/
public static function relativeLuminanceW3C ( $rgba ) {
// Conversion en sRGB
$RsRGB = $rgba [ 0 ] / 255 ;
$GsRGB = $rgba [ 1 ] / 255 ;
$BsRGB = $rgba [ 2 ] / 255 ;
// Ajout de la transparence
$RsRGBA = $rgba [ 3 ] * $RsRGB + ( 1 - $rgba [ 3 ]);
$GsRGBA = $rgba [ 3 ] * $GsRGB + ( 1 - $rgba [ 3 ]);
$BsRGBA = $rgba [ 3 ] * $BsRGB + ( 1 - $rgba [ 3 ]);
// Calcul de la luminance
$R = ( $RsRGBA <= . 03 928 ) ? $RsRGBA / 12.92 : pow (( $RsRGBA + . 055 ) / 1.055 , 2.4 );
$G = ( $GsRGBA <= . 03 928 ) ? $GsRGBA / 12.92 : pow (( $GsRGBA + . 055 ) / 1.055 , 2.4 );
$B = ( $BsRGBA <= . 03 928 ) ? $BsRGBA / 12.92 : pow (( $BsRGBA + . 055 ) / 1.055 , 2.4 );
return . 2126 * $R + . 7152 * $G + . 0722 * $B ;
}
/**
* Retourne les attributs d ' une balise au bon format
* @ param array $array Liste des attributs ( $key => $value )
* @ param array $exclude Clés à ignorer ( $key )
* @ return string
*/
public static function sprintAttributes ( array $array = [], array $exclude = []) {
$exclude = array_merge (
[
'before' ,
'classWrapper' ,
'help' ,
'label'
],
$exclude
);
$attributes = [];
foreach ( $array as $key => $value ) {
if (( $value OR $value === 0 ) AND in_array ( $key , $exclude ) === false ) {
// Désactive le message de modifications non enregistrées pour le champ
if ( $key === 'noDirty' ) {
$attributes [] = 'data-no-dirty' ;
}
// Disabled
// Readonly
elseif ( in_array ( $key , [ 'disabled' , 'readonly' ])) {
$attributes [] = sprintf ( '%s' , $key );
}
// Autres
else {
$attributes [] = sprintf ( '%s="%s"' , $key , $value );
}
}
}
return implode ( ' ' , $attributes );
}
/**
* Retourne un segment de chaîne sans couper de mot
* @ param string $text Texte à scinder
* @ param int $start ( voir substr de PHP pour fonctionnement )
* @ param int $length ( voir substr de PHP pour fonctionnement )
* @ return string
*/
public static function subword ( $text , $start , $length ) {
$text = trim ( $text );
if ( strlen ( $text ) > $length ) {
$text = mb_substr ( $text , $start , $length );
$text = mb_substr ( $text , 0 , min ( mb_strlen ( $text ), mb_strrpos ( $text , ' ' )));
}
return $text ;
}
}
class layout extends common {
private $core ;
/**
* Constructeur du layout
*/
public function __construct ( core $core ) {
parent :: __construct ();
$this -> core = $core ;
}
/**
* Affiche le script Google Analytics
*/
public function showAnalytics () {
if ( $code = $this -> getData ([ 'config' , 'analyticsId' ])) {
2019-05-02 13:21:48 +02:00
echo ' <!-- Global site tag ( gtag . js ) - Google Analytics -->
< script async src = " https://www.googletagmanager.com/gtag/js?id='. $code .' " ></ script >
< script >
window . dataLayer = window . dataLayer || [];
function gtag (){ dataLayer . push ( arguments );}
gtag ( " js " , new Date ());
gtag ( " config " , " '. $code .' " );
</ script > ' ;
2018-04-02 08:29:19 +02:00
}
}
/**
* Affiche le contenu
2019-01-30 19:38:17 +01:00
* @ param Page par défaut
2018-04-02 08:29:19 +02:00
*/
public function showContent () {
2019-01-27 18:28:29 +01:00
if (
$this -> core -> output [ 'title' ]
AND (
$this -> getData ([ 'page' , $this -> getUrl ( 0 )]) === null
OR $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'hideTitle' ]) === false
)
) {
2019-02-07 18:07:10 +01:00
echo '<h2 id="sectionTitle">' . $this -> core -> output [ 'title' ] . '</h2>' ;
2018-04-02 08:29:19 +02:00
}
2019-01-27 18:28:29 +01:00
echo $this -> core -> output [ 'content' ];
2019-05-02 13:21:48 +02:00
2018-04-02 08:29:19 +02:00
}
2019-01-30 19:38:17 +01:00
2019-05-02 13:21:48 +02:00
/**
* Affiche le contenu de la barre gauche
2019-05-03 22:06:15 +02:00
*
2019-05-02 13:21:48 +02:00
*/
public function showBarContentLeft () {
2019-05-03 22:06:15 +02:00
// Détermine si le menu est présent
if ( $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barLeft' ]), 'displayMenu' ]) === 'none' ) {
// Pas de menu
echo $this -> core -> output [ 'contentLeft' ];
} else {
// $mark contient 0 le menu est positionné à la fin du contenu
$contentLeft = $this -> core -> output [ 'contentLeft' ];
$mark = strrpos ( $contentLeft , '[]' ) !== false ? strrpos ( $contentLeft , '[]' ) : strlen ( $contentLeft );
echo substr ( $contentLeft , 0 , $mark );
2019-05-30 19:53:18 +02:00
echo '<div id="menuSideLeft">' ;
2019-05-03 22:06:15 +02:00
echo $this -> showMenuSide ( $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barLeft' ]), 'displayMenu' ]) === 'parents' ? false : true );
echo '</div>' ;
echo substr ( $contentLeft , $mark + 2 , strlen ( $contentLeft ));
}
2019-05-02 13:21:48 +02:00
}
/**
* Affiche le contenu de la barre droite
*/
public function showBarContentRight () {
2019-05-03 22:06:15 +02:00
// Détermine si le menu est présent
if ( $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barRight' ]), 'displayMenu' ]) === 'none' ) {
// Pas de menu
echo $this -> core -> output [ 'contentRight' ];
} else {
// $mark contient 0 le menu est positionné à la fin du contenu
$contentRight = $this -> core -> output [ 'contentRight' ];
$mark = strrpos ( $contentRight , '[]' ) !== false ? strrpos ( $contentRight , '[]' ) : strlen ( $contentRight );
echo substr ( $contentRight , 0 , $mark );
2019-05-30 19:53:18 +02:00
echo '<div id="menuSideRight">' ;
2019-05-03 22:06:15 +02:00
echo $this -> showMenuSide ( $this -> getData ([ 'page' , $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'barRight' ]), 'displayMenu' ]) === 'parents' ? false : true );
echo '</div>' ;
echo substr ( $contentRight , $mark + 2 , strlen ( $contentRight ));
}
2019-05-02 13:21:48 +02:00
}
2019-01-30 19:38:17 +01:00
2019-06-18 23:29:42 +02:00
/**
* Affiche le texte du footer
*/
public function showFooterText () {
if ( $footerText = $this -> getData ([ 'theme' , 'footer' , 'text' ]) OR $this -> getUrl ( 0 ) === 'theme' ) {
echo '<div id="footerText"><span id="footerFontText">' . nl2br ( $footerText ) . '</span></div>' ;
}
}
2019-05-02 13:21:48 +02:00
/**
2019-01-11 18:54:14 +01:00
* Affiche le copyright
*/
public function showCopyright () {
2019-05-11 22:23:55 +02:00
// Ouverture Bloc copyright
2019-05-02 13:21:48 +02:00
$items = '<div id="footerCopyright">' ;
2019-05-30 19:53:18 +02:00
$items .= '<span id="footerFontCopyright">' ;
2019-05-10 22:47:19 +02:00
// Affichage de motorisé par
$items .= '<span id="footerDisplayCopyright" ' ;
$items .= $this -> getData ([ 'theme' , 'footer' , 'displayCopyright' ]) === false ? 'class="displayNone"' : '' ;
2019-05-30 19:53:18 +02:00
$items .= '>Motorisé par </span>' ;
2019-05-11 22:23:55 +02:00
// Toujours afficher le nom du CMS
2019-05-10 22:47:19 +02:00
$items .= '<span id="footerZwiiCMS">' ;
2019-05-15 20:54:58 +02:00
$items .= '<a href="http://zwiicms.com/" onclick="window.open(this.href);return false" data-tippy-content="Zwii CMS sans base de données, très léger et performant">ZwiiCMS</a>' ;
2019-05-10 22:47:19 +02:00
$items .= '</span>' ;
// Affichage du numéro de version
$items .= '<span id="footerDisplayVersion"' ;
2019-06-22 23:43:31 +02:00
$items .= $this -> getData ([ 'theme' , 'footer' , 'displayVersion' ]) === false ? ' class="displayNone"' : '' ;
2019-05-10 22:47:19 +02:00
$items .= '><wbr> ' . common :: ZWII_VERSION ;
$items .= '</span>' ;
2019-06-22 19:43:52 +02:00
// Affichage du sitemap
2019-05-10 22:47:19 +02:00
$items .= '<span id="footerDisplaySiteMap"' ;
2019-07-10 09:19:12 +02:00
$items .= $this -> getData ([ 'theme' , 'footer' , 'displaySiteMap' ]) === false ? ' class="displayNone"' : '' ;
2019-05-10 22:47:19 +02:00
$items .= '><wbr> | <a href="' . helper :: baseUrl () . 'sitemap" data-tippy-content="Plan du site" >Plan du site</a>' ;
2019-05-02 13:21:48 +02:00
$items .= '</span>' ;
2019-07-03 19:46:53 +02:00
// Affichage du module de recherche
$items .= '<span id="footerDisplaySearch"' ;
2019-07-10 09:19:12 +02:00
$items .= $this -> getData ([ 'theme' , 'footer' , 'displaySearch' ]) === false ? ' class="displayNone"' : '' ;
2019-07-03 19:46:53 +02:00
$items .= '><wbr> | <a href="' . helper :: baseUrl () . 'search" data-tippy-content="Rechercher dans le site" >Rechercher</a>' ;
$items .= '</span>' ;
2019-06-22 19:43:52 +02:00
// Affichage des mentions légales
$items .= '<span id="footerDisplayLegal"' ;
2019-06-24 21:52:24 +02:00
$items .= $this -> getData ([ 'theme' , 'footer' , 'displayLegal' ]) === false ? ' class="displayNone" >' : '>' ;
if ( $this -> getData ([ 'config' , 'legalPageId' ]) !== '' ) {
$items .= '<wbr> | <a href="' . helper :: baseUrl () . $this -> getData ([ 'config' , 'legalPageId' ]) . '" data-tippy-content="Mentions Légales">Mentions légales</a>' ;
2019-06-22 19:43:52 +02:00
}
$items .= '</span>' ;
// Affichage du lien de connexion
if (
2019-01-11 18:54:14 +01:00
(
$this -> getData ([ 'theme' , 'footer' , 'loginLink' ])
AND $this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' )
)
OR $this -> getUrl ( 0 ) === 'theme'
) {
2019-03-22 09:03:08 +01:00
$items .= '<span id="footerLoginLink" ' .
( $this -> getUrl ( 0 ) === 'theme' ? 'class="displayNone"' : '' ) .
2019-05-02 13:21:48 +02:00
'><wbr> | <a href="' . helper :: baseUrl () . 'user/login/' .
2019-03-22 09:03:08 +01:00
strip_tags ( str_replace ( '/' , '_' , $this -> getUrl ())) .
2019-05-30 19:53:18 +02:00
'" data-tippy-content="Connexion à l\'administration" rel="nofollow">Connexion</a></span>' ;
2019-05-10 22:47:19 +02:00
}
// Fermeture du bloc copyright
2019-05-02 13:21:48 +02:00
$items .= '</span></div>' ;
2019-01-11 18:54:14 +01:00
echo $items ;
2019-06-18 23:29:42 +02:00
}
/**
* Affiche les réseaux sociaux
*/
public function showSocials () {
$socials = '' ;
foreach ( $this -> getData ([ 'config' , 'social' ]) as $socialName => $socialId ) {
switch ( $socialName ) {
case 'facebookId' :
$socialUrl = 'https://www.facebook.com/' ;
$title = 'Facebook' ;
break ;
case 'linkedinId' :
$socialUrl = 'https://fr.linkedin.com/in/' ;
$title = 'Linkedin' ;
break ;
case 'instagramId' :
$socialUrl = 'https://www.instagram.com/' ;
$title = 'Instagram' ;
break ;
case 'pinterestId' :
$socialUrl = 'https://pinterest.com/' ;
$title = 'Pinterest' ;
break ;
case 'twitterId' :
$socialUrl = 'https://twitter.com/' ;
$title = 'Twitter' ;
break ;
case 'youtubeId' :
$socialUrl = 'https://www.youtube.com/channel/' ;
$title = 'YouTube' ;
break ;
case 'githubId' :
$socialUrl = 'https://www.github.com/' ;
$title = 'Github' ;
break ;
default :
$socialUrl = '' ;
}
if ( $socialId !== '' ) {
$socials .= '<a href="' . $socialUrl . $socialId . '" onclick="window.open(this.href);return false" data-tippy-content="' . $title . '">' . template :: ico ( substr ( $socialName , 0 , - 2 )) . '</a>' ;
}
}
if ( $socials !== '' ) {
echo '<div id="footerSocials">' . $socials . '</div>' ;
}
}
2018-04-02 08:29:19 +02:00
/**
* Affiche le favicon
*/
public function showFavicon () {
2019-05-04 12:09:03 +02:00
$favicon = $this -> getData ([ 'config' , 'favicon' ]);
if ( $favicon &&
2019-05-28 09:04:10 +02:00
file_exists ( self :: FILE_DIR . 'source/' . $favicon )
2019-05-04 12:09:03 +02:00
) {
2019-05-28 09:04:10 +02:00
echo '<link rel="shortcut icon" href="' . helper :: baseUrl ( false ) . self :: FILE_DIR . 'source/' . $favicon . '">' ;
2019-05-04 12:09:03 +02:00
} else {
echo '<link rel="shortcut icon" href="' . helper :: baseUrl ( false ) . 'core/vendor/zwiico/ico/favicon.ico">' ;
2018-04-02 08:29:19 +02:00
}
}
/**
* Affiche le menu
*/
public function showMenu () {
// Met en forme les items du menu
$items = '' ;
$currentPageId = $this -> getData ([ 'page' , $this -> getUrl ( 0 )]) ? $this -> getUrl ( 0 ) : $this -> getUrl ( 2 );
foreach ( $this -> getHierarchy () as $parentPageId => $childrenPageIds ) {
2019-06-25 19:57:10 +02:00
// Passer les entrées masquées
2018-04-02 08:29:19 +02:00
// Propriétés de l'item
$active = ( $parentPageId === $currentPageId OR in_array ( $currentPageId , $childrenPageIds )) ? ' class="active"' : '' ;
2019-05-02 13:21:48 +02:00
$targetBlank = $this -> getData ([ 'page' , $parentPageId , 'targetBlank' ]) ? ' target="_blank"' : '' ;
2018-04-02 08:29:19 +02:00
// Mise en page de l'item
$items .= '<li>' ;
2018-12-09 00:52:05 +01:00
2018-11-14 20:18:29 +01:00
if ( $this -> getData ([ 'page' , $parentPageId , 'disable' ]) === true
2018-04-02 08:54:57 +02:00
AND $this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' ) )
2018-12-09 00:52:05 +01:00
{ $items .= '<a href="' . $this -> getUrl ( 1 ) . '">' ;
} else {
$items .= '<a href="' . helper :: baseUrl () . $parentPageId . '"' . $active . $targetBlank . '>' ;
}
2018-04-02 08:29:19 +02:00
switch ( $this -> getData ([ 'page' , $parentPageId , 'typeMenu' ])) {
case '' :
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]);
break ;
case 'text' :
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]);
2018-09-24 18:25:46 +02:00
break ;
2018-04-02 08:29:19 +02:00
case 'icon' :
if ( $this -> getData ([ 'page' , $parentPageId , 'iconUrl' ]) != " " ) {
2019-05-28 09:04:10 +02:00
$items .= '<img alt="' . $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '" src="' . helper :: baseUrl ( false ) . self :: FILE_DIR . 'source/' . $this -> getData ([ 'page' , $parentPageId , 'iconUrl' ]) . '" />' ;
2018-04-02 08:29:19 +02:00
} else {
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]);
}
break ;
case 'icontitle' :
if ( $this -> getData ([ 'page' , $parentPageId , 'iconUrl' ]) != " " ) {
2019-05-28 09:04:10 +02:00
$items .= '<img alt="' . $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '" src="' . helper :: baseUrl ( false ) . self :: FILE_DIR . 'source/' . $this -> getData ([ 'page' , $parentPageId , 'iconUrl' ]) . '" data-tippy-content="' ;
2018-12-09 00:52:05 +01:00
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '"/>' ;
2018-04-02 08:29:19 +02:00
} else {
2018-12-09 00:52:05 +01:00
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]);
2018-09-24 18:25:46 +02:00
}
2018-04-02 08:29:19 +02:00
break ;
}
2019-05-02 13:21:48 +02:00
// Cas où les pages enfants enfant sont toutes masquées dans le menu
// ne pas afficher de symbole lorsqu'il n'y a rien à afficher
$totalChild = 0 ;
$disableChild = 0 ;
foreach ( $childrenPageIds as $childKey ) {
$totalChild += 1 ;
}
if ( $childrenPageIds && $disableChild !== $totalChild &&
$this -> getdata ([ 'page' , $parentPageId , 'hideMenuChildren' ]) === false ) {
2018-04-02 08:29:19 +02:00
$items .= template :: ico ( 'down' , 'left' );
}
2019-05-02 13:21:48 +02:00
// ------------------------------------------------
2018-04-03 13:09:12 +02:00
$items .= '</a>' ;
2019-05-30 19:53:18 +02:00
if ( $this -> getdata ([ 'page' , $parentPageId , 'hideMenuChildren' ]) === true ||
empty ( $childrenPageIds )) {
2019-05-02 13:21:48 +02:00
continue ;
}
2019-07-31 17:47:26 +02:00
$items .= '<ul class="navLevel2">' ;
2019-06-25 19:57:10 +02:00
foreach ( $childrenPageIds as $childKey ) {
2018-04-02 08:29:19 +02:00
// Propriétés de l'item
$active = ( $childKey === $currentPageId ) ? ' class="active"' : '' ;
$targetBlank = $this -> getData ([ 'page' , $childKey , 'targetBlank' ]) ? ' target="_blank"' : '' ;
// Mise en page du sous-item
2019-05-31 23:25:31 +02:00
$items .= '<li>' ;
2018-11-14 20:18:29 +01:00
if ( $this -> getData ([ 'page' , $childKey , 'disable' ]) === true
2019-05-31 23:25:31 +02:00
AND $this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' ) ) {
$items .= '<a href="' . $this -> getUrl ( 1 ) . '">' ;
} else {
$items .= '<a href="' . helper :: baseUrl () . $childKey . '"' . $active . $targetBlank . '>' ;
}
2018-04-02 08:29:19 +02:00
switch ( $this -> getData ([ 'page' , $childKey , 'typeMenu' ])) {
case '' :
$items .= $this -> getData ([ 'page' , $childKey , 'title' ]);
break ;
case 'text' :
$items .= $this -> getData ([ 'page' , $childKey , 'title' ]);
2018-09-24 18:25:46 +02:00
break ;
2018-04-02 08:29:19 +02:00
case 'icon' :
if ( $this -> getData ([ 'page' , $childKey , 'iconUrl' ]) != " " ) {
2019-05-28 09:04:10 +02:00
$items .= '<img alt="' . $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '" src="' . helper :: baseUrl ( false ) . self :: FILE_DIR . 'source/' . $this -> getData ([ 'page' , $childKey , 'iconUrl' ]) . '" />' ;
2018-04-02 08:29:19 +02:00
} else {
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]);
}
break ;
case 'icontitle' :
if ( $this -> getData ([ 'page' , $childKey , 'iconUrl' ]) != " " ) {
2019-05-28 09:04:10 +02:00
$items .= '<img alt="' . $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '" src="' . helper :: baseUrl ( false ) . self :: FILE_DIR . 'source/' . $this -> getData ([ 'page' , $childKey , 'iconUrl' ]) . '" data-tippy-content="' ;
2018-04-02 08:29:19 +02:00
$items .= $this -> getData ([ 'page' , $childKey , 'title' ]) . '"/>' ;
} else {
$items .= $this -> getData ([ 'page' , $childKey , 'title' ]);
2018-09-24 18:25:46 +02:00
}
2018-04-02 08:29:19 +02:00
break ;
case 'icontext' :
if ( $this -> getData ([ 'page' , $childKey , 'iconUrl' ]) != " " ) {
2019-05-28 09:04:10 +02:00
$items .= '<img alt="' . $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '" src="' . helper :: baseUrl ( false ) . self :: FILE_DIR . 'source/' . $this -> getData ([ 'page' , $childKey , 'iconUrl' ]) . '" />' ;
2018-04-02 08:29:19 +02:00
$items .= $this -> getData ([ 'page' , $childKey , 'title' ]);
} else {
$items .= $this -> getData ([ 'page' , $childKey , 'title' ]);
}
2018-09-24 18:25:46 +02:00
break ;
2018-04-02 08:29:19 +02:00
}
2019-05-31 23:25:31 +02:00
$items .= '</a></li>' ;
}
2018-04-02 08:29:19 +02:00
$items .= '</ul>' ;
}
// Lien de connexion
if (
(
$this -> getData ([ 'theme' , 'menu' , 'loginLink' ])
AND $this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' )
)
OR $this -> getUrl ( 0 ) === 'theme'
) {
2019-03-22 09:03:08 +01:00
$items .= '<li id="menuLoginLink" ' .
( $this -> getUrl ( 0 ) === 'theme' ? 'class="displayNone"' : '' ) .
'><a href="' . helper :: baseUrl () . 'user/login/' .
strip_tags ( str_replace ( '/' , '_' , $this -> getUrl ())) .
'">Connexion</a></li>' ;
2018-04-02 08:29:19 +02:00
}
// Retourne les items du menu
2019-07-31 17:47:26 +02:00
echo '<ul class="navLevel1">' . $items . '</ul>' ;
2018-04-02 08:29:19 +02:00
}
2019-05-02 13:21:48 +02:00
/**
* Générer un menu pour la barre latérale
* Uniquement texte
* @ param onlyChildren n ' affiche les sous - pages de la page actuelle
*/
public function showMenuSide ( $onlyChildren = null ) {
// Met en forme les items du menu
$items = '' ;
// Nom de la page courante
$currentPageId = $this -> getData ([ 'page' , $this -> getUrl ( 0 )]) ? $this -> getUrl ( 0 ) : $this -> getUrl ( 2 );
// Nom de la page parente
$currentParentPageId = $this -> getData ([ 'page' , $currentPageId , 'parentPageId' ]);
// Détermine si on affiche uniquement le parent et les enfants
// Filtre contient le nom de la page parente
if ( $onlyChildren === true ) {
if ( empty ( $currentParentPageId )) {
$filterCurrentPageId = $currentPageId ;
} else {
$filterCurrentPageId = $currentParentPageId ;
}
2019-05-31 23:25:31 +02:00
} else {
$items .= '<ul class="menuSide">' ;
}
2019-05-02 13:21:48 +02:00
foreach ( $this -> getHierarchy () as $parentPageId => $childrenPageIds ) {
// Ne pas afficher les entrées masquées
2019-05-31 23:25:31 +02:00
if ( $this -> getData ([ 'page' , $parentPageId , 'hideMenuSide' ]) === true ) {
2019-05-02 13:21:48 +02:00
continue ;
}
// Filtre actif et nom de la page parente courante différente, on sort de la boucle
if ( $onlyChildren === true && $parentPageId !== $filterCurrentPageId ) {
continue ;
}
// Propriétés de l'item
$active = ( $parentPageId === $currentPageId OR in_array ( $currentPageId , $childrenPageIds )) ? ' class="active"' : '' ;
$targetBlank = $this -> getData ([ 'page' , $parentPageId , 'targetBlank' ]) ? ' target="_blank"' : '' ;
// Mise en page de l'item;
// Ne pas afficher le parent d'une sous-page quand l'option est sélectionnée.
if ( $onlyChildren === false ) {
2019-05-31 23:25:31 +02:00
$items .= '<li class="menuSideChild">' ;
2019-05-02 13:21:48 +02:00
if ( $this -> getData ([ 'page' , $parentPageId , 'disable' ]) === true
AND $this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' ) ) {
$items .= '<a href="' . $this -> getUrl ( 1 ) . '">' ;
} else {
$items .= '<a href="' . helper :: baseUrl () . $parentPageId . '"' . $active . $targetBlank . '>' ;
}
$items .= $this -> getData ([ 'page' , $parentPageId , 'title' ]);
2019-06-01 13:07:38 +02:00
$items .= '</a>' ;
2019-05-02 13:21:48 +02:00
}
2019-05-31 23:25:31 +02:00
$itemsChildren = '' ;
2019-05-02 13:21:48 +02:00
foreach ( $childrenPageIds as $childKey ) {
// Passer les entrées masquées
if ( $this -> getData ([ 'page' , $childKey , 'hideMenuSide' ]) === true ) {
continue ;
}
2019-05-30 19:53:18 +02:00
2019-05-02 13:21:48 +02:00
// Propriétés de l'item
$active = ( $childKey === $currentPageId ) ? ' class="active"' : '' ;
$targetBlank = $this -> getData ([ 'page' , $childKey , 'targetBlank' ]) ? ' target="_blank"' : '' ;
// Mise en page du sous-item
2019-05-31 23:25:31 +02:00
$itemsChildren .= '<li class="menuSideChild">' ;
2019-05-02 13:21:48 +02:00
if ( $this -> getData ([ 'page' , $childKey , 'disable' ]) === true
2019-05-31 23:25:31 +02:00
AND $this -> getUser ( 'password' ) !== $this -> getInput ( 'ZWII_USER_PASSWORD' ) ) {
$itemsChildren .= '<a href="' . $this -> getUrl ( 1 ) . '">' ;
} else {
$itemsChildren .= '<a href="' . helper :: baseUrl () . $childKey . '"' . $active . $targetBlank . '>' ;
}
2019-05-02 13:21:48 +02:00
2019-05-31 23:25:31 +02:00
$itemsChildren .= $this -> getData ([ 'page' , $childKey , 'title' ]);
$itemsChildren .= '</a></li>' ;
2019-05-02 13:21:48 +02:00
}
2019-05-31 23:25:31 +02:00
// Concaténe les items enfants
if ( ! empty ( $itemsChildren )) {
$items .= '<ul class="menuSideChild">' ;
$items .= $itemsChildren ;
2019-05-30 19:53:18 +02:00
$items .= '</ul>' ;
2019-06-01 13:07:38 +02:00
} else {
$items .= '</li>' ;
2019-05-30 19:53:18 +02:00
}
2019-06-01 13:07:38 +02:00
2019-05-02 13:21:48 +02:00
}
2019-05-31 23:25:31 +02:00
if ( $onlyChildren === false ) {
$items .= '</ul>' ;
}
2019-05-02 13:21:48 +02:00
// Retourne les items du menu
2019-05-31 23:25:31 +02:00
echo $items ;
2019-05-02 13:21:48 +02:00
}
2018-04-02 08:29:19 +02:00
/**
* Affiche le meta titre
*/
public function showMetaTitle () {
echo '<title>' . $this -> core -> output [ 'metaTitle' ] . '</title>' ;
2018-10-23 16:57:19 +02:00
echo '<meta property="og:title" content="' . $this -> core -> output [ 'metaTitle' ] . '" />' ;
2019-05-03 23:12:49 +02:00
echo '<link rel="canonical" href="' . helper :: baseUrl ( true ) . $this -> getUrl () . '" />' ;
2018-04-02 08:29:19 +02:00
}
/**
* Affiche la meta description
*/
public function showMetaDescription () {
2018-10-23 16:57:19 +02:00
echo '<meta name="description" content="' . $this -> core -> output [ 'metaDescription' ] . '" />' ;
echo '<meta property="og:description" content="' . $this -> core -> output [ 'metaDescription' ] . '" />' ;
2018-04-02 08:29:19 +02:00
}
2018-10-23 21:23:05 +02:00
/**
2018-10-24 15:50:07 +02:00
* Affiche le meta type
2018-10-23 21:23:05 +02:00
*/
public function showMetaType () {
echo '<meta property="og:type" content="website" />' ;
}
2018-10-24 15:50:07 +02:00
/**
* Affiche la meta image ( site screenshot )
*/
2018-11-14 20:18:29 +01:00
public function showMetaImage () {
2019-05-28 09:04:10 +02:00
echo '<meta property="og:image" content="' . helper :: baseUrl () . self :: FILE_DIR . 'source/screenshot.png" />' ;
2018-10-24 15:50:07 +02:00
}
2018-10-23 21:23:05 +02:00
2018-10-24 22:48:10 +02:00
2018-04-02 08:29:19 +02:00
/**
* Affiche la notification
*/
public function showNotification () {
if ( common :: $inputNotices ) {
$notification = 'Impossible de soumettre le formulaire, car il contient des erreurs' ;
$notificationClass = 'notificationError' ;
}
elseif ( empty ( $_SESSION [ 'ZWII_NOTIFICATION_SUCCESS' ]) === false ) {
$notification = $_SESSION [ 'ZWII_NOTIFICATION_SUCCESS' ];
$notificationClass = 'notificationSuccess' ;
unset ( $_SESSION [ 'ZWII_NOTIFICATION_SUCCESS' ]);
}
elseif ( empty ( $_SESSION [ 'ZWII_NOTIFICATION_ERROR' ]) === false ) {
$notification = $_SESSION [ 'ZWII_NOTIFICATION_ERROR' ];
$notificationClass = 'notificationError' ;
unset ( $_SESSION [ 'ZWII_NOTIFICATION_ERROR' ]);
}
elseif ( empty ( $_SESSION [ 'ZWII_NOTIFICATION_OTHER' ]) === false ) {
$notification = $_SESSION [ 'ZWII_NOTIFICATION_OTHER' ];
$notificationClass = 'notificationOther' ;
unset ( $_SESSION [ 'ZWII_NOTIFICATION_OTHER' ]);
}
if ( isset ( $notification ) AND isset ( $notificationClass )) {
2019-05-30 19:53:18 +02:00
echo '<div id="notification" class="' . $notificationClass . '">' . $notification . '<span id="notificationClose">' . template :: ico ( 'cancel' ) . '<!----></span><div id="notificationProgress"></div></div>' ;
2018-04-02 08:29:19 +02:00
}
}
/**
* Affiche la barre de membre
*/
public function showBar () {
if ( $this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )) {
// Items de gauche
$leftItems = '' ;
if ( $this -> getUser ( 'group' ) >= self :: GROUP_MODERATOR ) {
$leftItems .= '<li><select id="barSelectPage">' ;
$leftItems .= '<option value="">Choisissez une page</option>' ;
2019-03-16 16:25:54 +01:00
$leftItems .= '<optgroup label="Pages orphelines">' ;
$orpheline = true ;
2019-01-04 18:53:24 +01:00
$currentPageId = $this -> getData ([ 'page' , $this -> getUrl ( 0 )]) ? $this -> getUrl ( 0 ) : $this -> getUrl ( 2 );
2019-03-16 16:25:54 +01:00
foreach ( $this -> getHierarchy ( null , false ) as $parentPageId => $childrenPageIds ) {
if ( $this -> getData ([ 'page' , $parentPageId , 'position' ]) !== 0 &&
$orpheline ) {
$orpheline = false ;
2019-03-16 22:31:27 +01:00
$leftItems .= '<optgroup label="Pages du menu">' ;
2019-03-16 16:25:54 +01:00
}
// Exclure les barres
if ( $this -> getData ([ 'page' , $parentPageId , 'block' ]) !== 'bar' ) {
$leftItems .= '<option value="' .
helper :: baseUrl () .
$parentPageId . '"' .
2019-03-17 12:47:58 +01:00
( $parentPageId === $currentPageId ? ' selected' : false ) .
2019-03-19 11:31:29 +01:00
( $this -> getData ([ 'page' , $parentPageId , 'disable' ]) === true ? ' class="inactive"' : '' ) .
2019-03-17 12:47:58 +01:00
'>' .
2019-03-16 16:25:54 +01:00
$this -> getData ([ 'page' , $parentPageId , 'title' ]) .
'</option>' ;
foreach ( $childrenPageIds as $childKey ) {
2019-03-19 11:31:29 +01:00
$leftItems .= '<option value="' .
helper :: baseUrl () .
$childKey . '"' .
( $childKey === $currentPageId ? ' selected' : false ) .
( $this -> getData ([ 'page' , $childKey , 'disable' ]) === true ? ' class="inactive"' : '' ) .
2019-03-21 19:55:36 +01:00
'> ' .
2019-03-19 11:31:29 +01:00
$this -> getData ([ 'page' , $childKey , 'title' ]) .
'</option>' ;
2019-03-16 16:25:54 +01:00
}
}
}
2019-05-31 23:25:31 +02:00
$leftItems .= '</optgroup' >
2019-03-16 16:25:54 +01:00
// Afficher les barres
$leftItems .= '<optgroup label="Barres latérales">' ;
foreach ( $this -> getHierarchy ( null , false , true ) as $parentPageId => $childrenPageIds ) {
2018-04-02 08:29:19 +02:00
$leftItems .= '<option value="' . helper :: baseUrl () . $parentPageId . '"' . ( $parentPageId === $currentPageId ? ' selected' : false ) . '>' . $this -> getData ([ 'page' , $parentPageId , 'title' ]) . '</option>' ;
foreach ( $childrenPageIds as $childKey ) {
$leftItems .= '<option value="' . helper :: baseUrl () . $childKey . '"' . ( $childKey === $currentPageId ? ' selected' : false ) . '> ' . $this -> getData ([ 'page' , $childKey , 'title' ]) . '</option>' ;
}
2019-05-31 23:25:31 +02:00
}
$leftItems .= '</optgroup>' ;
2018-04-02 08:29:19 +02:00
$leftItems .= '</select></li>' ;
2019-03-06 14:47:56 +01:00
$leftItems .= '<li><a href="' . helper :: baseUrl () . 'page/add" data-tippy-content="Créer une page ou<br>une barre latérale">' . template :: ico ( 'plus' ) . '</a></li>' ;
2018-04-02 08:29:19 +02:00
if (
// Sur un module de page qui autorise le bouton de modification de la page
$this -> core -> output [ 'showBarEditButton' ]
// Sur une page sans module
OR $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'moduleId' ]) === ''
// Sur une page d'accueil
OR $this -> getUrl ( 0 ) === ''
) {
2019-03-06 14:47:56 +01:00
$leftItems .= '<li><a href="' . helper :: baseUrl () . 'page/edit/' . $this -> getUrl ( 0 ) . '" data-tippy-content="Modifier la page">' . template :: ico ( 'pencil' ) . '</a></li>' ;
2019-05-02 13:21:48 +02:00
$leftItems .= '<li><a id="pageDelete" href="' . helper :: baseUrl () . 'page/delete/' . $this -> getUrl ( 0 ) . '&csrf=' . $_SESSION [ 'csrf' ] . '" data-tippy-content="Effacer la page">' . template :: ico ( 'trash' ) . '</a></li>' ;
2018-04-02 08:29:19 +02:00
}
}
// Items de droite
$rightItems = '' ;
if ( $this -> getUser ( 'group' ) >= self :: GROUP_MODERATOR ) {
2019-05-28 09:04:10 +02:00
$rightItems .= '<li><a href="' . helper :: baseUrl ( false ) . 'core/vendor/filemanager/dialog.php?type=0&akey=' . md5_file ( self :: DATA_DIR . 'core.json' ) . '" data-tippy-content="Gérer les fichiers" data-lity>' . template :: ico ( 'folder' ) . '</a></li>' ;
2018-04-02 08:29:19 +02:00
}
if ( $this -> getUser ( 'group' ) >= self :: GROUP_ADMIN ) {
2019-03-06 14:47:56 +01:00
$rightItems .= '<li><a href="' . helper :: baseUrl () . 'user" data-tippy-content="Configurer les utilisateurs">' . template :: ico ( 'users' ) . '</a></li>' ;
$rightItems .= '<li><a href="' . helper :: baseUrl () . 'theme" data-tippy-content="Personnaliser le thème">' . template :: ico ( 'brush' ) . '</a></li>' ;
2019-05-03 22:48:18 +02:00
$rightItems .= '<li><a href="' . helper :: baseUrl () . 'config" data-tippy-content="Configurer le site">' . template :: ico ( 'cog-alt' ) . '</a></li>' ;
2019-01-25 11:54:37 +01:00
// Mise à jour automatique
2019-03-20 07:45:16 +01:00
if ( helper :: checkNewVersion () ) {
2019-03-06 14:47:56 +01:00
$rightItems .= '<li><a id="barUpdate" href="' . helper :: baseUrl () . 'install/update" data-tippy-content="Mettre à jour Zwii ' . common :: ZWII_VERSION . ' vers ' . helper :: getOnlineVersion () . '">' . template :: ico ( 'update colorRed' ) . '</a></li>' ;
2019-01-25 11:54:37 +01:00
}
// Mise à jour automatique
2018-04-02 08:29:19 +02:00
}
2019-05-27 16:04:07 +02:00
$rightItems .= '<li><a href="' . helper :: baseUrl () . 'user/edit/' . $this -> getUser ( 'id' ) . '/' . $_SESSION [ 'csrf' ] . '" data-tippy-content="Configurer mon compte">' . template :: ico ( 'user' , 'right' ) . '<span id="displayUsername">' . $this -> getUser ( 'firstname' ) . ' ' . $this -> getUser ( 'lastname' ) . '</span></a></li>' ;
2019-03-06 14:47:56 +01:00
$rightItems .= '<li><a id="barLogout" href="' . helper :: baseUrl () . 'user/logout" data-tippy-content="Se déconnecter">' . template :: ico ( 'logout' ) . '</a></li>' ;
2019-02-06 20:40:19 +01:00
// Barre de membre
echo '<div id="bar"><div class="container"><ul id="barLeft">' . $leftItems . '</ul><ul id="barRight">' . $rightItems . '</ul></div></div>' ;
2018-04-02 08:29:19 +02:00
}
}
/**
* Affiche le script
*/
public function showScript () {
ob_start ();
require 'core/core.js.php' ;
$coreScript = ob_get_clean ();
echo '<script>' . helper :: minifyJs ( $coreScript . $this -> core -> output [ 'script' ]) . '</script>' ;
}
/**
* Affiche le style
*/
public function showStyle () {
if ( $this -> core -> output [ 'style' ]) {
2019-05-31 23:25:31 +02:00
echo '<style >' . helper :: minifyCss ( $this -> core -> output [ 'style' ]) . '</style>' ;
2018-04-02 08:29:19 +02:00
}
}
/**
* Affiche l ' import des librairies
*/
public function showVendor () {
// Variables partagées
$vars = 'var baseUrl = ' . json_encode ( helper :: baseUrl ( false )) . ';' ;
$vars .= 'var baseUrlQs = ' . json_encode ( helper :: baseUrl ()) . ';' ;
if (
$this -> getUser ( 'password' ) === $this -> getInput ( 'ZWII_USER_PASSWORD' )
AND $this -> getUser ( 'group' ) >= self :: GROUP_MODERATOR
) {
2019-05-28 09:04:10 +02:00
$vars .= 'var privateKey = ' . json_encode ( md5_file ( self :: DATA_DIR . 'core.json' )) . ';' ;
2018-04-02 08:29:19 +02:00
}
echo '<script>' . helper :: minifyJs ( $vars ) . '</script>' ;
// Librairies
$moduleId = $this -> getData ([ 'page' , $this -> getUrl ( 0 ), 'moduleId' ]);
foreach ( $this -> core -> output [ 'vendor' ] as $vendorName ) {
// Coeur
if ( file_exists ( 'core/vendor/' . $vendorName . '/inc.json' )) {
$vendorPath = 'core/vendor/' . $vendorName . '/' ;
}
// Module
elseif (
$moduleId
AND in_array ( $moduleId , self :: $coreModuleIds ) === false
AND file_exists ( 'module/' . $moduleId . '/vendor/' . $vendorName . '/inc.json' )
) {
$vendorPath = 'module/' . $moduleId . '/vendor/' . $vendorName . '/' ;
}
// Sinon continue
else {
continue ;
}
// Détermine le type d'import en fonction de l'extension de la librairie
$vendorFiles = json_decode ( file_get_contents ( $vendorPath . 'inc.json' ));
foreach ( $vendorFiles as $vendorFile ) {
switch ( pathinfo ( $vendorFile , PATHINFO_EXTENSION )) {
case 'css' :
echo '<link rel="stylesheet" href="' . helper :: baseUrl ( false ) . $vendorPath . $vendorFile . '">' ;
break ;
case 'js' :
echo '<script src="' . helper :: baseUrl ( false ) . $vendorPath . $vendorFile . '"></script>' ;
break ;
}
}
}
}
}
class template {
/**
* Crée un bouton
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function button ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'class' => '' ,
'disabled' => false ,
'href' => 'javascript:void(0);' ,
'ico' => '' ,
'id' => $nameId ,
2019-06-09 15:24:43 +02:00
'name' => $nameId ,
2018-04-02 08:29:19 +02:00
'target' => '' ,
'uniqueSubmission' => false ,
'value' => 'Bouton'
], $attributes );
// Retourne le html
2019-06-01 13:07:38 +02:00
return sprintf (
2018-04-02 08:29:19 +02:00
'<a %s class="button %s %s %s">%s</a>' ,
helper :: sprintAttributes ( $attributes , [ 'class' , 'disabled' , 'ico' , 'value' ]),
$attributes [ 'disabled' ] ? 'disabled' : '' ,
$attributes [ 'class' ],
$attributes [ 'uniqueSubmission' ] ? 'uniqueSubmission' : '' ,
( $attributes [ 'ico' ] ? template :: ico ( $attributes [ 'ico' ], 'right' ) : '' ) . $attributes [ 'value' ]
);
}
/**
* Crée un champ capcha
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function capcha ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'class' => '' ,
'classWrapper' => '' ,
'help' => '' ,
'id' => $nameId ,
'name' => $nameId ,
'value' => ''
], $attributes );
// Génère deux nombres pour le capcha
$firstNumber = mt_rand ( 1 , 15 );
$secondNumber = mt_rand ( 1 , 15 );
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
$html .= self :: label ( $attributes [ 'id' ], 'Combien font ' . $firstNumber . ' + ' . $secondNumber . ' ?' , [
'help' => $attributes [ 'help' ]
]);
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Capcha
$html .= sprintf (
'<input type="text" %s>' ,
helper :: sprintAttributes ( $attributes )
);
// Champs cachés contenant les nombres
$html .= self :: hidden ( $attributes [ 'id' ] . 'FirstNumber' , [
'value' => $firstNumber ,
'before' => false
]);
$html .= self :: hidden ( $attributes [ 'id' ] . 'SecondNumber' , [
'value' => $secondNumber ,
'before' => false
]);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée une case à cocher à sélection multiple
* @ param string $nameId Nom et id du champ
* @ param string $value Valeur de la case à cocher
* @ param string $label Label de la case à cocher
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function checkbox ( $nameId , $value , $label , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'before' => true ,
'checked' => '' ,
'class' => '' ,
'classWrapper' => '' ,
'disabled' => false ,
'help' => '' ,
'id' => $nameId ,
'name' => $nameId
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'checked' ] = ( bool ) common :: $inputBefore [ $attributes [ 'id' ]];
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Case à cocher
$html .= sprintf (
'<input type="checkbox" value="%s" %s>' ,
$value ,
helper :: sprintAttributes ( $attributes )
);
// Label
$html .= self :: label ( $attributes [ 'id' ], '<span>' . $label . '</span>' , [
'help' => $attributes [ 'help' ]
]);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée un champ date
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function date ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'autocomplete' => 'on' ,
'before' => true ,
'class' => '' ,
'classWrapper' => '' ,
'noDirty' => false ,
'disabled' => false ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
'name' => $nameId ,
'placeholder' => '' ,
'readonly' => true ,
'value' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'value' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
else {
$attributes [ 'value' ] = ( $attributes [ 'value' ] ? helper :: filter ( $attributes [ 'value' ], helper :: FILTER_TIMESTAMP ) : '' );
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Date visible
$html .= sprintf (
'<input type="text" class="datepicker %s" value="%s" %s>' ,
$attributes [ 'class' ],
$attributes [ 'value' ],
helper :: sprintAttributes ( $attributes , [ 'class' , 'value' ])
);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée un champ d ' upload de fichier
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function file ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'before' => true ,
'class' => '' ,
'classWrapper' => '' ,
'noDirty' => false ,
'disabled' => false ,
'extensions' => '' ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
2019-05-31 12:51:22 +02:00
'maxlength' => '500' ,
2018-04-02 08:29:19 +02:00
'name' => $nameId ,
'type' => 2 ,
'value' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'value' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Champ caché contenant l'url de la page
$html .= self :: hidden ( $attributes [ 'id' ], [
'class' => 'inputFileHidden' ,
'disabled' => $attributes [ 'disabled' ],
2019-05-31 12:51:22 +02:00
'maxlength' => $attributes [ 'maxlength' ],
2018-04-02 08:29:19 +02:00
'value' => $attributes [ 'value' ]
]);
// Champ d'upload
$html .= '<div>' ;
$html .= sprintf (
' < a
href = " ' .
helper :: baseUrl ( false ) . 'core/vendor/filemanager/dialog.php' .
'?relative_url=1' .
'&field_id=' . $attributes [ 'id' ] .
'&type=' . $attributes [ 'type' ] .
2019-05-28 09:04:10 +02:00
//'&akey=' . md5_file('site/data/'.'core.json') .
'&akey=' . md5_file ( core :: DATA_DIR . 'core.json' ) .
2018-04-02 08:29:19 +02:00
( $attributes [ 'extensions' ] ? '&extensions=' . $attributes [ 'extensions' ] : '' )
. ' "
class = " inputFile %s %s "
% s
data - lity
>
2019-05-03 22:48:18 +02:00
' . self::ico(' upload ', ' right ') . '
2018-04-02 08:29:19 +02:00
< span class = " inputFileLabel " ></ span >
</ a > ' ,
$attributes [ 'class' ],
$attributes [ 'disabled' ] ? 'disabled' : '' ,
2019-05-31 12:51:22 +02:00
helper :: sprintAttributes ( $attributes , [ 'class' , 'extensions' , 'type' , 'maxlength' ])
2019-05-31 12:41:28 +02:00
2018-04-02 08:29:19 +02:00
);
$html .= self :: button ( $attributes [ 'id' ] . 'Delete' , [
'class' => 'inputFileDelete' ,
'value' => self :: ico ( 'cancel' )
]);
$html .= '</div>' ;
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Ferme un formulaire
* @ return string
*/
public static function formClose () {
return '</form>' ;
}
/**
* Ouvre un formulaire protégé par CSRF
* @ param string $id Id du formulaire
* @ return string
*/
public static function formOpen ( $id ) {
// Ouverture formulaire
$html = '<form id="' . $id . '" method="post">' ;
// Stock le token CSRF
$html .= self :: hidden ( 'csrf' , [
'value' => $_SESSION [ 'csrf' ]
]);
// Retourne le html
return $html ;
}
/**
* Crée une aide qui s ' affiche au survole
* @ param string $text Texte de l ' aide
* @ return string
*/
public static function help ( $text ) {
2019-05-30 19:53:18 +02:00
return '<span class="helpButton" data-tippy-content="' . $text . '">' . self :: ico ( 'help' ) . '<!----></span>' ;
2018-04-02 08:29:19 +02:00
}
/**
* Crée un champ caché
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function hidden ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'before' => true ,
'class' => '' ,
'noDirty' => false ,
'id' => $nameId ,
2019-05-31 12:41:28 +02:00
//'maxlength' => '500',
2018-04-02 08:29:19 +02:00
'name' => $nameId ,
'value' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'value' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
// Texte
$html = sprintf ( '<input type="hidden" %s>' , helper :: sprintAttributes ( $attributes , [ 'before' ]));
// Retourne le html
return $html ;
}
/**
* Crée un icône
* @ param string $ico Classe de l ' icône
* @ param string $margin Ajoute un margin autour de l ' icône ( choix : left , right , all )
* @ param bool $animate Ajoute une animation à l ' icône
* @ param string $fontSize Taille de la police
* @ return string
*/
public static function ico ( $ico , $margin = '' , $animate = false , $fontSize = '1em' ) {
2019-05-30 19:53:18 +02:00
return '<span class="zwiico-' . $ico . ( $margin ? ' zwiico-margin-' . $margin : '' ) . ( $animate ? ' animate-spin' : '' ) . '" style="font-size:' . $fontSize . '"><!----></span>' ;
2018-04-02 08:29:19 +02:00
}
/**
* Crée un label
* @ param string $for For du label
* @ param array $attributes Attributs ( $key => $value )
* @ param string $text Texte du label
* @ return string
*/
public static function label ( $for , $text , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'class' => '' ,
'for' => $for ,
'help' => ''
], $attributes );
// Ajout d'une aide
if ( $attributes [ 'help' ] !== '' ) {
$text = $text . self :: help ( $attributes [ 'help' ]);
}
// Retourne le html
return sprintf (
'<label %s>%s</label>' ,
helper :: sprintAttributes ( $attributes ),
$text
);
}
/**
* Crée un champ mail
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function mail ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'autocomplete' => 'on' ,
'before' => true ,
'class' => '' ,
'classWrapper' => '' ,
'noDirty' => false ,
'disabled' => false ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
2019-05-31 12:41:28 +02:00
//'maxlength' => '500',
2018-04-02 08:29:19 +02:00
'name' => $nameId ,
'placeholder' => '' ,
'readonly' => false ,
'value' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'value' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Texte
$html .= sprintf (
'<input type="email" %s>' ,
helper :: sprintAttributes ( $attributes )
);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée une notice
* @ param string $id Id du champ
* @ param string $notice Notice
* @ return string
*/
public static function notice ( $id , $notice ) {
return ' <span id="' . $id . 'Notice" class="notice ' . ( $notice ? '' : 'displayNone' ) . '">' . $notice . '</span>' ;
}
/**
* Crée un champ mot de passe
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function password ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'autocomplete' => 'on' ,
'class' => '' ,
'classWrapper' => '' ,
'noDirty' => false ,
'disabled' => false ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
2019-05-31 12:41:28 +02:00
//'maxlength' => '500',
2018-04-02 08:29:19 +02:00
'name' => $nameId ,
'placeholder' => '' ,
'readonly' => false
], $attributes );
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Mot de passe
$html .= sprintf (
'<input type="password" %s>' ,
helper :: sprintAttributes ( $attributes )
);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée un champ sélection
* @ param string $nameId Nom et id du champ
* @ param array $options Liste des options du champ de sélection ( $value => $text )
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function select ( $nameId , array $options , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'before' => true ,
'class' => '' ,
'classWrapper' => '' ,
'noDirty' => false ,
'disabled' => false ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
'name' => $nameId ,
'selected' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'selected' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Début sélection
$html .= sprintf ( '<select %s>' ,
helper :: sprintAttributes ( $attributes )
);
foreach ( $options as $value => $text ) {
$html .= sprintf (
'<option value="%s"%s>%s</option>' ,
$value ,
$attributes [ 'selected' ] == $value ? ' selected' : '' , // Double == pour ignorer le type de variable car $_POST change les types en string
$text
);
}
// Fin sélection
$html .= '</select>' ;
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée une bulle de dialogue
* @ param string $text Texte de la bulle
* @ return string
*/
public static function speech ( $text ) {
return '<div class="speech"><div class="speechBubble">' . $text . '</div>' . template :: ico ( 'mimi speechMimi' , '' , false , '7em' ) . '</div>' ;
}
/**
* Crée un bouton validation
* @ param string $nameId Nom & id du bouton validation
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function submit ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'class' => '' ,
'disabled' => false ,
'ico' => 'check' ,
'id' => $nameId ,
'name' => $nameId ,
2019-05-31 23:25:31 +02:00
'uniqueSubmission' => false , //true avant 9.1.08
2018-04-02 08:29:19 +02:00
'value' => 'Enregistrer'
], $attributes );
// Retourne le html
2019-06-01 13:07:38 +02:00
return sprintf (
2019-05-31 23:25:31 +02:00
'<button type="submit" class="%s%s" %s>%s</button>' ,
2018-04-02 08:29:19 +02:00
$attributes [ 'class' ],
$attributes [ 'uniqueSubmission' ] ? 'uniqueSubmission' : '' ,
helper :: sprintAttributes ( $attributes , [ 'class' , 'ico' , 'value' ]),
( $attributes [ 'ico' ] ? template :: ico ( $attributes [ 'ico' ], 'right' ) : '' ) . $attributes [ 'value' ]
);
}
/**
* Crée un tableau
* @ param array $cols Cols des colonnes ( format : [ col colonne1 , col colonne2 , etc ])
* @ param array $body Contenu ( format : [[ contenu1 , contenu2 , etc ], [ contenu1 , contenu2 , etc ]])
* @ param array $head Entêtes ( format : [[ titre colonne1 , titre colonne2 , etc ])
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function table ( array $cols = [], array $body = [], array $head = [], array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'class' => '' ,
'classWrapper' => '' ,
'id' => ''
], $attributes );
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="tableWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Début tableau
$html .= '<table id="' . $attributes [ 'id' ] . '" class="table ' . $attributes [ 'class' ] . '">' ;
// Entêtes
if ( $head ) {
// Début des entêtes
$html .= '<thead>' ;
$html .= '<tr>' ;
$i = 0 ;
foreach ( $head as $th ) {
$html .= '<th class="col' . $cols [ $i ++ ] . '">' . $th . '</th>' ;
}
// Fin des entêtes
$html .= '</tr>' ;
$html .= '</thead>' ;
}
// Début contenu
$html .= '<tbody>' ;
foreach ( $body as $tr ) {
$html .= '<tr>' ;
$i = 0 ;
foreach ( $tr as $td ) {
$html .= '<td class="col' . $cols [ $i ++ ] . '">' . $td . '</td>' ;
}
$html .= '</tr>' ;
}
// Fin contenu
$html .= '</tbody>' ;
// Fin tableau
$html .= '</table>' ;
// Fin container
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée un champ texte court
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function text ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'autocomplete' => 'on' ,
'before' => true ,
'class' => '' ,
'classWrapper' => '' ,
'noDirty' => false ,
'disabled' => false ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
2019-05-31 12:41:28 +02:00
//'maxlength' => '500',
2018-04-02 08:29:19 +02:00
'name' => $nameId ,
'placeholder' => '' ,
'readonly' => false ,
'value' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'value' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Texte
$html .= sprintf (
'<input type="text" %s>' ,
helper :: sprintAttributes ( $attributes )
);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
/**
* Crée un champ texte long
* @ param string $nameId Nom et id du champ
* @ param array $attributes Attributs ( $key => $value )
* @ return string
*/
public static function textarea ( $nameId , array $attributes = []) {
// Attributs par défaut
$attributes = array_merge ([
'before' => true ,
'class' => '' , // editorWysiwyg et editorCss possible pour utiliser le éditeurs (il faut également instancier les librairies)
'classWrapper' => '' ,
'disabled' => false ,
'noDirty' => false ,
'help' => '' ,
'id' => $nameId ,
'label' => '' ,
2019-05-31 12:41:28 +02:00
//'maxlength' => '500',
2018-04-02 08:29:19 +02:00
'name' => $nameId ,
'readonly' => false ,
'value' => ''
], $attributes );
// Sauvegarde des données en cas d'erreur
if ( $attributes [ 'before' ] AND array_key_exists ( $attributes [ 'id' ], common :: $inputBefore )) {
$attributes [ 'value' ] = common :: $inputBefore [ $attributes [ 'id' ]];
}
// Début du wrapper
$html = '<div id="' . $attributes [ 'id' ] . 'Wrapper" class="inputWrapper ' . $attributes [ 'classWrapper' ] . '">' ;
// Label
if ( $attributes [ 'label' ]) {
$html .= self :: label ( $attributes [ 'id' ], $attributes [ 'label' ], [
'help' => $attributes [ 'help' ]
]);
}
// Notice
$notice = '' ;
if ( array_key_exists ( $attributes [ 'id' ], common :: $inputNotices )) {
$notice = common :: $inputNotices [ $attributes [ 'id' ]];
$attributes [ 'class' ] .= ' notice' ;
}
$html .= self :: notice ( $attributes [ 'id' ], $notice );
// Texte long
$html .= sprintf (
'<textarea %s>%s</textarea>' ,
helper :: sprintAttributes ( $attributes , [ 'value' ]),
$attributes [ 'value' ]
);
// Fin du wrapper
$html .= '</div>' ;
// Retourne le html
return $html ;
}
2019-04-02 09:22:46 +02:00
}