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 >
2012-12-30 15:13:49 +01:00
* Copyright ( C ) 2011 Regis Houssin < regis . houssin @ capnetworks . 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 >
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
2011-08-01 00:21:57 +02:00
* along with this program . If not , see < http :// 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
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
if ( ! $user -> admin )
accessforbidden ();
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
2012-03-29 12:41:11 +02:00
$action = GETPOST ( 'action' , 'alpha' );
$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
2011-06-05 10:19:09 +02:00
$sql = " SELECT a.rowid, a.code, a.label, a.elementtype " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " c_action_trigger as a " ;
2011-06-05 11:08:11 +02:00
$sql .= " ORDER BY a.rang ASC " ;
2011-06-05 10:19:09 +02:00
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
$i = 0 ;
while ( $i < $num )
{
$obj = $db -> fetch_object ( $resql );
$triggers [ $i ][ 'rowid' ] = $obj -> rowid ;
$triggers [ $i ][ 'code' ] = $obj -> code ;
$triggers [ $i ][ 'element' ] = $obj -> elementtype ;
$triggers [ $i ][ 'label' ] = ( $langs -> trans ( " Notify_ " . $obj -> code ) != " Notify_ " . $obj -> code ? $langs -> trans ( " Notify_ " . $obj -> code ) : $obj -> label );
2011-08-31 17:05:09 +02:00
2011-06-05 10:19:09 +02:00
$i ++ ;
}
$db -> free ( $resql );
}
else
{
dol_print_error ( $db );
}
2008-04-08 00:11:22 +02:00
/*
2013-04-21 16:01:36 +02:00
* Actions
*/
2014-07-06 19:25:15 +02:00
2017-10-31 19:28:34 +01:00
// Purge search criteria
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
{
$search_event = '' ;
2018-04-18 12:19:23 +02:00
$action = '' ;
}
if ( GETPOST ( 'button_search_x' , 'alpha' ) || GETPOST ( 'button_search.x' , 'alpha' ) || GETPOST ( 'button_search' , 'alpha' )) // To avoid the save when we click on search
{
$action = '' ;
2017-10-31 19:28:34 +01:00
}
2012-03-29 12:41:11 +02:00
if ( $action == " save " && empty ( $cancel ))
2008-03-02 19:47:42 +01:00
{
$i = 0 ;
$db -> begin ();
2010-01-19 11:47:26 +01:00
2011-06-05 10:19:09 +02:00
foreach ( $triggers as $trigger )
2008-04-08 00:11:22 +02:00
{
2017-10-31 19:28:34 +01:00
$keyparam = 'MAIN_AGENDA_ACTIONAUTO_' . $trigger [ 'code' ];
2008-04-08 00:11:22 +02:00
//print "param=".$param." - ".$_POST[$param];
2017-10-31 19:28:34 +01:00
if ( $search_event === '' || preg_match ( '/' . preg_quote ( $search_event , '/' ) . '/i' , $keyparam ))
{
$res = dolibarr_set_const ( $db , $keyparam ,( GETPOST ( $keyparam , 'alpha' ) ? GETPOST ( $keyparam , 'alpha' ) : '' ), 'chaine' , 0 , '' , $conf -> entity );
if ( ! $res > 0 ) $error ++ ;
}
2008-04-08 00:11:22 +02:00
}
2011-11-06 15:12:18 +01:00
2011-09-02 17:41:35 +02:00
if ( ! $error )
{
2015-10-23 12:58:30 +02:00
setEventMessages ( $langs -> trans ( " SetupSaved " ), null , 'mesgs' );
2013-09-11 11:08:38 +02:00
$db -> commit ();
2011-09-02 17:41:35 +02:00
}
else
{
2015-10-23 12:58:30 +02:00
setEventMessages ( $langs -> trans ( " Error " ), null , 'errors' );
2013-09-11 11:08:38 +02:00
$db -> rollback ();
2011-09-02 17:41:35 +02:00
}
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
*/
2017-08-22 08:12:30 +02:00
$wikihelp = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda' ;
llxHeader ( '' , $langs -> trans ( " AgendaSetup " ), $wikihelp );
2008-03-02 19:47:42 +01:00
2018-02-26 09:20:05 +01:00
$linkback = '<a href="' . DOL_URL_ROOT . '/admin/modules.php?restore_lastsearch_values=1">' . $langs -> trans ( " BackToModuleList " ) . '</a>' ;
2015-09-24 18:33:48 +02: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">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="save">' ;
2017-10-31 19:28:34 +01:00
$param = '' ;
$param .= '&search_event=' . urlencode ( $search_event );
2015-06-30 21:50:24 +02:00
2008-04-08 00:11:22 +02:00
$head = agenda_prepare_head ();
2017-04-30 04:32:03 +02:00
dol_fiche_head ( $head , 'autoactions' , $langs -> trans ( " Agenda " ), - 1 , 'action' );
2008-03-02 19:47:42 +01:00
2013-03-30 14:27:13 +01:00
print $langs -> trans ( " AgendaAutoActionDesc " ) . " <br> \n " ;
2017-11-12 14:02:27 +01:00
print $langs -> trans ( " OnlyActiveElementsAreShown " , 'modules.php' ) . '<br>' ;
2013-03-30 14:27:13 +01:00
print " <br> \n " ;
2008-03-02 19:47:42 +01:00
2017-11-12 14:02:27 +01:00
print '<div class="div-table-responsive">' ; // You can use div-table-responsive-no-min if you dont need reserved height for your table
2011-06-05 10:19:09 +02:00
print '<table class="noborder" width="100%">' ;
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
print '<td class="liste_titre" align="right">' ;
$searchpicto = $form -> showFilterButtons ();
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>' ;
2017-10-31 19:28:34 +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)
2011-06-05 10:19:09 +02:00
if ( ! empty ( $triggers ))
2008-04-08 00:11:22 +02:00
{
2011-06-05 10:19:09 +02:00
foreach ( $triggers as $trigger )
2008-04-08 00:11:22 +02:00
{
2011-06-05 10:19:09 +02:00
$module = $trigger [ 'element' ];
if ( $module == 'order_supplier' || $module == 'invoice_supplier' ) $module = 'fournisseur' ;
if ( $module == 'shipping' ) $module = 'expedition_bon' ;
if ( $module == 'member' ) $module = 'adherent' ;
2013-07-10 14:46:16 +02:00
if ( $module == 'project' ) $module = 'projet' ;
2017-09-17 15:38:50 +02:00
if ( $module == 'proposal_supplier' ) $module = 'supplier_proposal' ;
2011-06-05 10:19:09 +02:00
//print 'module='.$module.'<br>';
2013-07-10 14:46:16 +02:00
if ( ! empty ( $conf -> $module -> enabled ))
2011-06-05 10:19:09 +02:00
{
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
2014-07-06 19:25:15 +02:00
if ( $trigger [ 'code' ] == 'FICHINTER_CLASSIFY_BILLED' && empty ( $conf -> global -> FICHINTER_CLASSIFY_BILLED )) continue ;
2015-06-30 16:10:03 +02:00
if ( $trigger [ 'code' ] == 'FICHINTER_CLASSIFY_UNBILLED' && empty ( $conf -> global -> FICHINTER_CLASSIFY_BILLED )) continue ;
2014-07-06 19:25:15 +02:00
2017-10-31 19:28:34 +01:00
if ( $search_event === '' || preg_match ( '/' . preg_quote ( $search_event , '/' ) . '/i' , $trigger [ 'code' ]))
{
print '<tr class="oddeven">' ;
print '<td>' . $trigger [ 'code' ] . '</td>' ;
print '<td>' . $trigger [ 'label' ] . '</td>' ;
print '<td align="right" width="40">' ;
$key = 'MAIN_AGENDA_ACTIONAUTO_' . $trigger [ 'code' ];
$value = $conf -> global -> $key ;
print '<input class="oddeven" type="checkbox" name="' . $key . '" value="1"' . ((( $action == 'selectall' || $value ) && $action != " selectnone " ) ? ' checked' : '' ) . '>' ;
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
2015-06-30 21:50:24 +02:00
dol_fiche_end ();
print '<div class="center">' ;
2009-06-05 13:59:28 +02:00
print '<input type="submit" name="save" class="button" value="' . $langs -> trans ( " Save " ) . '">' ;
2014-11-25 20:13:43 +01:00
print " </div> " ;
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> " ;
2011-08-27 16:24:16 +02:00
llxFooter ();
2013-03-13 23:05:34 +01:00
$db -> close ();