123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/index.php
- * \brief Home page of setup area
- */
- require '../main.inc.php';
- $langs->load("admin");
- $langs->load("companies");
- if (!$user->admin) accessforbidden();
- // Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
- $hookmanager->initHooks(array('homesetup'));
- /*
- * View
- */
- $wikihelp='EN:First_setup|FR:Premiers_paramétrages|ES:Primeras_configuraciones';
- llxHeader('',$langs->trans("Setup"),$wikihelp);
- $form = new Form($db);
- print_fiche_titre($langs->trans("SetupArea"),'','setup');
- if (! empty($conf->global->MAIN_MOTD_SETUPPAGE))
- {
- $conf->global->MAIN_MOTD_SETUPPAGE=preg_replace('/<br(\s[\sa-zA-Z_="]*)?\/?>/i','<br>',$conf->global->MAIN_MOTD_SETUPPAGE);
- if (! empty($conf->global->MAIN_MOTD_SETUPPAGE))
- {
- $i=0;
- while (preg_match('/__\(([a-zA-Z|@]+)\)__/i',$conf->global->MAIN_MOTD_SETUPPAGE,$reg) && $i < 100)
- {
- $tmp=explode('|',$reg[1]);
- if (! empty($tmp[1])) $langs->load($tmp[1]);
- $conf->global->MAIN_MOTD_SETUPPAGE=preg_replace('/__\('.preg_quote($reg[1]).'\)__/i',$langs->trans($tmp[0]),$conf->global->MAIN_MOTD_SETUPPAGE);
- $i++;
- }
- print "\n<!-- Start of welcome text for setup page -->\n";
- print '<table width="100%" class="notopnoleftnoright"><tr><td>';
- print dol_htmlentitiesbr($conf->global->MAIN_MOTD_SETUPPAGE);
- print '</td></tr></table><br>';
- print "\n<!-- End of welcome text for setup page -->\n";
- }
- }
- print $langs->trans("SetupDescription1").' ';
- print $langs->trans("AreaForAdminOnly").' ';
- print $langs->trans("SetupDescription2")."<br><br>";
- print '<br>';
- // Show info setup company
- if (empty($conf->global->MAIN_INFO_SOCIETE_NOM) || empty($conf->global->MAIN_INFO_SOCIETE_COUNTRY)) $setupcompanynotcomplete=1;
- print img_picto('','puce').' '.$langs->trans("SetupDescription3",DOL_URL_ROOT.'/admin/company.php?mainmenu=home'.(empty($setupcompanynotcomplete)?'':'&action=edit'));
- if (! empty($setupcompanynotcomplete))
- {
- $langs->load("errors");
- $warnpicto=img_warning($langs->trans("WarningMandatorySetupNotComplete"));
- print '<br><div class="warning"><a href="'.DOL_URL_ROOT.'/admin/company.php?mainmenu=home'.(empty($setupcompanynotcomplete)?'':'&action=edit').'">'.$warnpicto.' '.$langs->trans("WarningMandatorySetupNotComplete").'</a></div>';
- }
- print '<br>';
- print '<br>';
- print '<br>';
- // Show info setup module
- print img_picto('','puce').' '.$langs->trans("SetupDescription4",DOL_URL_ROOT.'/admin/modules.php?mainmenu=home');
- if (count($conf->modules) <= (empty($conf->global->MAIN_MIN_NB_ENABLED_MODULE_FOR_WARNING)?1:$conf->global->MAIN_MIN_NB_ENABLED_MODULE_FOR_WARNING)) // If only user module enabled
- {
- $langs->load("errors");
- $warnpicto=img_warning($langs->trans("WarningMandatorySetupNotComplete"));
- print '<br><div class="warning"><a href="'.DOL_URL_ROOT.'/admin/modules.php?mainmenu=home">'.$warnpicto.' '.$langs->trans("WarningMandatorySetupNotComplete").'</a></div>';
- }
- print '<br>';
- print '<br>';
- print '<br>';
- print '<br>';
- // Add hook to add information
- $reshook=$hookmanager->executeHooks('addHomeSetup',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
- print $hookmanager->resPrint;
- if (empty($reshook))
- {
- // Show into other
- print $langs->trans("SetupDescription5")."<br>";
- print "<br>";
- // Show logo
- print '<center><div class="logo_setup"></div></center>';
- }
- llxFooter();
- $db->close();
|