651289ec2d
Correcting comment typo in file header Fix #190 See merge request !144
61 lines
2.0 KiB
PHP
61 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
* is not distributed with this file, you can obtain one at
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
*
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
|
*
|
|
* =============================
|
|
*
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
*
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
*/
|
|
|
|
use Framadate\Message;
|
|
use Framadate\Services\LogService;
|
|
use Framadate\Services\MailService;
|
|
use Framadate\Services\PollService;
|
|
|
|
include_once __DIR__ . '/app/inc/init.php';
|
|
|
|
/* SERVICES */
|
|
/* -------- */
|
|
$logService = new LogService();
|
|
$pollService = new PollService($connect, $logService);
|
|
$mailService = new MailService($config['use_smtp']);
|
|
|
|
/* PAGE */
|
|
/* ---- */
|
|
$message = null;
|
|
|
|
if (!empty($_POST['mail'])) {
|
|
$mail = filter_input(INPUT_POST, 'mail', FILTER_VALIDATE_EMAIL);
|
|
if ($mail) {
|
|
$polls = $pollService->findAllByAdminMail($mail);
|
|
|
|
if (count($polls) > 0) {
|
|
$smarty->assign('polls', $polls);
|
|
$body = $smarty->fetch('mail/find_polls.tpl');
|
|
|
|
$mailService->send($mail, __('FindPolls', 'List of your polls').' - '.NOMAPPLICATION, $body, 'SEND_POLLS');
|
|
$message = new Message('success', __('FindPolls', 'Polls sent'));
|
|
} else {
|
|
$message = new Message('warning', __('Error', 'No polls found'));
|
|
}
|
|
} else {
|
|
$message = new Message('danger', __('Error', 'Something is wrong with the format'));
|
|
}
|
|
}
|
|
|
|
|
|
$smarty->assign('title', __('Homepage', 'Where are my polls'));
|
|
$smarty->assign('message', $message);
|
|
|
|
$smarty->display('find_polls.tpl');
|