2004-10-19 18:58:50 +00:00
< ? php
2004-02-05 18:18:47 +00:00
/* Copyright ( C ) 2001 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2012-03-10 12:52:08 +00:00
* Copyright ( C ) 2004 - 2012 Laurent Destailleur < eldy @ users . sourceforge . net >
2017-03-10 10:50:57 +00:00
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2003-01-18 17:15:23 +00:00
*
* 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
2013-01-16 14:36:08 +00:00
* the Free Software Foundation ; either version 3 of the License , or
2003-01-18 17:15:23 +00:00
* ( 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
2019-09-23 19:55:30 +00:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2003-01-18 17:15:23 +00:00
*/
2004-08-29 12:01:58 +00:00
2005-01-08 00:13:35 +00:00
/**
2009-03-09 11:28:12 +00:00
* \file htdocs / admin / index . php
2013-08-05 08:10:44 +00:00
* \brief Home page of setup area
2009-03-09 11:28:12 +00:00
*/
2004-08-29 12:01:58 +00:00
2012-08-22 21:24:21 +00:00
require '../main.inc.php' ;
2003-01-18 17:15:23 +00:00
2018-05-26 16:41:16 +00:00
// Load translation files required by the page
$langs -> loadLangs ( array ( 'admin' , 'companies' ));
2004-08-29 12:01:58 +00:00
2021-02-26 21:04:03 +00:00
if ( ! $user -> admin ) {
accessforbidden ();
}
2004-02-15 00:05:21 +00:00
2017-06-10 10:56:28 +00:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
2013-08-05 08:10:44 +00:00
$hookmanager -> initHooks ( array ( 'homesetup' ));
2004-02-05 18:18:47 +00:00
2006-05-25 17:00:00 +00:00
/*
2009-01-21 13:20:26 +00:00
* View
2006-05-25 17:00:00 +00:00
*/
2019-03-24 15:10:03 +00:00
$form = new Form ( $db );
2020-04-10 08:59:32 +00:00
$wikihelp = 'EN:First_setup|FR:Premiers_paramétrages|ES:Primeras_configuraciones' ;
2019-01-27 10:55:16 +00:00
llxHeader ( '' , $langs -> trans ( " Setup " ), $wikihelp );
2005-07-09 11:49:05 +00:00
2005-08-20 14:36:32 +00:00
2019-09-27 09:51:34 +00:00
print load_fiche_titre ( $langs -> trans ( " SetupArea " ), '' , 'tools' );
2005-11-13 01:44:40 +00:00
2022-01-28 18:28:37 +00:00
2021-02-26 21:04:03 +00:00
if ( ! empty ( $conf -> global -> MAIN_MOTD_SETUPPAGE )) {
2020-10-31 13:32:18 +00:00
$conf -> global -> MAIN_MOTD_SETUPPAGE = preg_replace ( '/<br(\s[\sa-zA-Z_="]*)?\/?>/i' , '<br>' , $conf -> global -> MAIN_MOTD_SETUPPAGE );
2021-02-26 21:04:03 +00:00
if ( ! empty ( $conf -> global -> MAIN_MOTD_SETUPPAGE )) {
2020-10-31 13:32:18 +00:00
$i = 0 ;
2021-07-04 16:30:20 +00:00
$reg = array ();
2021-02-26 21:04:03 +00:00
while ( preg_match ( '/__\(([a-zA-Z|@]+)\)__/i' , $conf -> global -> MAIN_MOTD_SETUPPAGE , $reg ) && $i < 100 ) {
2020-10-31 13:32:18 +00:00
$tmp = explode ( '|' , $reg [ 1 ]);
2021-02-26 21:04:03 +00:00
if ( ! empty ( $tmp [ 1 ])) {
$langs -> load ( $tmp [ 1 ]);
}
2020-10-31 13:32:18 +00:00
$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 " ;
}
2013-07-02 19:53:34 +00:00
}
2005-11-13 01:44:40 +00:00
2020-05-10 22:35:05 +00:00
print '<span class="opacitymedium hideonsmartphone">' ;
print $langs -> trans ( " SetupDescription1 " ) . ' ' ;
2009-09-07 01:06:05 +00:00
print $langs -> trans ( " AreaForAdminOnly " ) . ' ' ;
2019-11-28 11:50:38 +00:00
print $langs -> trans ( " SetupDescription2 " , $langs -> transnoentities ( " MenuCompanySetup " ), $langs -> transnoentities ( " Modules " ));
print " <br><br> " ;
2020-05-10 22:35:05 +00:00
print '</span>' ;
2009-08-09 00:35:17 +00:00
2022-01-28 18:28:37 +00:00
print '<br>' ;
2013-08-05 08:10:44 +00:00
// Show info setup company
2021-02-26 21:04:03 +00:00
if ( empty ( $conf -> global -> MAIN_INFO_SOCIETE_NOM ) || empty ( $conf -> global -> MAIN_INFO_SOCIETE_COUNTRY )) {
$setupcompanynotcomplete = 1 ;
}
2022-01-28 18:28:37 +00:00
print '<section class="setupsection">' ;
2021-09-27 10:24:01 +00:00
print img_picto ( '' , 'company' , 'class="paddingright valignmiddle double"' ) . ' ' . $langs -> trans ( " SetupDescriptionLink " , DOL_URL_ROOT . '/admin/company.php?mainmenu=home' . ( empty ( $setupcompanynotcomplete ) ? '' : '&action=edit&token=' . newToken ()), $langs -> transnoentities ( " Setup " ), $langs -> transnoentities ( " MenuCompanySetup " ));
2021-10-19 17:52:18 +00:00
print '<br><br>' ;
print $langs -> trans ( " SetupDescription3b " );
2021-02-26 21:04:03 +00:00
if ( ! empty ( $setupcompanynotcomplete )) {
2012-10-18 08:36:53 +00:00
$langs -> load ( " errors " );
2019-11-13 18:37:08 +00:00
$warnpicto = img_warning ( $langs -> trans ( " WarningMandatorySetupNotComplete " ), 'style="padding-right: 6px;"' );
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>' ;
2012-10-17 13:19:43 +00:00
}
2022-01-28 18:28:37 +00:00
print '</section>' ;
2012-10-17 13:19:43 +00:00
print '<br>' ;
print '<br>' ;
2022-01-28 18:28:37 +00:00
print '<section class="setupsection">' ;
2013-08-05 08:10:44 +00:00
// Show info setup module
2021-08-10 10:26:41 +00:00
print img_picto ( '' , 'cog' , 'class="paddingright valignmiddle double"' ) . ' ' . $langs -> trans ( " SetupDescriptionLink " , DOL_URL_ROOT . '/admin/modules.php?mainmenu=home' , $langs -> transnoentities ( " Setup " ), $langs -> transnoentities ( " Modules " ));
2021-08-10 09:40:25 +00:00
print '<br><br>' . $langs -> trans ( " SetupDescription4b " );
2021-03-27 12:59:50 +00:00
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 minimal initial modules enabled
2012-10-17 13:19:43 +00:00
$langs -> load ( " errors " );
2019-11-13 18:37:08 +00:00
$warnpicto = img_warning ( $langs -> trans ( " WarningEnableYourModulesApplications " ), 'style="padding-right: 6px;"' );
2019-03-28 08:20:05 +00:00
print '<br><div class="warning"><a href="' . DOL_URL_ROOT . '/admin/modules.php?mainmenu=home">' . $warnpicto . $langs -> trans ( " WarningEnableYourModulesApplications " ) . '</a></div>' ;
2012-10-17 13:19:43 +00:00
}
2022-01-28 18:28:37 +00:00
print '</section>' ;
2012-10-17 13:19:43 +00:00
print '<br>' ;
2009-08-20 01:39:54 +00:00
print '<br>' ;
2014-02-02 18:00:56 +00:00
print '<br>' ;
2005-08-20 14:36:32 +00:00
2013-08-05 08:10:44 +00:00
// Add hook to add information
2019-11-13 18:37:08 +00:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'addHomeSetup' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2013-08-05 08:10:44 +00:00
print $hookmanager -> resPrint ;
2021-02-26 21:04:03 +00:00
if ( empty ( $reshook )) {
2013-08-05 08:10:44 +00:00
// Show into other
2021-10-05 06:55:57 +00:00
print '<span class="opacitymedium hideonsmartphone">' . $langs -> trans ( " SetupDescription5 " ) . " </span><br> " ;
print '<br class="hideonsmartphone">' ;
2013-08-05 08:10:44 +00:00
// Show logo
2014-11-25 19:13:43 +00:00
print '<div class="center"><div class="logo_setup"></div></div>' ;
2013-08-05 08:10:44 +00:00
}
2003-01-18 17:15:23 +00:00
2018-07-28 16:03:14 +00:00
// End of page
2011-08-27 14:24:16 +00:00
llxFooter ();
2013-01-10 17:50:07 +00:00
$db -> close ();