You are not logged in.
I can't get my plugin link to appear in the tools menu. I have followed the steps. I share the code snippets of each file to see if you can help me:
setup.php:
function plugin_init_licensecompliance()
{
global $PLUGIN_HOOKS;
$PLUGIN_HOOKS['csrf_compliant']['licensecompliance'] = true;
$PLUGIN_HOOKS["menu_toadd"]['licensecompliance'] = ['tools' => 'PluginLicenseComplianceMenu'];
if (Session::haveRight('config', UPDATE))
{
$PLUGIN_HOOKS['config_page']['licensecompliance'] = 'front/config.php';
}
}
inc/menu.class.php:
<?php
class PluginLicenseComplianceMenu extends CommonGLPI
{
public static $rightname = 'plugin_licensecompliance';
public static function getMenuName()
{
return __('License Compliance', 'licensecompliance');
}
public static function getMenuContent()
{
/** @var array $CFG_GLPI */
global $CFG_GLPI;
$URL=Plugin::getWebDir('licensecompliance').'/front/licencecompliance.php';
$menu = [
'title' => self::getMenuName(),
'page' => $URL,
'icon' => 'fas fa-file-import',
];
return $menu;
}
}
Last edited by rpuente (2024-05-07 10:41:28)
Offline