* Copyright (C) 2014 Marcos García * Copyright (C) 2016 Regis Houssin * Copyright (C) 2019 Frédéric France * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ if (!defined('NOTOKENRENEWAL')) { define('NOTOKENRENEWAL', '1'); } // Load Dolibarr environment require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; require_once DOL_DOCUMENT_ROOT.'/opensurvey/lib/opensurvey.lib.php'; // Security check if (!$user->hasRight('opensurvey', 'write')) { accessforbidden(); } $langs->load("opensurvey"); /* * View */ $arrayofjs = array(); $arrayofcss = array('/opensurvey/css/style.css'); llxHeader('', $langs->trans("Survey"), '', "", 0, 0, $arrayofjs, $arrayofcss); print load_fiche_titre($langs->trans("CreatePoll"), '', 'poll'); print '
'; print ''; print '
'; print '

'.$langs->trans("OrganizeYourMeetingEasily").'

'; print '
'; print '
'; print '
'; print '
'; print ''; print '
'; print '
'; print '
'; print ''; print '
'; print '
'; print '
'; print '
'; print '
'; // End of page llxFooter(); $db->close();