You are not logged in.

Announcement

 Téléchargez la dernière version stable de GLPI      -     Et vous, que pouvez vous faire pour le projet GLPI ? :  Contribuer
 Download last stable version of GLPI                      -     What can you do for GLPI ? :  Contribute

#1 2024-05-07 10:37:25

rpuente
Member
Registered: 2024-05-07
Posts: 1

Plugin development: Add menu item not work (GLPI 10)

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

Board footer

Powered by FluxBB