Compare commits

..

No commits in common. "d8d0d68f471caf84f94d8bca46256e0a10a69379" and "887ce73f027f53130ed2e1a3ed9d3bef1f9da0fa" have entirely different histories.

6 changed files with 18 additions and 6 deletions

View File

@ -19,7 +19,9 @@ class blog extends common {
const REALNAME = 'Blog';
const DELETE = true;
const UPDATE = true;
const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json)
const DATADIRECTORY = [
'fr/module.json'
];
const EDIT_OWNER = 'owner';
const EDIT_GROUP = 'group';

View File

@ -20,7 +20,9 @@ class form extends common {
const REALNAME = 'Formulaire';
const DELETE = true;
const UPDATE = true;
const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json)
const DATADIRECTORY = [
'fr/module.json'
];
public static $actions = [
'config' => self::GROUP_MODERATOR,

View File

@ -21,7 +21,9 @@ class gallery extends common {
const REALNAME = 'Galerie';
const DELETE = true;
const UPDATE = true;
const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json)
const DATADIRECTORY = [
'fr/module.json'
];
const SORT_ASC = 'SORT_ASC';
const SORT_DSC = 'SORT_DSC';

View File

@ -19,7 +19,9 @@ class news extends common {
const REALNAME = 'Actualités';
const DELETE = true;
const UPDATE = true;
const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json)
const DATADIRECTORY = [
'fr/module.json'
];
public static $actions = [
'add' => self::GROUP_MODERATOR,

View File

@ -19,7 +19,9 @@ class redirection extends common {
const REALNAME = 'Redirection';
const DELETE = true;
const UPDATE = true;
const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json)
const DATADIRECTORY = [
'fr/module.json'
];
public static $actions = [
'config' => self::GROUP_MODERATOR,

View File

@ -22,7 +22,9 @@ class search extends common {
const REALNAME = 'Recherche';
const DELETE = true;
const UPDATE = true;
const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json)
const DATADIRECTORY = [
'fr/module.json'
];
public static $actions = [
'index' => self::GROUP_VISITOR,