Remove hardcoded value

This commit is contained in:
Laurent Destailleur
2023-08-01 18:46:33 +02:00
parent 1808d77ce6
commit b52f426518
7 changed files with 9 additions and 9 deletions

View File

@@ -89,8 +89,8 @@ class modBom extends DolibarrModules
'tpl' => 0, // Set this to 1 if module overwrite template dir (core/tpl)
'barcode' => 0, // Set this to 1 if module has its own barcode directory (core/modules/barcode)
'models' => 0, // Set this to 1 if module has its own models directory (core/modules/xxx)
'css' => array('/bom/css/bom.css.php'), // Set this to relative path of css file if module has its own css file
'js' => array('/bom/js/bom.js.php'), // Set this to relative path of js file if module must load a js on all pages
'css' => array('/bom/css/bom.css.php'), // Set this to relative path of css file if module has its own css file
'js' => array('/bom/js/bom.js.php'), // Set this to relative path of js file if module must load a js on all pages
'hooks' => array('data'=>array('hookcontext1','hookcontext2'), 'entity'=>'0'), // Set here all hooks context managed by module. To find available hook context, make a "grep -r '>initHooks(' *" on source code. You can also set hook context 'all'
'moduleforexternal' => 0 // Set this to 1 if feature of module are opened to external users
*/