* Copyright (C) 2021 Dorian Laurent * * 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 . */ /** * \file partnership/admin/about.php * \ingroup partnership * \brief About page of module Partnership. */ // Load Dolibarr environment require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; require_once '../lib/partnership.lib.php'; // Translations $langs->loadLangs(array("errors", "admin", "partnership@partnership")); // Access control if (!$user->admin) { accessforbidden(); } // Parameters $action = GETPOST('action', 'aZ09'); $backtopage = GETPOST('backtopage', 'alpha'); /* * Actions */ /* * View */ $form = new Form($db); $page_name = "PartnershipAbout"; llxHeader('', $langs->trans($page_name)); // Subheader $linkback = ''.$langs->trans("BackToModuleList").''; print load_fiche_titre($langs->trans($page_name), $linkback, 'title_setup'); // Configuration header $head = partnershipAdminPrepareHead(); print dol_get_fiche_head($head, 'about', '', 0, 'partnership@partnership'); require_once DOL_DOCUMENT_ROOT.'/core/modules/modPartnership.class.php'; $tmpmodule = new modPartnership($db); print $tmpmodule->getDescLong(); // Page end print dol_get_fiche_end(); llxFooter(); $db->close();