2017-05-08 21:00:23 +02:00
< ? php
2024-08-17 19:32:52 +02:00
/* Copyright ( C ) 2023 Laurent Destailleur < eldy @ users . sourceforge . net >
2024-08-18 18:16:08 +02:00
* Copyright ( C ) --- Replace with your own copyright and developer email ---
2017-05-08 21:00:23 +02: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
* 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
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2017-05-08 21:00:23 +02:00
*/
/**
2017-05-27 13:46:34 +02:00
* \file htdocs / modulebuilder / template / class / actions_mymodule . class . php
2017-05-08 21:00:23 +02:00
* \ingroup mymodule
* \brief Example hook overload .
*
2024-08-18 18:16:08 +02:00
* TODO : Write detailed description here .
2017-05-08 21:00:23 +02:00
*/
2023-08-05 15:44:28 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/commonhookactions.class.php' ;
2017-05-08 21:00:23 +02:00
/**
* Class ActionsMyModule
*/
2023-08-05 15:44:28 +02:00
class ActionsMyModule extends CommonHookActions
2017-05-08 21:00:23 +02:00
{
2020-05-01 08:40:55 +02:00
/**
* @ var DoliDB Database handler .
*/
public $db ;
/**
* @ var string Error code ( or message )
*/
public $error = '' ;
/**
2024-08-18 18:16:08 +02:00
* @ var string [] Errors
2020-05-01 08:40:55 +02:00
*/
public $errors = array ();
/**
2024-08-18 18:16:08 +02:00
* @ var mixed [] Hook results . Propagated to $hookmanager -> resArray for later reuse
2020-05-01 08:40:55 +02:00
*/
public $results = array ();
/**
2024-04-09 23:21:28 +02:00
* @ var ? string String displayed by executeHook () immediately after return
2020-05-01 08:40:55 +02:00
*/
public $resprints ;
2022-06-16 08:53:31 +02:00
/**
* @ var int Priority of hook ( 50 is used if value is not defined )
*/
public $priority ;
2020-05-01 08:40:55 +02:00
/**
* Constructor
*
2024-08-18 18:16:08 +02:00
* @ param DoliDB $db Database handler
2020-05-01 08:40:55 +02:00
*/
public function __construct ( $db )
{
$this -> db = $db ;
}
/**
* Execute action
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Array of parameters
* @ param CommonObject $object The object to process ( an invoice if you are in invoice module , a propale in propale ' s module , etc ... )
* @ param string $action 'add' , 'update' , 'view'
* @ return int Return integer < 0 if KO ,
2020-05-01 08:40:55 +02:00
* = 0 if OK but we want to process standard actions too ,
2024-08-18 18:16:08 +02:00
* > 0 if OK and we want to replace standard actions .
2020-05-01 08:40:55 +02:00
*/
public function getNomUrl ( $parameters , & $object , & $action )
{
global $db , $langs , $conf , $user ;
$this -> resprints = '' ;
return 0 ;
}
/**
2024-08-18 18:16:08 +02:00
* Overload the doActions function : replacing the parent ' s function with the one below
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Hook metadata ( context , etc ... )
* @ param CommonObject $object The object to process ( an invoice if you are in invoice module , a propale in propale ' s module , etc ... )
* @ param ? string $action Current action ( if set ) . Generally create or edit or null
* @ param HookManager $hookmanager Hook manager propagated to allow calling another hook
* @ return int Return integer < 0 on error , 0 on success , 1 to replace standard code
2020-05-01 08:40:55 +02:00
*/
public function doActions ( $parameters , & $object , & $action , $hookmanager )
{
global $conf , $user , $langs ;
$error = 0 ; // Error counter
/* print_r($parameters); print_r($object); echo "action: " . $action; */
2024-08-18 18:16:08 +02:00
// @phan-suppress-next-line PhanPluginEmptyStatementIf
2021-02-26 18:26:44 +01:00
if ( in_array ( $parameters [ 'currentcontext' ], array ( 'somecontext1' , 'somecontext2' ))) { // do something only for the context 'somecontext1' or 'somecontext2'
2021-02-26 18:28:25 +01:00
// Do what you want here...
2024-08-18 18:16:08 +02:00
// You can for example load and use call global vars like $fieldstosearchall to overwrite them, or update the database depending on $action and GETPOST values.
2020-05-01 08:40:55 +02:00
2024-11-06 22:25:00 +01:00
if ( ! $error ) {
$this -> results = array ( 'myreturn' => 999 );
$this -> resprints = 'A text to show' ;
return 0 ; // or return 1 to replace standard code
} else {
$this -> errors [] = 'Error message' ;
return - 1 ;
}
2020-05-01 08:40:55 +02:00
}
2024-11-06 22:25:00 +01:00
return 0 ;
2020-05-01 08:40:55 +02:00
}
/**
2024-08-18 18:16:08 +02:00
* Overload the doMassActions function : replacing the parent ' s function with the one below
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Hook metadata ( context , etc ... )
* @ param CommonObject $object The object to process ( an invoice if you are in invoice module , a propale in propale ' s module , etc ... )
* @ param ? string $action Current action ( if set ) . Generally create or edit or null
* @ param HookManager $hookmanager Hook manager propagated to allow calling another hook
* @ return int Return integer < 0 on error , 0 on success , 1 to replace standard code
2020-05-01 08:40:55 +02:00
*/
public function doMassActions ( $parameters , & $object , & $action , $hookmanager )
{
global $conf , $user , $langs ;
$error = 0 ; // Error counter
/* print_r($parameters); print_r($object); echo "action: " . $action; */
2021-02-26 18:26:44 +01:00
if ( in_array ( $parameters [ 'currentcontext' ], array ( 'somecontext1' , 'somecontext2' ))) { // do something only for the context 'somecontext1' or 'somecontext2'
2024-08-18 18:16:08 +02:00
// @phan-suppress-next-line PhanPluginEmptyStatementForeachLoop
2021-02-26 18:26:44 +01:00
foreach ( $parameters [ 'toselect' ] as $objectid ) {
2020-05-01 08:40:55 +02:00
// Do action on each object id
}
2024-11-06 22:25:00 +01:00
if ( ! $error ) {
$this -> results = array ( 'myreturn' => 999 );
$this -> resprints = 'A text to show' ;
return 0 ; // or return 1 to replace standard code
} else {
$this -> errors [] = 'Error message' ;
return - 1 ;
}
2020-05-01 08:40:55 +02:00
}
2024-11-06 22:25:00 +01:00
return 0 ;
2020-05-01 08:40:55 +02:00
}
/**
2024-08-18 18:16:08 +02:00
* Overload the addMoreMassActions function : replacing the parent ' s function with the one below
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Hook metadata ( context , etc ... )
* @ param CommonObject $object The object to process ( an invoice if you are in invoice module , a propale in propale ' s module , etc ... )
* @ param ? string $action Current action ( if set ) . Generally create or edit or null
* @ param HookManager $hookmanager Hook manager propagated to allow calling another hook
* @ return int Return integer < 0 on error , 0 on success , 1 to replace standard code
2020-05-01 08:40:55 +02:00
*/
public function addMoreMassActions ( $parameters , & $object , & $action , $hookmanager )
{
global $conf , $user , $langs ;
$error = 0 ; // Error counter
2020-05-21 00:02:33 +02:00
$disabled = 1 ;
2020-05-01 08:40:55 +02:00
/* print_r($parameters); print_r($object); echo "action: " . $action; */
2021-02-26 18:26:44 +01:00
if ( in_array ( $parameters [ 'currentcontext' ], array ( 'somecontext1' , 'somecontext2' ))) { // do something only for the context 'somecontext1' or 'somecontext2'
2020-05-01 08:40:55 +02:00
$this -> resprints = '<option value="0"' . ( $disabled ? ' disabled="disabled"' : '' ) . '>' . $langs -> trans ( " MyModuleMassAction " ) . '</option>' ;
}
if ( ! $error ) {
return 0 ; // or return 1 to replace standard code
} else {
$this -> errors [] = 'Error message' ;
return - 1 ;
}
}
/**
2024-08-18 18:16:08 +02:00
* Execute action before PDF ( document ) creation
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Array of parameters
* @ param CommonObject $object Object output on PDF
* @ param string $action 'add' , 'update' , 'view'
* @ return int Return integer < 0 if KO ,
* = 0 if OK but we want to process standard actions too ,
* > 0 if OK and we want to replace standard actions .
2020-05-01 08:40:55 +02:00
*/
public function beforePDFCreation ( $parameters , & $object , & $action )
{
global $conf , $user , $langs ;
global $hookmanager ;
$outputlangs = $langs ;
2023-12-04 13:46:42 +01:00
$ret = 0 ;
$deltemp = array ();
2020-05-01 08:40:55 +02:00
dol_syslog ( get_class ( $this ) . '::executeHooks action=' . $action );
/* print_r($parameters); print_r($object); echo "action: " . $action; */
2024-08-18 18:16:08 +02:00
// @phan-suppress-next-line PhanPluginEmptyStatementIf
2021-02-26 18:26:44 +01:00
if ( in_array ( $parameters [ 'currentcontext' ], array ( 'somecontext1' , 'somecontext2' ))) { // do something only for the context 'somecontext1' or 'somecontext2'
2020-05-01 08:40:55 +02:00
}
return $ret ;
}
/**
2024-08-18 18:16:08 +02:00
* Execute action after PDF ( document ) creation
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Array of parameters
* @ param CommonDocGenerator $pdfhandler PDF builder handler
* @ param string $action 'add' , 'update' , 'view'
* @ return int Return integer < 0 if KO ,
* = 0 if OK but we want to process standard actions too ,
* > 0 if OK and we want to replace standard actions .
2020-05-01 08:40:55 +02:00
*/
public function afterPDFCreation ( $parameters , & $pdfhandler , & $action )
{
global $conf , $user , $langs ;
global $hookmanager ;
$outputlangs = $langs ;
2023-12-04 13:46:42 +01:00
$ret = 0 ;
$deltemp = array ();
2020-05-01 08:40:55 +02:00
dol_syslog ( get_class ( $this ) . '::executeHooks action=' . $action );
/* print_r($parameters); print_r($object); echo "action: " . $action; */
2024-08-18 18:16:08 +02:00
// @phan-suppress-next-line PhanPluginEmptyStatementIf
2020-05-21 00:02:33 +02:00
if ( in_array ( $parameters [ 'currentcontext' ], array ( 'somecontext1' , 'somecontext2' ))) {
// do something only for the context 'somecontext1' or 'somecontext2'
2020-05-01 08:40:55 +02:00
}
return $ret ;
}
/**
2024-08-18 18:16:08 +02:00
* Overload the loadDataForCustomReports function : returns data to complete the customreport tool
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Hook metadata ( context , etc ... )
* @ param ? string $action Current action ( if set ) . Generally create or edit or null
* @ param HookManager $hookmanager Hook manager propagated to allow calling another hook
* @ return int Return integer < 0 on error , 0 on success , 1 to replace standard code
2020-05-01 08:40:55 +02:00
*/
public function loadDataForCustomReports ( $parameters , & $action , $hookmanager )
{
2024-02-12 20:08:05 +01:00
global $langs ;
2020-05-01 08:40:55 +02:00
$langs -> load ( " mymodule@mymodule " );
$this -> results = array ();
$head = array ();
$h = 0 ;
if ( $parameters [ 'tabfamily' ] == 'mymodule' ) {
$head [ $h ][ 0 ] = dol_buildpath ( '/module/index.php' , 1 );
$head [ $h ][ 1 ] = $langs -> trans ( " Home " );
$head [ $h ][ 2 ] = 'home' ;
$h ++ ;
$this -> results [ 'title' ] = $langs -> trans ( " MyModule " );
$this -> results [ 'picto' ] = 'mymodule@mymodule' ;
}
$head [ $h ][ 0 ] = 'customreports.php?objecttype=' . $parameters [ 'objecttype' ] . ( empty ( $parameters [ 'tabfamily' ]) ? '' : '&tabfamily=' . $parameters [ 'tabfamily' ]);
$head [ $h ][ 1 ] = $langs -> trans ( " CustomReports " );
$head [ $h ][ 2 ] = 'customreports' ;
$this -> results [ 'head' ] = $head ;
2024-02-12 20:08:05 +01:00
$arrayoftypes = array ();
//$arrayoftypes['mymodule_myobject'] = array('label' => 'MyObject', 'picto'=>'myobject@mymodule', 'ObjectClassName' => 'MyObject', 'enabled' => isModEnabled('mymodule'), 'ClassPath' => "/mymodule/class/myobject.class.php", 'langs'=>'mymodule@mymodule')
$this -> results [ 'arrayoftype' ] = $arrayoftypes ;
return 0 ;
2020-05-01 08:40:55 +02:00
}
/**
2024-08-18 18:16:08 +02:00
* Overload the restrictedArea function : check permission on an object
2020-05-01 08:40:55 +02:00
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Hook metadata ( context , etc ... )
* @ param string $action Current action ( if set ) . Generally create or edit or null
* @ param HookManager $hookmanager Hook manager propagated to allow calling another hook
* @ return int Return integer < 0 if KO ,
* = 0 if OK but we want to process standard actions too ,
* > 0 if OK and we want to replace standard actions .
2020-05-01 08:40:55 +02:00
*/
public function restrictedArea ( $parameters , & $action , $hookmanager )
{
global $user ;
if ( $parameters [ 'features' ] == 'myobject' ) {
2023-06-06 00:05:02 +02:00
if ( $user -> hasRight ( 'mymodule' , 'myobject' , 'read' )) {
2020-05-01 08:40:55 +02:00
$this -> results [ 'result' ] = 1 ;
return 1 ;
} else {
$this -> results [ 'result' ] = 0 ;
return 1 ;
}
}
return 0 ;
}
2021-05-12 18:29:56 +02:00
/**
* Execute action completeTabsHead
*
2024-08-18 18:16:08 +02:00
* @ param array < string , mixed > $parameters Array of parameters
* @ param CommonObject $object The object to process ( an invoice if you are in invoice module , a propale in propale ' s module , etc ... )
* @ param string $action 'add' , 'update' , 'view'
* @ param Hookmanager $hookmanager Hookmanager
* @ return int Return integer < 0 if KO ,
* = 0 if OK but we want to process standard actions too ,
* > 0 if OK and we want to replace standard actions .
2021-05-12 18:29:56 +02:00
*/
public function completeTabsHead ( & $parameters , & $object , & $action , $hookmanager )
{
global $langs , $conf , $user ;
if ( ! isset ( $parameters [ 'object' ] -> element )) {
return 0 ;
}
if ( $parameters [ 'mode' ] == 'remove' ) {
2023-05-30 13:21:07 +02:00
// used to make some tabs removed
2021-05-12 18:29:56 +02:00
return 0 ;
} elseif ( $parameters [ 'mode' ] == 'add' ) {
$langs -> load ( 'mymodule@mymodule' );
2023-05-30 13:21:07 +02:00
// used when we want to add some tabs
2021-05-12 18:29:56 +02:00
$counter = count ( $parameters [ 'head' ]);
$element = $parameters [ 'object' ] -> element ;
$id = $parameters [ 'object' ] -> id ;
// verifier le type d'onglet comme member_stats où ça ne doit pas apparaitre
// if (in_array($element, ['societe', 'member', 'contrat', 'fichinter', 'project', 'propal', 'commande', 'facture', 'order_supplier', 'invoice_supplier'])) {
if ( in_array ( $element , [ 'context1' , 'context2' ])) {
$datacount = 0 ;
$parameters [ 'head' ][ $counter ][ 0 ] = dol_buildpath ( '/mymodule/mymodule_tab.php' , 1 ) . '?id=' . $id . '&module=' . $element ;
$parameters [ 'head' ][ $counter ][ 1 ] = $langs -> trans ( 'MyModuleTab' );
if ( $datacount > 0 ) {
$parameters [ 'head' ][ $counter ][ 1 ] .= '<span class="badge marginleftonlyshort">' . $datacount . '</span>' ;
}
$parameters [ 'head' ][ $counter ][ 2 ] = 'mymoduleemails' ;
$counter ++ ;
}
2024-10-05 18:55:36 +02:00
if ( $counter > 0 && ( int ) DOL_VERSION < 14 ) { // @phpstan-ignore-line
2021-05-12 18:29:56 +02:00
$this -> results = $parameters [ 'head' ];
// return 1 to replace standard code
return 1 ;
} else {
2024-10-05 18:55:36 +02:00
// From V14 onwards, $parameters['head'] is modifiable by reference
2021-05-12 18:29:56 +02:00
return 0 ;
}
2023-05-30 13:21:07 +02:00
} else {
// Bad value for $parameters['mode']
return - 1 ;
2021-05-12 18:29:56 +02:00
}
}
2024-08-18 18:16:08 +02:00
/* Add other hook methods here... */
2017-05-08 21:00:23 +02:00
}