forked from ZwiiCMS-Team/ZwiiCMS
Merge branch '10404' into 10500
This commit is contained in:
commit
1244f2a60c
@ -5,6 +5,12 @@
|
|||||||
- Gestion des module dans l'interface d'administration.
|
- Gestion des module dans l'interface d'administration.
|
||||||
- à compléter..
|
- à compléter..
|
||||||
|
|
||||||
|
## version 10.4.04
|
||||||
|
- Correction :
|
||||||
|
- Module Blog : balise non fermée dans les commentaires.
|
||||||
|
- Modifications :
|
||||||
|
-Constantes de modules.
|
||||||
|
|
||||||
## version 10.4.03
|
## version 10.4.03
|
||||||
- Corrections :
|
- Corrections :
|
||||||
- En-tête html : absence de la langue.
|
- En-tête html : absence de la langue.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
# ZwiiCMS 10.4.03
|
# ZwiiCMS 10.4.04
|
||||||
|
|
||||||
Zwii est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation.
|
Zwii est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation.
|
||||||
|
|
||||||
|
@ -15,6 +15,14 @@
|
|||||||
|
|
||||||
class blog extends common {
|
class blog extends common {
|
||||||
|
|
||||||
|
const VERSION = '4.4';
|
||||||
|
const REALNAME = 'Blog';
|
||||||
|
const DELETE = true;
|
||||||
|
const UPDATE = true;
|
||||||
|
const DATADIRECTORY = [
|
||||||
|
'fr/module.json'
|
||||||
|
];
|
||||||
|
|
||||||
const EDIT_OWNER = 'owner';
|
const EDIT_OWNER = 'owner';
|
||||||
const EDIT_GROUP = 'group';
|
const EDIT_GROUP = 'group';
|
||||||
const EDIT_ALL = 'all';
|
const EDIT_ALL = 'all';
|
||||||
@ -88,9 +96,6 @@ class blog extends common {
|
|||||||
|
|
||||||
public static $users = [];
|
public static $users = [];
|
||||||
|
|
||||||
const VERSION = '4.3';
|
|
||||||
const REALNAME = 'Blog';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flux RSS
|
* Flux RSS
|
||||||
*/
|
*/
|
||||||
|
@ -144,6 +144,7 @@
|
|||||||
? strftime('%d %B %Y - %H:%M', $comment['createdOn'])
|
? strftime('%d %B %Y - %H:%M', $comment['createdOn'])
|
||||||
: utf8_encode(strftime('%d %B %Y - %H:%M', $comment['createdOn']));
|
: utf8_encode(strftime('%d %B %Y - %H:%M', $comment['createdOn']));
|
||||||
?>
|
?>
|
||||||
|
</h4>
|
||||||
<?php echo $comment['content']; ?>
|
<?php echo $comment['content']; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
@ -16,6 +16,14 @@
|
|||||||
|
|
||||||
class form extends common {
|
class form extends common {
|
||||||
|
|
||||||
|
const VERSION = '2.8';
|
||||||
|
const REALNAME = 'Formulaire';
|
||||||
|
const DELETE = true;
|
||||||
|
const UPDATE = true;
|
||||||
|
const DATADIRECTORY = [
|
||||||
|
'fr/module.json'
|
||||||
|
];
|
||||||
|
|
||||||
public static $actions = [
|
public static $actions = [
|
||||||
'config' => self::GROUP_MODERATOR,
|
'config' => self::GROUP_MODERATOR,
|
||||||
'data' => self::GROUP_MODERATOR,
|
'data' => self::GROUP_MODERATOR,
|
||||||
@ -32,8 +40,6 @@ class form extends common {
|
|||||||
|
|
||||||
public static $pagination;
|
public static $pagination;
|
||||||
|
|
||||||
const VERSION = '2.7';
|
|
||||||
const REALNAME = 'Formulaire';
|
|
||||||
|
|
||||||
// Objets
|
// Objets
|
||||||
const TYPE_MAIL = 'mail';
|
const TYPE_MAIL = 'mail';
|
||||||
|
@ -16,12 +16,19 @@
|
|||||||
|
|
||||||
class gallery extends common {
|
class gallery extends common {
|
||||||
|
|
||||||
|
|
||||||
|
const VERSION = '2.6';
|
||||||
|
const REALNAME = 'Galerie';
|
||||||
|
const DELETE = true;
|
||||||
|
const UPDATE = true;
|
||||||
|
const DATADIRECTORY = [
|
||||||
|
'fr/module.json'
|
||||||
|
];
|
||||||
|
|
||||||
const SORT_ASC = 'SORT_ASC';
|
const SORT_ASC = 'SORT_ASC';
|
||||||
const SORT_DSC = 'SORT_DSC';
|
const SORT_DSC = 'SORT_DSC';
|
||||||
const SORT_HAND = 'SORT_HAND';
|
const SORT_HAND = 'SORT_HAND';
|
||||||
|
|
||||||
const VERSION = '2.5';
|
|
||||||
const REALNAME = 'Galerie';
|
|
||||||
|
|
||||||
public static $directories = [];
|
public static $directories = [];
|
||||||
|
|
||||||
|
@ -15,6 +15,14 @@
|
|||||||
|
|
||||||
class news extends common {
|
class news extends common {
|
||||||
|
|
||||||
|
const VERSION = '2.1';
|
||||||
|
const REALNAME = 'Actualités';
|
||||||
|
const DELETE = true;
|
||||||
|
const UPDATE = true;
|
||||||
|
const DATADIRECTORY = [
|
||||||
|
'fr/module.json'
|
||||||
|
];
|
||||||
|
|
||||||
public static $actions = [
|
public static $actions = [
|
||||||
'add' => self::GROUP_MODERATOR,
|
'add' => self::GROUP_MODERATOR,
|
||||||
'config' => self::GROUP_MODERATOR,
|
'config' => self::GROUP_MODERATOR,
|
||||||
|
@ -15,13 +15,19 @@
|
|||||||
|
|
||||||
class redirection extends common {
|
class redirection extends common {
|
||||||
|
|
||||||
|
const VERSION = '1.5';
|
||||||
|
const REALNAME = 'Redirection';
|
||||||
|
const DELETE = true;
|
||||||
|
const UPDATE = true;
|
||||||
|
const DATADIRECTORY = [
|
||||||
|
'fr/module.json'
|
||||||
|
];
|
||||||
|
|
||||||
public static $actions = [
|
public static $actions = [
|
||||||
'config' => self::GROUP_MODERATOR,
|
'config' => self::GROUP_MODERATOR,
|
||||||
'index' => self::GROUP_VISITOR
|
'index' => self::GROUP_VISITOR
|
||||||
];
|
];
|
||||||
|
|
||||||
const VERSION = '1.4';
|
|
||||||
const REALNAME = 'Redirection';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configuration
|
* Configuration
|
||||||
|
@ -18,6 +18,14 @@
|
|||||||
|
|
||||||
class search extends common {
|
class search extends common {
|
||||||
|
|
||||||
|
const VERSION = '1.3';
|
||||||
|
const REALNAME = 'Recherche';
|
||||||
|
const DELETE = true;
|
||||||
|
const UPDATE = true;
|
||||||
|
const DATADIRECTORY = [
|
||||||
|
'fr/module.json'
|
||||||
|
];
|
||||||
|
|
||||||
public static $actions = [
|
public static $actions = [
|
||||||
'index' => self::GROUP_VISITOR,
|
'index' => self::GROUP_VISITOR,
|
||||||
'config' => self::GROUP_MODERATOR
|
'config' => self::GROUP_MODERATOR
|
||||||
@ -38,8 +46,6 @@ class search extends common {
|
|||||||
400 => '400 caractères',
|
400 => '400 caractères',
|
||||||
];
|
];
|
||||||
|
|
||||||
const VERSION = '1.2';
|
|
||||||
const REALNAME = 'Recherche';
|
|
||||||
|
|
||||||
// Configuration vide
|
// Configuration vide
|
||||||
public function config() {
|
public function config() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user