dolibarr 18.0.6
index.php
1<?php
2/* Copyright (C) 2013 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
4 * Copyright (C) 2016 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21
22if (!defined('NOTOKENRENEWAL')) {
23 define('NOTOKENRENEWAL', '1');
24}
25
26// Load Dolibarr environment
27require '../../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/opensurvey/lib/opensurvey.lib.php';
31
32// Security check
33if (!$user->rights->opensurvey->write) {
35}
36
37$langs->load("opensurvey");
38
39
40/*
41 * View
42 */
43
44$arrayofjs = array();
45$arrayofcss = array('/opensurvey/css/style.css');
46llxHeader('', $langs->trans("Survey"), '', "", 0, 0, $arrayofjs, $arrayofcss);
47
48print load_fiche_titre($langs->trans("CreatePoll"), '', 'poll');
49
50print '<form name="formulaire" action="create_survey.php" method="POST">';
51print '<input type="hidden" name="token" value="'.newToken().'">';
52print '<div class="center">';
53print '<p>'.$langs->trans("OrganizeYourMeetingEasily").'</p>';
54print '<div class="corps">';
55print '<br>';
56print '<div class="index_date">';
57print '<div><img class="opacity imgopensurveywizard" src="../img/date.png" onclick="document.formulaire.date.click()"></div>';
58print '<button id="date" name="choix_sondage" value="date" type="submit" class="button orange bigrounded">';
59print '<img src="../img/calendar-32.png" alt="'.dol_escape_htmltag($langs->trans("CreateSurveyDate")).'" style="padding-right: 4px" class="inline-block valignmiddle">';
60print '<div class="inline-block valignmiddle">'.dol_escape_htmltag($langs->trans("CreateSurveyDate")).'</div></button>';
61print '</div>';
62print '<div class="index_sondage">';
63print '<div><img class="opacity imgopensurveywizard" src="../img/sondage2.png" onclick="document.formulaire.autre.click()"></div>';
64print '<button id="autre" name="choix_sondage" value="autre" type="submit" class="button blue bigrounded">';
65print '<img src="../img/chart-32.png" alt="'.dol_escape_htmltag($langs->trans("CreateSurveyStandard")).'" style="padding-right: 4px" class="inline-block valignmiddle">';
66print '<div class="inline-block valignmiddle">'.dol_escape_htmltag($langs->trans("CreateSurveyStandard")).'</div></button>';
67print '</div>';
68print '<div class="clearboth"></div>';
69print '<br>';
70print '</div>';
71print '</div></form>';
72
73// End of page
74llxFooter();
75$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.