Add inc directory with class remotesupport

- add dependency on fusioninventory
This commit is contained in:
Jaroslav Drzik
2021-11-26 08:18:31 +01:00
parent 203b8ad51f
commit 509f5fd46c
3 changed files with 51 additions and 12 deletions

View File

@@ -24,6 +24,7 @@
define('PLUGIN_REMOTESUPPORT_VERSION', '0.0.1');
define('PLUGIN_REMOTESUPPORT_MIN_GLPI', '9.5.0');
define('PLUGIN_REMOTESUPPORT_MAX_GLPI', '9.6.0');
define("PLUGIN_REMOTESUPPORT_DIR", GLPI_ROOT . "/plugins/remotesupport");
function plugin_init_remotesupport()
{
@@ -32,7 +33,13 @@ function plugin_init_remotesupport()
if (Plugin::isPluginActive('remotesupport')) {
$PLUGIN_HOOKS['add_javascript']['remotesupport'][] = 'js/support.js';
// $PLUGIN_HOOKS['add_javascript']['remotesupport'][] = 'js/support.js';
include(PLUGIN_REMOTESUPPORT_DIR . "/inc/remotesupport.class.php");
$PLUGIN_HOOKS['autoinventory_information']['remotesupport'] = array(
'Computer' => array('PluginRemoteSupportComputer', 'showInfo')
);
// Add Config Page
// Plugin::registerClass('PluginRemotesupportConfig', ['addtabon' => 'Config']);