2008-03-02 19:47:42 +01:00
< ? php
2015-06-30 21:50:24 +02:00
/* Copyright ( C ) 2008 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2011 Regis Houssin < regis . houssin @ inodbox . com >
2012-03-29 12:41:11 +02:00
* Copyright ( C ) 2011 - 2012 Juanjo Menent < jmenent @ 2 byte . es >
2015-06-30 21:50:24 +02:00
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2024-11-04 23:53:20 +01:00
* Copyright ( C ) 2022 - 2024 Frédéric France < frederic . france @ free . fr >
2008-03-02 19:47:42 +01: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 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2008-03-02 19:47:42 +01: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 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2008-03-02 19:47:42 +01:00
*/
/**
2009-06-05 13:59:28 +02:00
* \file htdocs / admin / agenda . php
* \ingroup agenda
* \brief Autocreate actions for agenda module setup page
*/
2008-03-02 19:47:42 +01:00
2022-09-07 20:08:59 +02:00
// Load Dolibarr environment
2012-08-22 23:24:21 +02:00
require '../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/agenda.lib.php' ;
2008-03-02 19:47:42 +01:00
2024-11-04 23:53:20 +01:00
/**
* @ var Conf $conf
* @ var DoliDB $db
* @ var HookManager $hookmanager
* @ var Translate $langs
* @ var User $user
*/
2021-02-26 22:04:03 +01:00
if ( ! $user -> admin ) {
2020-10-31 14:32:18 +01:00
accessforbidden ();
2021-02-26 22:04:03 +01:00
}
2008-03-02 19:47:42 +01:00
2018-05-26 18:41:16 +02:00
// Load translation files required by the page
$langs -> loadLangs ( array ( 'admin' , 'other' , 'agenda' ));
2008-03-02 19:47:42 +01:00
2020-09-16 19:39:50 +02:00
$action = GETPOST ( 'action' , 'aZ09' );
2019-01-27 11:55:16 +01:00
$cancel = GETPOST ( 'cancel' , 'alpha' );
2008-04-08 00:11:22 +02:00
2017-10-31 19:28:34 +01:00
$search_event = GETPOST ( 'search_event' , 'alpha' );
2014-07-06 19:25:15 +02:00
2011-11-06 15:12:18 +01:00
// Get list of triggers available
2019-12-17 14:47:58 +01:00
$triggers = array ();
2019-07-19 19:09:38 +02:00
$sql = " SELECT a.rowid, a.code, a.label, a.elementtype, a.rang as position " ;
2019-11-13 19:35:02 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " c_action_trigger as a " ;
$sql .= " ORDER BY a.rang ASC " ;
$resql = $db -> query ( $sql );
2021-02-26 22:04:03 +01:00
if ( $resql ) {
2011-06-05 10:19:09 +02:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
2021-02-26 22:04:03 +01:00
while ( $i < $num ) {
2011-06-05 10:19:09 +02:00
$obj = $db -> fetch_object ( $resql );
2019-11-13 19:35:02 +01:00
$triggers [ $i ][ 'rowid' ] = $obj -> rowid ;
2011-06-05 10:19:09 +02:00
$triggers [ $i ][ 'code' ] = $obj -> code ;
2019-11-13 19:35:02 +01:00
$triggers [ $i ][ 'element' ] = $obj -> elementtype ;
$triggers [ $i ][ 'label' ] = ( $langs -> trans ( " Notify_ " . $obj -> code ) != " Notify_ " . $obj -> code ? $langs -> trans ( " Notify_ " . $obj -> code ) : $obj -> label );
$triggers [ $i ][ 'position' ] = $obj -> position ;
2011-08-31 17:05:09 +02:00
2011-06-05 10:19:09 +02:00
$i ++ ;
}
$db -> free ( $resql );
2020-05-21 09:35:30 +02:00
} else {
2011-06-05 10:19:09 +02:00
dol_print_error ( $db );
}
2008-04-08 00:11:22 +02:00
2019-07-19 19:09:38 +02:00
//$triggers = dol_sort_array($triggers, 'code', 'asc', 0, 0, 1);
2008-04-08 00:11:22 +02:00
/*
2013-04-21 16:01:36 +02:00
* Actions
*/
2024-11-10 11:16:23 +01:00
$error = 0 ;
2014-07-06 19:25:15 +02:00
2017-10-31 19:28:34 +01:00
// Purge search criteria
2021-02-26 22:04:03 +01:00
if ( GETPOST ( 'button_removefilter_x' , 'alpha' ) || GETPOST ( 'button_removefilter.x' , 'alpha' ) || GETPOST ( 'button_removefilter' , 'alpha' )) { // All tests are required to be compatible with all browsers
2017-10-31 19:28:34 +01:00
$search_event = '' ;
2018-04-18 12:19:23 +02:00
$action = '' ;
}
2021-02-26 22:04:03 +01:00
if ( GETPOST ( 'button_search_x' , 'alpha' ) || GETPOST ( 'button_search.x' , 'alpha' ) || GETPOST ( 'button_search' , 'alpha' )) { // To avoid the save when we click on search
2018-04-18 12:19:23 +02:00
$action = '' ;
2017-10-31 19:28:34 +01:00
}
2021-02-26 22:04:03 +01:00
if ( $action == " save " && empty ( $cancel )) {
2020-10-31 14:32:18 +01:00
$i = 0 ;
2008-03-02 19:47:42 +01:00
2020-10-31 14:32:18 +01:00
$db -> begin ();
2010-01-19 11:47:26 +01:00
2021-02-26 22:04:03 +01:00
foreach ( $triggers as $trigger ) {
2019-11-13 19:35:02 +01:00
$keyparam = 'MAIN_AGENDA_ACTIONAUTO_' . $trigger [ 'code' ];
2021-02-26 22:04:03 +01:00
if ( $search_event === '' || preg_match ( '/' . preg_quote ( $search_event , '/' ) . '/i' , $keyparam )) {
2023-12-04 11:41:14 +01:00
$res = dolibarr_set_const ( $db , $keyparam , ( GETPOST ( $keyparam , 'alpha' ) ? GETPOST ( $keyparam , 'alpha' ) : '' ), 'chaine' , 0 , '' , $conf -> entity );
2021-02-26 22:04:03 +01:00
if ( ! ( $res > 0 )) {
$error ++ ;
}
2017-10-31 19:28:34 +01:00
}
2008-04-08 00:11:22 +02:00
}
2011-11-06 15:12:18 +01:00
2021-02-26 22:04:03 +01:00
if ( ! $error ) {
2020-10-31 14:32:18 +01:00
setEventMessages ( $langs -> trans ( " SetupSaved " ), null , 'mesgs' );
$db -> commit ();
} else {
setEventMessages ( $langs -> trans ( " Error " ), null , 'errors' );
$db -> rollback ();
}
2008-03-02 19:47:42 +01:00
}
/**
2013-04-21 16:01:36 +02:00
* View
2008-03-02 19:47:42 +01:00
*/
2024-05-07 14:07:29 +02:00
$form = new Form ( $db );
2021-04-19 14:15:16 +02:00
2024-05-07 14:07:29 +02:00
$title = $langs -> trans ( " AgendaSetup " );
2023-02-16 17:52:41 +01:00
$help_url = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda|DE:Modul_Terminplanung' ;
2021-04-19 14:15:16 +02:00
2024-06-08 14:53:14 +02:00
llxHeader ( '' , $title , $help_url , '' , 0 , 0 , '' , '' , '' , 'mod-admin page-agenda' );
2008-03-02 19:47:42 +01:00
2019-11-13 19:35:02 +01:00
$linkback = '<a href="' . DOL_URL_ROOT . '/admin/modules.php?restore_lastsearch_values=1">' . $langs -> trans ( " BackToModuleList " ) . '</a>' ;
2019-01-27 11:55:16 +01:00
print load_fiche_titre ( $langs -> trans ( " AgendaSetup " ), $linkback , 'title_setup' );
2008-03-02 19:47:42 +01:00
2015-06-30 21:50:24 +02:00
print '<form action="' . $_SERVER [ " PHP_SELF " ] . '" method="POST">' ;
2019-12-18 23:12:31 +01:00
print '<input type="hidden" name="token" value="' . newToken () . '">' ;
2015-06-30 21:50:24 +02:00
print '<input type="hidden" name="action" value="save">' ;
2017-10-31 19:28:34 +01:00
$param = '' ;
2019-11-13 19:35:02 +01:00
$param .= '&search_event=' . urlencode ( $search_event );
2015-06-30 21:50:24 +02:00
2019-11-13 19:35:02 +01:00
$head = agenda_prepare_head ();
2008-04-08 00:11:22 +02:00
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head ( $head , 'autoactions' , $langs -> trans ( " Agenda " ), - 1 , 'action' );
2008-03-02 19:47:42 +01:00
2019-04-10 15:45:55 +02:00
print '<span class="opacitymedium">' . $langs -> trans ( " AgendaAutoActionDesc " ) . " " . $langs -> trans ( " OnlyActiveElementsAreShown " , 'modules.php' ) . '</span><br>' ;
2013-03-30 14:27:13 +01:00
print " <br> \n " ;
2008-03-02 19:47:42 +01:00
2024-01-11 09:59:52 +01:00
print '<div class="div-table-responsive">' ; // You can use div-table-responsive-no-min if you don't need reserved height for your table
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">' ;
2011-06-05 10:19:09 +02:00
print '<tr class="liste_titre">' ;
2017-10-31 19:28:34 +01:00
print '<td class="liste_titre"><input type="text" name="search_event" value="' . dol_escape_htmltag ( $search_event ) . '"></td>' ;
print '<td class="liste_titre"></td>' ;
// Action column
2019-05-19 13:51:47 +02:00
print '<td class="liste_titre maxwidthsearch">' ;
2019-11-13 19:35:02 +01:00
$searchpicto = $form -> showFilterButtons ();
2017-10-31 19:28:34 +01:00
print $searchpicto ;
print '</td>' ;
print '</tr>' ;
print '</tr>' . " \n " ;
2017-11-12 14:02:27 +01:00
2017-10-31 19:28:34 +01:00
print '<tr class="liste_titre">' ;
2017-11-12 14:02:27 +01:00
print '<th class="liste_titre" colspan="2">' . $langs -> trans ( " ActionsEvents " ) . '</th>' ;
2019-11-13 19:35:02 +01:00
print '<th class="liste_titre"><a href="' . $_SERVER [ " PHP_SELF " ] . '?action=selectall' . ( $param ? $param : '' ) . '">' . $langs -> trans ( " All " ) . '</a>/<a href="' . $_SERVER [ " PHP_SELF " ] . '?action=selectnone' . ( $param ? $param : '' ) . '">' . $langs -> trans ( " None " ) . '</a></th>' ;
2011-06-05 10:19:09 +02:00
print '</tr>' . " \n " ;
2014-10-20 11:16:51 +02:00
// Show each trigger (list is in c_action_trigger)
2021-02-26 22:04:03 +01:00
if ( ! empty ( $triggers )) {
foreach ( $triggers as $trigger ) {
2011-06-05 10:19:09 +02:00
$module = $trigger [ 'element' ];
2021-02-26 22:04:03 +01:00
if ( $module == 'order_supplier' || $module == 'invoice_supplier' ) {
$module = 'fournisseur' ;
}
if ( $module == 'shipping' ) {
2023-04-18 14:04:27 +02:00
$module = 'expedition' ;
2021-02-26 22:04:03 +01:00
}
if ( $module == 'member' ) {
$module = 'adherent' ;
}
if ( $module == 'project' ) {
$module = 'projet' ;
}
if ( $module == 'proposal_supplier' ) {
$module = 'supplier_proposal' ;
}
if ( $module == 'contact' ) {
$module = 'societe' ;
}
2022-05-13 11:23:49 +02:00
if ( $module == 'facturerec' ) {
$module = 'facture' ;
}
2017-09-17 15:38:50 +02:00
2019-12-17 14:47:58 +01:00
// If 'element' value is myobject@mymodule instead of mymodule
$tmparray = explode ( '@' , $module );
2020-04-10 10:59:32 +02:00
if ( ! empty ( $tmparray [ 1 ])) {
2019-12-17 14:47:58 +01:00
$module = $tmparray [ 1 ];
}
2020-08-23 02:38:56 +02:00
//print 'module='.$module.' code='.$trigger['code'].'<br>';
2022-09-01 15:32:48 +02:00
if ( isModEnabled ( $module )) {
2015-06-30 16:10:03 +02:00
// Discard special case: If option FICHINTER_CLASSIFY_BILLED is not set, we discard both trigger FICHINTER_CLASSIFY_BILLED and FICHINTER_CLASSIFY_UNBILLED
2023-10-24 17:00:13 +02:00
if ( $trigger [ 'code' ] == 'FICHINTER_CLASSIFY_BILLED' && ! getDolGlobalString ( 'FICHINTER_CLASSIFY_BILLED' )) {
2021-02-26 22:04:03 +01:00
continue ;
}
2023-10-24 17:00:13 +02:00
if ( $trigger [ 'code' ] == 'FICHINTER_CLASSIFY_UNBILLED' && ! getDolGlobalString ( 'FICHINTER_CLASSIFY_BILLED' )) {
2021-02-26 22:04:03 +01:00
continue ;
}
2023-03-01 19:28:32 +01:00
if ( $trigger [ 'code' ] == 'ACTION_CREATE' ) {
// This is the trigger to add an event, enabling it will create infinite loop
continue ;
}
2014-07-06 19:25:15 +02:00
2021-02-26 22:04:03 +01:00
if ( $search_event === '' || preg_match ( '/' . preg_quote ( $search_event , '/' ) . '/i' , $trigger [ 'code' ])) {
2022-01-20 16:32:30 +01:00
print '<!-- ' . $trigger [ 'position' ] . ' -->' ;
2017-10-31 19:28:34 +01:00
print '<tr class="oddeven">' ;
print '<td>' . $trigger [ 'code' ] . '</td>' ;
print '<td>' . $trigger [ 'label' ] . '</td>' ;
2019-01-31 12:35:49 +01:00
print '<td class="right" width="40">' ;
2019-11-13 19:35:02 +01:00
$key = 'MAIN_AGENDA_ACTIONAUTO_' . $trigger [ 'code' ];
2023-02-08 12:18:46 +01:00
$value = getDolGlobalInt ( $key );
2019-11-13 19:35:02 +01:00
print '<input class="oddeven" type="checkbox" name="' . $key . '" value="1"' . ((( $action == 'selectall' || $value ) && $action != " selectnone " ) ? ' checked' : '' ) . '>' ;
2017-10-31 19:28:34 +01:00
print '</td></tr>' . " \n " ;
}
2011-06-05 10:19:09 +02:00
}
2008-04-08 00:11:22 +02:00
}
}
2008-03-02 19:47:42 +01:00
print '</table>' ;
2017-11-12 14:02:27 +01:00
print '</div>' ;
2008-03-02 19:47:42 +01:00
2020-10-27 18:19:31 +01:00
print dol_get_fiche_end ();
2015-06-30 21:50:24 +02:00
2021-08-20 14:41:30 +02:00
print $form -> buttonsSaveCancel ( " Save " , '' );
2008-03-02 19:47:42 +01:00
print " </form> \n " ;
2012-12-01 15:45:05 +01:00
2008-03-02 19:47:42 +01:00
print " <br> " ;
2018-07-28 17:26:56 +02:00
// End of page
2011-08-27 16:24:16 +02:00
llxFooter ();
2013-03-13 23:05:34 +01:00
$db -> close ();