2024-08-16 16:35:50 +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-08-29 07:44:53 +02:00
|
|
|
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
|
|
|
|
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
2024-08-16 16:35:50 +02:00
|
|
|
* @link http://zwiicms.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2024-08-27 20:26:07 +02:00
|
|
|
class sondage extends common
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
|
2024-08-29 06:45:00 +02:00
|
|
|
const VERSION = '1.4';
|
2024-08-16 16:35:50 +02:00
|
|
|
const REALNAME = 'Sondage';
|
|
|
|
const DELETE = true;
|
|
|
|
const UPDATE = '0.0';
|
|
|
|
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
|
|
|
|
|
|
|
|
public static $actions = [
|
|
|
|
'config' => self::GROUP_MODERATOR,
|
|
|
|
'data' => self::GROUP_MODERATOR,
|
|
|
|
'result' => self::GROUP_VISITOR,
|
|
|
|
'delete' => self::GROUP_MODERATOR,
|
|
|
|
'deleteall' => self::GROUP_MODERATOR,
|
|
|
|
'index' => self::GROUP_VISITOR,
|
|
|
|
'export2csv' => self::GROUP_MODERATOR,
|
|
|
|
'output2csv' => self::GROUP_MODERATOR
|
|
|
|
];
|
|
|
|
|
|
|
|
public static $data = [];
|
|
|
|
|
|
|
|
public static $pages = [];
|
|
|
|
|
|
|
|
public static $pagination;
|
|
|
|
|
|
|
|
const TYPE_MAIL = 'mail';
|
|
|
|
const TYPE_SELECT = 'select';
|
|
|
|
const TYPE_TEXT = 'text';
|
|
|
|
const TYPE_TEXTAREA = 'textarea';
|
|
|
|
const TYPE_DATETIME = "date";
|
|
|
|
const TYPE_CHECKBOX = "checkbox";
|
|
|
|
|
|
|
|
|
|
|
|
public static $types = [
|
|
|
|
self::TYPE_TEXT => 'Champ texte',
|
|
|
|
self::TYPE_TEXTAREA => 'Grand champ texte',
|
|
|
|
self::TYPE_MAIL => 'Champ mail',
|
|
|
|
self::TYPE_SELECT => 'Sélection',
|
|
|
|
self::TYPE_DATETIME => 'Date',
|
|
|
|
self::TYPE_CHECKBOX => 'Case à cocher'
|
|
|
|
];
|
|
|
|
// Nombre d'objets par page
|
|
|
|
public static $itemsList = [
|
|
|
|
6 => '6 réponses',
|
|
|
|
9 => '9 réponses',
|
|
|
|
18 => '18 réponses'
|
|
|
|
];
|
|
|
|
|
|
|
|
public static $listUsers = [
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Configuration
|
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function config()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
// Liste des utilisateurs
|
|
|
|
$userIdsFirstnames = helper::arraycollumn($this->getData(['user']), 'firstname');
|
|
|
|
ksort($userIdsFirstnames);
|
2024-08-27 20:26:07 +02:00
|
|
|
self::$listUsers[] = '';
|
|
|
|
foreach ($userIdsFirstnames as $userId => $userFirstname) {
|
|
|
|
self::$listUsers[] = $userId;
|
2024-08-16 16:35:50 +02:00
|
|
|
}
|
|
|
|
// Soumission du formulaire
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($this->isPost()) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// Configuration
|
|
|
|
// Option sélectionnée sans page choisie
|
|
|
|
$this->setData([
|
|
|
|
'module',
|
|
|
|
$this->getUrl(0),
|
|
|
|
'config',
|
|
|
|
[
|
|
|
|
'button' => $this->getInput('formConfigButton'),
|
2024-08-29 06:23:29 +02:00
|
|
|
'captcha' => $this->getInput('formConfigCapcha', helper::FILTER_BOOLEAN),
|
2024-08-16 16:35:50 +02:00
|
|
|
'group' => $this->getInput('formConfigGroup', helper::FILTER_INT),
|
2024-08-27 20:26:07 +02:00
|
|
|
'user' => self::$listUsers[$this->getInput('formConfigUser', helper::FILTER_INT)],
|
|
|
|
'mail' => $this->getInput('formConfigMail'),
|
2024-08-16 16:35:50 +02:00
|
|
|
'pageId' => $this->getInput('formConfigPageIdToggle', helper::FILTER_BOOLEAN) === true ? $this->getInput('formConfigPageId', helper::FILTER_ID) : '',
|
|
|
|
'subject' => $this->getInput('formConfigSubject'),
|
|
|
|
'itemsperPage' => $this->getInput('formConfigItemsperPage', helper::FILTER_INT)
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
// Génération des données vides
|
|
|
|
$this->setData(['module', $this->getUrl(0), 'data', []]);
|
|
|
|
// Génération des champs
|
|
|
|
$inputs = [];
|
2024-08-27 20:26:07 +02:00
|
|
|
if (is_array($this->getInput('formConfigPosition', null))) {
|
|
|
|
foreach ($this->getInput('formConfigPosition', null) as $index => $position) {
|
|
|
|
$inputs[] = [
|
|
|
|
'name' => $this->getInput('formConfigName[' . $index . ']'),
|
|
|
|
'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 . ']')
|
|
|
|
];
|
|
|
|
}
|
2024-08-16 16:35:50 +02:00
|
|
|
}
|
2024-08-27 20:26:07 +02:00
|
|
|
|
2024-08-16 16:35:50 +02:00
|
|
|
$this->setData(['module', $this->getUrl(0), 'input', $inputs]);
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'notification' => 'Modifications enregistrées',
|
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(),
|
|
|
|
'state' => true
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
// Liste des pages
|
2024-08-27 20:26:07 +02:00
|
|
|
foreach ($this->getHierarchy(null, false) as $parentPageId => $childrenPageIds) {
|
2024-08-16 16:35:50 +02:00
|
|
|
self::$pages[$parentPageId] = $this->getData(['page', $parentPageId, 'title']);
|
2024-08-27 20:26:07 +02:00
|
|
|
foreach ($childrenPageIds as $childKey) {
|
2024-08-16 16:35:50 +02:00
|
|
|
self::$pages[$childKey] = ' ' . $this->getData(['page', $childKey, 'title']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'title' => 'Configuration du module',
|
|
|
|
'vendor' => [
|
|
|
|
'html-sortable',
|
|
|
|
'flatpickr'
|
|
|
|
],
|
|
|
|
'view' => 'config'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Données enregistrées
|
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function data()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
$data = $this->getData(['module', $this->getUrl(0), 'data']);
|
2024-08-27 20:26:07 +02:00
|
|
|
if (is_array($data)) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// Pagination
|
2024-08-27 20:26:07 +02:00
|
|
|
$pagination = helper::pagination($data, $this->getUrl(), $this->getData(['module', $this->getUrl(0), 'config', 'itemsperPage']));
|
2024-08-16 16:35:50 +02:00
|
|
|
// Liste des pages
|
|
|
|
self::$pagination = $pagination['pages'];
|
|
|
|
// Inverse l'ordre du tableau
|
|
|
|
$dataIds = array_reverse(array_keys($data));
|
|
|
|
$data = array_reverse($data);
|
|
|
|
// Données en fonction de la pagination
|
2024-08-27 20:26:07 +02:00
|
|
|
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
|
2024-08-16 16:35:50 +02:00
|
|
|
$content = '';
|
2024-08-27 20:26:07 +02:00
|
|
|
foreach ($data[$i] as $input => $value) {
|
2024-08-16 16:35:50 +02:00
|
|
|
$content .= $input . ' : ' . $value . '<br>';
|
|
|
|
}
|
|
|
|
self::$data[] = [
|
|
|
|
$content,
|
|
|
|
template::button('formDataDelete' . $dataIds[$i], [
|
2024-08-29 06:23:29 +02:00
|
|
|
'class' => 'formDataDelete buttonRed',
|
2024-08-27 20:26:07 +02:00
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $dataIds[$i] . '/' . $_SESSION['csrf'],
|
2024-08-29 06:23:29 +02:00
|
|
|
'value' => template::ico('trash')
|
2024-08-16 16:35:50 +02:00
|
|
|
])
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'title' => 'Données enregistrées',
|
|
|
|
'view' => 'data'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Réponses enregistrées
|
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function result()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
$data = $this->getData(['module', $this->getUrl(0), 'data']);
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($data) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// Pagination
|
2024-08-27 20:26:07 +02:00
|
|
|
$pagination = helper::pagination($data, $this->getUrl(), $this->getData(['module', $this->getUrl(0), 'config', 'itemsperPage']));
|
2024-08-16 16:35:50 +02:00
|
|
|
// Liste des pages
|
|
|
|
self::$pagination = $pagination['pages'];
|
|
|
|
// Inverse l'ordre du tableau
|
|
|
|
$dataIds = array_reverse(array_keys($data));
|
|
|
|
$data = array_reverse($data);
|
|
|
|
// Données en fonction de la pagination
|
2024-08-27 20:26:07 +02:00
|
|
|
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
|
2024-08-16 16:35:50 +02:00
|
|
|
$content = '';
|
2024-08-27 20:26:07 +02:00
|
|
|
foreach ($data[$i] as $input => $value) {
|
2024-08-16 16:35:50 +02:00
|
|
|
$content .= $input . ' : ' . $value . '<br>';
|
|
|
|
}
|
|
|
|
self::$data[] = [
|
|
|
|
$content
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'title' => 'Réponses',
|
|
|
|
'view' => 'result'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export CSV
|
|
|
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
2024-08-27 20:26:07 +02:00
|
|
|
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
2024-08-16 16:35:50 +02:00
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function export2csv()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
// Jeton incorrect
|
|
|
|
if ($this->getUrl(2) !== $_SESSION['csrf']) {
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
2024-08-27 20:26:07 +02:00
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
|
2024-08-16 16:35:50 +02:00
|
|
|
'notification' => 'Action interdite'
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
$data = $this->getData(['module', $this->getUrl(0), 'data']);
|
|
|
|
if ($data !== []) {
|
2024-08-27 20:26:07 +02: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);
|
2024-08-16 16:35:50 +02:00
|
|
|
}
|
2024-08-27 20:26:07 +02:00
|
|
|
$fp = fopen(self::FILE_DIR . 'source/data/' . $csvfilename, 'w');
|
|
|
|
fputcsv($fp, array_keys($data[1]), ';', '"');
|
2024-08-16 16:35:50 +02:00
|
|
|
foreach ($data as $fields) {
|
2024-08-27 20:26:07 +02:00
|
|
|
fputcsv($fp, $fields, ';', '"');
|
2024-08-16 16:35:50 +02:00
|
|
|
}
|
|
|
|
fclose($fp);
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
2024-08-27 20:26:07 +02:00
|
|
|
'notification' => 'Export CSV effectué dans le gestionnaire de fichiers<br />sous le nom ' . $csvfilename,
|
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
|
2024-08-16 16:35:50 +02:00
|
|
|
'state' => true
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
$this->addOutput([
|
|
|
|
'notification' => 'Aucune donnée à exporter',
|
2024-08-27 20:26:07 +02:00
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data'
|
2024-08-16 16:35:50 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Suppression
|
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function deleteall()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
// Jeton incorrect
|
|
|
|
if ($this->getUrl(2) !== $_SESSION['csrf']) {
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
2024-08-27 20:26:07 +02:00
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
|
2024-08-16 16:35:50 +02:00
|
|
|
'notification' => 'Action interdite'
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
$data = ($this->getData(['module', $this->getUrl(0), 'data']));
|
2024-08-27 20:26:07 +02:00
|
|
|
if (count($data) > 0) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// Suppression multiple
|
2024-08-27 20:26:07 +02:00
|
|
|
for ($i = 1; $i <= count($data); $i++) {
|
2024-08-16 16:35:50 +02:00
|
|
|
echo $this->deleteData(['module', $this->getUrl(0), 'data', $i]);
|
|
|
|
}
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
|
|
|
|
'notification' => 'Données supprimées',
|
|
|
|
'state' => true
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
|
|
|
|
'notification' => 'Aucune donnée à supprimer'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Suppression
|
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function delete()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
// Jeton incorrect
|
|
|
|
if ($this->getUrl(3) !== $_SESSION['csrf']) {
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
2024-08-27 20:26:07 +02:00
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
|
2024-08-16 16:35:50 +02:00
|
|
|
'notification' => 'Action interdite'
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
// La donnée n'existe pas
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($this->getData(['module', $this->getUrl(0), 'data', $this->getUrl(2)]) === null) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// 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',
|
|
|
|
'notification' => 'Donnée supprimée',
|
|
|
|
'state' => true
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Accueil
|
|
|
|
*/
|
2024-08-27 20:26:07 +02:00
|
|
|
public function index()
|
|
|
|
{
|
2024-08-16 16:35:50 +02:00
|
|
|
// Soumission du formulaire
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($this->isPost()) {
|
2024-08-29 06:23:29 +02:00
|
|
|
// Check la captcha
|
2024-08-27 20:26:07 +02:00
|
|
|
if (
|
2024-08-29 06:23:29 +02:00
|
|
|
$this->getData(['module', $this->getUrl(0), 'config', 'captcha'])
|
2024-08-27 20:26:07 +02:00
|
|
|
and $this->getInput('formCapcha', helper::FILTER_INT) !== $this->getInput('formCapchaFirstNumber', helper::FILTER_INT) + $this->getInput('formCapchaSecondNumber', helper::FILTER_INT)
|
|
|
|
) {
|
2024-08-16 16:35:50 +02:00
|
|
|
self::$inputNotices['formCapcha'] = 'Incorrect';
|
|
|
|
|
|
|
|
}
|
|
|
|
// Préparation le contenu du mail
|
|
|
|
$data = [];
|
|
|
|
$content = '';
|
2024-08-27 20:26:07 +02:00
|
|
|
foreach ($this->getData(['module', $this->getUrl(0), 'input']) as $index => $input) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// Filtre la valeur
|
2024-08-27 20:26:07 +02:00
|
|
|
switch ($input['type']) {
|
2024-08-16 16:35:50 +02:00
|
|
|
case self::TYPE_MAIL:
|
|
|
|
$filter = helper::FILTER_MAIL;
|
|
|
|
break;
|
|
|
|
case self::TYPE_TEXTAREA:
|
|
|
|
$filter = helper::FILTER_STRING_LONG;
|
|
|
|
break;
|
|
|
|
case self::TYPE_DATETIME:
|
|
|
|
$filter = helper::FILTER_STRING_SHORT; // Mettre TYPE_DATETIME pour récupérer un TIMESTAMP
|
|
|
|
break;
|
2024-08-27 20:26:07 +02:00
|
|
|
case self::TYPE_CHECKBOX:
|
2024-08-16 16:35:50 +02:00
|
|
|
$filter = helper::FILTER_BOOLEAN;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$filter = helper::FILTER_STRING_SHORT;
|
|
|
|
}
|
|
|
|
$value = $this->getInput('formInput[' . $index . ']', $filter, $input['required']);
|
|
|
|
// Préparation des données pour la création dans la base
|
|
|
|
$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
|
|
|
|
// Rechercher l'adresse en fonction du mail
|
|
|
|
$sent = true;
|
2024-08-27 20:26:07 +02:00
|
|
|
$singleuser = $this->getData([
|
|
|
|
'user',
|
|
|
|
$this->getData(['module', $this->getUrl(0), 'config', 'user']),
|
|
|
|
'mail'
|
|
|
|
]);
|
2024-08-16 16:35:50 +02:00
|
|
|
$singlemail = $this->getData(['module', $this->getUrl(0), 'config', 'mail']);
|
|
|
|
$group = $this->getData(['module', $this->getUrl(0), 'config', 'group']);
|
|
|
|
// Verification si le mail peut être envoyé
|
2024-08-27 20:26:07 +02:00
|
|
|
if (
|
2024-08-16 16:35:50 +02:00
|
|
|
self::$inputNotices === [] && (
|
|
|
|
$group > 0 ||
|
|
|
|
$singleuser !== '' ||
|
2024-08-27 20:26:07 +02:00
|
|
|
$singlemail !== '')
|
2024-08-16 16:35:50 +02:00
|
|
|
) {
|
|
|
|
// Utilisateurs dans le groupe
|
|
|
|
$to = [];
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($group > 0) {
|
|
|
|
foreach ($this->getData(['user']) as $userId => $user) {
|
|
|
|
if ($user['group'] >= $group) {
|
2024-08-16 16:35:50 +02:00
|
|
|
$to[] = $user['mail'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Utilisateur désigné
|
|
|
|
if (!empty($singleuser)) {
|
|
|
|
$to[] = $singleuser;
|
|
|
|
}
|
|
|
|
// Mail désigné
|
|
|
|
if (!empty($singlemail)) {
|
|
|
|
$to[] = $singlemail;
|
|
|
|
}
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($to) {
|
2024-08-16 16:35:50 +02:00
|
|
|
// Sujet du mail
|
|
|
|
$subject = $this->getData(['module', $this->getUrl(0), 'config', 'subject']);
|
2024-08-27 20:26:07 +02:00
|
|
|
if ($subject === '') {
|
2024-08-16 16:35:50 +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
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Redirection
|
|
|
|
$redirect = $this->getData(['module', $this->getUrl(0), 'config', 'pageId']);
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'notification' => ($sent === true ? 'Formulaire soumis' : $sent),
|
|
|
|
'redirect' => $redirect ? helper::baseUrl() . $redirect : '',
|
|
|
|
'state' => ($sent === true ? true : null)
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'showBarEditButton' => true,
|
|
|
|
'showPageContent' => true,
|
|
|
|
'view' => 'index',
|
|
|
|
'vendor' => [
|
|
|
|
'flatpickr'
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|