ZwiiCMS/module/form/form.php

549 lines
16 KiB
PHP
Raw Permalink Normal View History

2018-04-02 08:29:19 +02:00
<?php
/**
* This file is part of Zwii.
*
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Rémi Jean <remi.jean@outlook.com>
* @copyright Copyright (C) 2008-2018, Rémi Jean
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2024-01-14 19:31:28 +01:00
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
2023-03-25 18:24:16 +01:00
class form extends common
{
2018-04-02 08:29:19 +02:00
2023-11-07 10:59:08 +01:00
const VERSION = '4.2';
const REALNAME = 'Formulaire';
2021-04-06 11:20:04 +02:00
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
2018-04-02 08:29:19 +02:00
public static $actions = [
2023-07-05 18:04:42 +02:00
'config' => self::GROUP_EDITOR,
'option' => self::GROUP_EDITOR,
'data' => self::GROUP_EDITOR,
'delete' => self::GROUP_EDITOR,
'deleteall' => self::GROUP_EDITOR,
'index' => self::GROUP_VISITOR,
2023-07-05 18:04:42 +02:00
'export2csv' => self::GROUP_EDITOR,
2018-04-02 08:29:19 +02:00
];
public static $data = [];
public static $pages = [];
2020-06-03 08:54:48 +02:00
2018-04-02 08:29:19 +02:00
public static $pagination;
2020-06-03 08:54:48 +02:00
2022-02-18 12:43:48 +01:00
// Nombre d'articles dans la page de config:
2022-11-07 08:47:49 +01:00
public static $itemsperPage = 20;
2022-02-18 12:43:48 +01:00
2018-04-02 08:29:19 +02:00
2019-11-26 19:22:30 +01:00
// Objets
2018-04-02 08:29:19 +02:00
const TYPE_MAIL = 'mail';
const TYPE_SELECT = 'select';
const TYPE_TEXT = 'text';
const TYPE_TEXTAREA = 'textarea';
2019-11-26 19:22:30 +01:00
const TYPE_DATETIME = 'date';
const TYPE_CHECKBOX = 'checkbox';
const TYPE_LABEL = 'label';
const ITEMSPAGE = 10;
2019-02-14 15:17:03 +01:00
2018-04-02 08:29:19 +02:00
public static $types = [
self::TYPE_LABEL => 'Étiquette',
2018-04-02 08:29:19 +02:00
self::TYPE_TEXT => 'Champ texte',
self::TYPE_TEXTAREA => 'Grand champ texte',
self::TYPE_MAIL => 'Adresse électronique',
2018-11-28 12:44:32 +01:00
self::TYPE_SELECT => 'Sélection',
2020-06-03 08:54:48 +02:00
self::TYPE_CHECKBOX => 'Case à cocher',
2020-01-21 09:14:04 +01:00
self::TYPE_DATETIME => 'Date'
2018-04-02 08:29:19 +02:00
];
2019-02-12 14:39:36 +01:00
public static $listUsers = [
];
2021-05-03 09:02:58 +02:00
public static $signature = [
'text' => 'Nom du site',
'logo' => 'Logo du site'
];
public static $logoWidth = [
'40' => '40%',
'60' => '60%',
'80' => '80%',
'100' => '100%'
];
2022-02-18 12:43:48 +01:00
public static $optionOffset = [
2023-03-25 18:24:16 +01:00
0 => 'Aucune',
1 => 'Une colonne',
2 => 'Deux colonnes'
2022-02-18 12:43:48 +01:00
];
public static $optionWidth = [
2023-03-25 18:24:16 +01:00
6 => 'Six colonnes',
7 => 'Sept colonnes',
8 => 'Huit colonnes',
9 => 'Neuf colonnes',
10 => 'Dix colonnes',
11 => 'Onze colonnes',
12 => 'Douze colonnes',
2022-02-18 12:43:48 +01:00
];
public static $optionAlign = [
2023-03-25 18:24:16 +01:00
'' => 'A gauche',
'textAlignCenter' => 'Au centre',
'textAlignRight' => 'A droite'
2022-02-18 12:43:48 +01:00
];
2023-07-25 11:07:55 +02:00
// Format fixe temporaire
public static $dateFormat = 'd/m/Y';
2022-02-18 12:43:48 +01:00
2018-04-02 08:29:19 +02:00
/**
* Configuration
*/
2023-03-25 18:24:16 +01:00
public function config()
{
2022-10-10 11:28:27 +02:00
// Mise à jour des données de module
$this->update();
// Liste des utilisateurs
$userIdsFirstnames = helper::arrayColumn($this->getData(['user']), 'firstname');
ksort($userIdsFirstnames);
2023-03-25 18:24:16 +01:00
self::$listUsers[] = '';
foreach ($userIdsFirstnames as $userId => $userFirstname) {
self::$listUsers[] = $userId;
}
2018-04-02 08:29:19 +02:00
// Soumission du formulaire
if (
2023-06-30 09:09:39 +02:00
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
$this->isPost()
) {
// Génération des données vides
2020-12-01 21:05:22 +01:00
if ($this->getData(['module', $this->getUrl(0), 'data']) === null) {
$this->setData(['module', $this->getUrl(0), 'data', []]);
}
2018-04-02 08:29:19 +02:00
// Génération des champs
$inputs = [];
2023-03-25 18:24:16 +01:00
foreach ($this->getInput('formConfigPosition', null) as $index => $position) {
2018-04-02 08:29:19 +02:00
$inputs[] = [
2023-03-25 18:24:16 +01:00
'name' => html_entity_decode($this->getInput('formConfigName[' . $index . ']')),
2018-04-02 08:29:19 +02:00
'position' => helper::filter($position, helper::FILTER_INT),
'required' => $this->getInput('formConfigRequired[' . $index . ']', helper::FILTER_BOOLEAN),
'type' => $this->getInput('formConfigType[' . $index . ']'),
'values' => $this->getInput('formConfigValues[' . $index . ']')
];
}
$this->setData(['module', $this->getUrl(0), 'input', $inputs]);
// Valeurs en sortie
$this->addOutput([
2023-01-24 09:57:45 +01:00
'notification' => helper::translate('Modifications enregistrées'),
2018-04-02 08:29:19 +02:00
'redirect' => helper::baseUrl() . $this->getUrl(),
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
2023-02-04 22:29:26 +01:00
'title' => helper::translate('Configuration du module'),
2018-04-02 08:29:19 +02:00
'vendor' => [
2018-11-28 12:44:32 +01:00
'html-sortable',
'flatpickr'
2018-04-02 08:29:19 +02:00
],
'view' => 'config'
]);
}
2022-02-18 12:43:48 +01:00
2023-03-25 18:24:16 +01:00
public function option()
{
2022-02-18 12:43:48 +01:00
// Liste des utilisateurs
$userIdsFirstnames = helper::arrayColumn($this->getData(['user']), 'firstname');
2022-02-18 12:43:48 +01:00
ksort($userIdsFirstnames);
2023-03-25 18:24:16 +01:00
self::$listUsers[] = '';
2022-02-18 12:43:48 +01:00
foreach ($userIdsFirstnames as $userId => $userFirstname) {
2023-03-25 18:24:16 +01:00
self::$listUsers[] = $userId;
2022-02-18 12:43:48 +01:00
}
// Soumission du formulaire
if (
2023-06-30 09:09:39 +02:00
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
$this->isPost()
) {
2022-02-18 12:43:48 +01:00
// Débordement
$width = $this->getInput('formOptionWidth');
2023-03-25 18:24:16 +01:00
if ($this->getInput('formOptionWidth', helper::FILTER_INT) + $this->getInput('formOptionOffset', helper::FILTER_INT) > 12) {
$width = (string) $this->getInput('formOptionWidth', helper::FILTER_INT) - $this->getInput('formOptionOffset', helper::FILTER_INT);
2022-02-18 12:43:48 +01:00
}
// Configuration
$this->setData([
'module',
$this->getUrl(0),
'config',
[
'button' => $this->getInput('formOptionButton'),
'captcha' => $this->getInput('formOptionCaptcha', helper::FILTER_BOOLEAN),
'group' => $this->getInput('formOptionGroup', helper::FILTER_INT),
2023-03-25 18:24:16 +01:00
'user' => self::$listUsers[$this->getInput('formOptionUser', helper::FILTER_INT)],
'mail' => $this->getInput('formOptionMail'),
2022-02-18 12:43:48 +01:00
'pageId' => $this->getInput('formOptionPageIdToggle', helper::FILTER_BOOLEAN) === true ? $this->getInput('formOptionPageId', helper::FILTER_ID) : '',
2023-03-25 18:24:16 +01:00
'subject' => html_entity_decode($this->getInput('formOptionSubject')),
2022-02-18 12:43:48 +01:00
'replyto' => $this->getInput('formOptionMailReplyTo', helper::FILTER_BOOLEAN),
'signature' => $this->getInput('formOptionSignature'),
'logoUrl' => $this->getInput('formOptionLogo'),
'logoWidth' => $this->getInput('formOptionLogoWidth'),
2023-03-25 18:24:16 +01:00
'offset' => $this->getInput('formOptionOffset'),
'width' => $width,
'align' => $this->getInput('formOptionAlign'),
2022-02-18 12:43:48 +01:00
]
]);
// Génération des données vides
if ($this->getData(['module', $this->getUrl(0), 'data']) === null) {
$this->setData(['module', $this->getUrl(0), 'data', []]);
}
// Valeurs en sortie
$this->addOutput([
2023-01-24 09:57:45 +01:00
'notification' => helper::translate('Modifications enregistrées'),
2022-02-18 12:43:48 +01:00
'redirect' => helper::baseUrl() . $this->getUrl(),
'state' => true
]);
2023-03-25 18:24:16 +01:00
} else {
2022-02-18 12:43:48 +01:00
// Liste des pages
foreach ($this->getHierarchy(null, false, false) as $parentPageId => $childrenPageIds) {
2022-02-18 12:43:48 +01:00
self::$pages[$parentPageId] = $this->getData(['page', $parentPageId, 'title']);
2023-03-25 18:24:16 +01:00
foreach ($childrenPageIds as $childKey) {
self::$pages[$childKey] = '&nbsp;»&nbsp;' . $this->getData(['page', $childKey, 'title']);
2022-02-18 12:43:48 +01:00
}
}
// Valeurs en sortie
$this->addOutput([
2023-01-23 15:44:11 +01:00
'title' => helper::translate('Options de configuration'),
2022-02-18 12:43:48 +01:00
'vendor' => [
'html-sortable',
'flatpickr'
],
'view' => 'option'
]);
}
}
2018-04-02 08:29:19 +02:00
/**
* Données enregistrées
*/
2023-03-25 18:24:16 +01:00
public function data()
{
2018-04-02 08:29:19 +02:00
$data = $this->getData(['module', $this->getUrl(0), 'data']);
if (
2023-07-05 17:34:55 +02:00
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
$data
) {
2018-04-02 08:29:19 +02:00
// Pagination
2022-11-07 08:47:49 +01:00
$pagination = helper::pagination($data, $this->getUrl(), self::$itemsperPage);
2018-04-02 08:29:19 +02:00
// Liste des pages
self::$pages = $pagination['pages'];
2018-04-02 08:29:19 +02:00
// Inverse l'ordre du tableau
$dataIds = array_reverse(array_keys($data));
$data = array_reverse($data);
// Données en fonction de la pagination
2023-03-25 18:24:16 +01:00
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
2018-04-02 08:29:19 +02:00
$content = '';
2023-03-25 18:24:16 +01:00
foreach ($data[$i] as $input => $value) {
2018-04-02 08:29:19 +02:00
$content .= $input . ' : ' . $value . '<br>';
}
self::$data[] = [
$content,
template::button('formDataDelete' . $dataIds[$i], [
'class' => 'formDataDelete buttonRed',
2023-06-19 19:46:00 +02:00
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $dataIds[$i],
'value' => template::ico('trash')
2018-04-02 08:29:19 +02:00
])
];
}
}
// Valeurs en sortie
$this->addOutput([
'title' => helper::translate('Export des données'),
2018-04-02 08:29:19 +02:00
'view' => 'data'
]);
}
/**
* Export CSV
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2024-01-14 19:31:28 +01:00
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
*/
2023-03-25 18:24:16 +01:00
public function export2csv()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true
) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
2019-01-24 09:31:19 +01:00
} else {
$data = $this->getData(['module', $this->getUrl(0), 'data']);
if ($data !== []) {
2023-03-25 18:24:16 +01:00
$csvfilename = 'data-' . date('dmY') . '-' . date('hm') . '-' . rand(10, 99) . '.csv';
if (!file_exists(self::FILE_DIR . 'source/data')) {
mkdir(self::FILE_DIR . 'source/data', 0755);
}
2023-03-25 18:24:16 +01:00
$fp = fopen(self::FILE_DIR . 'source/data/' . $csvfilename, 'w');
fputcsv($fp, array_keys($data[1]), ';', '"');
foreach ($data as $fields) {
2023-03-25 18:24:16 +01:00
fputcsv($fp, $fields, ';', '"');
}
fclose($fp);
// Valeurs en sortie
$this->addOutput([
2023-07-05 17:34:55 +02:00
'notification' => sprintf(helper::translate('Export CSV effectué dans %s '), $csvfilename ),
2023-03-25 18:24:16 +01:00
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'state' => true
]);
} else {
$this->addOutput([
2023-01-24 09:57:45 +01:00
'notification' => helper::translate('Aucune donnée à exporter'),
2023-03-25 18:24:16 +01:00
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data'
]);
}
}
}
2018-04-02 08:29:19 +02:00
/**
* Suppression
*/
2023-03-25 18:24:16 +01:00
public function deleteall()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true
) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
2018-04-02 08:29:19 +02:00
]);
2020-06-03 08:54:48 +02:00
} else {
$data = ($this->getData(['module', $this->getUrl(0), 'data']));
2023-03-25 18:24:16 +01:00
if (count($data) > 0) {
// Suppression multiple
2023-03-25 18:24:16 +01:00
for ($i = 1; $i <= count($data); $i++) {
2023-06-20 19:44:46 +02:00
$this->deleteData(['module', $this->getUrl(0), 'data', $i]);
}
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
2023-01-24 09:57:45 +01:00
'notification' => helper::translate('Données effacées'),
'state' => true
]);
} else {
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
2023-01-24 09:57:45 +01:00
'notification' => helper::translate('Aucune donnée à effacer')
]);
}
2018-04-02 08:29:19 +02:00
}
}
2020-06-03 08:54:48 +02:00
/**
* Suppression
*/
2023-03-25 18:24:16 +01:00
public function delete()
{
2023-06-20 20:35:26 +02:00
// Action interdite
if ($this->getUser('permission', __CLASS__, __FUNCTION__) !== true) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
2018-04-02 08:29:19 +02:00
]);
} else {
// La donnée n'existe pas
2023-03-25 18:24:16 +01:00
if ($this->getData(['module', $this->getUrl(0), 'data', $this->getUrl(2)]) === null) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Suppression
else {
$this->deleteData(['module', $this->getUrl(0), 'data', $this->getUrl(2)]);
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
2023-01-24 09:57:45 +01:00
'notification' => helper::translate('Donnée effacée'),
'state' => true
]);
}
2018-04-02 08:29:19 +02:00
}
}
2018-04-02 08:29:19 +02:00
/**
* Accueil
*/
2023-03-25 18:24:16 +01:00
public function index()
{
2022-10-10 11:28:27 +02:00
// Mise à jour des données de module
$this->update();
2018-04-02 08:29:19 +02:00
// Soumission du formulaire
if (
$this->isPost()
) {
// Check la captcha
2023-03-25 18:24:16 +01:00
if (
$this->getData(['module', $this->getUrl(0), 'config', 'captcha'])
// AND $this->getInput('formcaptcha', helper::FILTER_INT) !== $this->getInput('formcaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('formcaptchaSecondNumber', helper::FILTER_INT))
2023-03-25 18:24:16 +01:00
and password_verify($this->getInput('formCaptcha', helper::FILTER_INT), $this->getInput('formCaptchaResult')) === false
) {
2023-01-24 09:57:45 +01:00
self::$inputNotices['formCaptcha'] = helper::translate('Captcha incorrect');
2020-06-03 08:54:48 +02:00
2018-04-02 08:29:19 +02:00
}
// Préparation le contenu du mail
$data = [];
2020-02-28 14:58:50 +01:00
$replyTo = null;
2020-06-03 08:54:48 +02:00
$content = '';
2023-03-25 18:24:16 +01:00
foreach ($this->getData(['module', $this->getUrl(0), 'input']) as $index => $input) {
2018-04-02 08:29:19 +02:00
// Filtre la valeur
2023-03-25 18:24:16 +01:00
switch ($input['type']) {
2018-04-02 08:29:19 +02:00
case self::TYPE_MAIL:
$filter = helper::FILTER_MAIL;
break;
case self::TYPE_TEXTAREA:
$filter = helper::FILTER_STRING_LONG;
break;
2020-06-03 08:54:48 +02:00
case self::TYPE_DATETIME:
2018-11-28 15:32:22 +01:00
$filter = helper::FILTER_STRING_SHORT; // Mettre TYPE_DATETIME pour récupérer un TIMESTAMP
2018-11-28 12:44:32 +01:00
break;
2020-06-03 08:54:48 +02:00
case self::TYPE_CHECKBOX:
2019-01-23 13:07:28 +01:00
$filter = helper::FILTER_BOOLEAN;
break;
2018-04-02 08:29:19 +02:00
default:
$filter = helper::FILTER_STRING_SHORT;
}
2023-07-25 11:07:55 +02:00
// Application des filtres
2019-11-27 14:28:23 +01:00
$value = $this->getInput('formInput[' . $index . ']', $filter, $input['required']) === true ? 'X' : $this->getInput('formInput[' . $index . ']', $filter, $input['required']);
2023-07-25 11:07:55 +02:00
// Convertit la date au format correct
$value = $input['type'] === self::TYPE_DATETIME ? date_format(date_create($value), 'd/m/Y') : $value;
2020-06-03 08:54:48 +02:00
// premier champ email ajouté au mail en reply si option active
2023-03-25 18:24:16 +01:00
if (
$this->getData(['module', $this->getUrl(0), 'config', 'replyto']) === true &&
$input['type'] === 'mail'
) {
$replyTo = $value;
2023-03-25 18:24:16 +01:00
}
2018-04-02 08:29:19 +02:00
// Préparation des données pour la création dans la base
2023-07-25 11:07:55 +02:00
2018-04-02 08:29:19 +02:00
$data[$this->getData(['module', $this->getUrl(0), 'input', $index, 'name'])] = $value;
// Préparation des données pour le mail
$content .= '<strong>' . $this->getData(['module', $this->getUrl(0), 'input', $index, 'name']) . ' :</strong> ' . $value . '<br>';
}
// Crée les données
$this->setData(['module', $this->getUrl(0), 'data', helper::increment(1, $this->getData(['module', $this->getUrl(0), 'data'])), $data]);
// Envoi du mail
2019-02-13 19:57:10 +01:00
// Rechercher l'adresse en fonction du mail
2018-04-02 08:29:19 +02:00
$sent = true;
2023-03-25 18:24:16 +01:00
$singleuser = $this->getData([
'user',
$this->getData(['module', $this->getUrl(0), 'config', 'user']),
'mail'
]);
2019-02-12 14:39:36 +01:00
$singlemail = $this->getData(['module', $this->getUrl(0), 'config', 'mail']);
2019-03-10 20:56:36 +01:00
$group = $this->getData(['module', $this->getUrl(0), 'config', 'group']);
2019-02-13 19:57:10 +01:00
// Verification si le mail peut être envoyé
2023-03-25 18:24:16 +01:00
if (
self::$inputNotices === [] && (
2019-03-10 20:56:36 +01:00
$group > 0 ||
$singleuser !== '' ||
2023-03-25 18:24:16 +01:00
$singlemail !== '')
2018-04-02 08:29:19 +02:00
) {
// Utilisateurs dans le groupe
2019-03-10 20:56:36 +01:00
$to = [];
2023-03-25 18:24:16 +01:00
if ($group > 0) {
foreach ($this->getData(['user']) as $userId => $user) {
if ($user['group'] >= $group) {
$to[] = $user['mail'];
}
2018-04-02 08:29:19 +02:00
}
2020-06-03 08:54:48 +02:00
}
2019-02-12 14:39:36 +01:00
// Utilisateur désigné
if (!empty($singleuser)) {
$to[] = $singleuser;
}
// Mail désigné
if (!empty($singlemail)) {
$to[] = $singlemail;
}
2023-03-25 18:24:16 +01:00
if ($to) {
2018-04-02 08:29:19 +02:00
// Sujet du mail
$subject = $this->getData(['module', $this->getUrl(0), 'config', 'subject']);
2023-03-25 18:24:16 +01:00
if ($subject === '') {
2018-04-02 08:29:19 +02:00
$subject = 'Nouveau message en provenance de votre site';
}
// Envoi le mail
$sent = $this->sendMail(
$to,
$subject,
'Nouveau message en provenance de la page "' . $this->getData(['page', $this->getUrl(0), 'title']) . '" :<br><br>' .
$content,
2023-02-23 16:02:06 +01:00
$replyTo,
2023-07-16 18:47:50 +02:00
$this->getData(['config', 'smtp', 'from'])
2018-04-02 08:29:19 +02:00
);
}
}
// Redirection
$redirect = $this->getData(['module', $this->getUrl(0), 'config', 'pageId']);
// Valeurs en sortie
$this->addOutput([
2023-01-24 09:57:45 +01:00
'notification' => ($sent === true ? helper::translate('Formulaire soumis') : $sent),
2018-04-02 08:29:19 +02:00
'redirect' => $redirect ? helper::baseUrl() . $redirect : '',
2023-03-26 16:22:02 +02:00
'state' => ($sent === true ? true : false),
'vendor' => [
'flatpickr'
],
2018-04-02 08:29:19 +02:00
]);
}
// Valeurs en sortie
$this->addOutput([
'showBarEditButton' => true,
'showPageContent' => true,
2018-11-28 12:44:32 +01:00
'view' => 'index',
'vendor' => [
'flatpickr'
],
2018-04-02 08:29:19 +02:00
]);
}
2022-10-10 11:28:27 +02:00
/**
* Mise à jour du module
* Appelée par les fonctions index et config
*/
2023-03-25 18:24:16 +01:00
private function update()
{
2022-10-10 11:28:27 +02:00
// le module n'est pas initialisé
2023-03-25 18:24:16 +01:00
if ($this->getData(['module', $this->getUrl(0), 'config']) === NULL) {
2022-10-10 11:28:27 +02:00
$this->init();
}
}
2023-03-25 18:24:16 +01:00
/**
2022-10-10 11:28:27 +02:00
* Initialisation du thème d'un nouveau module
*/
2023-03-25 18:24:16 +01:00
private function init()
{
2022-10-10 11:28:27 +02:00
// Données du module absentes
require_once('module/form/ressource/defaultdata.php');
2023-03-25 18:24:16 +01:00
if ($this->getData(['module', $this->getUrl(0), 'config']) === null) {
2022-10-10 11:28:27 +02:00
$this->setData(['module', $this->getUrl(0), 'config', init::$defaultData]);
}
}
2023-03-25 18:24:16 +01:00
}