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 2023-05-08 12:13:29

Mahdi Khadher
Member
Registered: 2023-04-24
Posts: 6

Adding a new button in GLPI

Hello everyone,
I'm trying to add a new button under the Management tree for the super-admin main interface that I'm gonna develop eventually. I've been digging into the files for so long and I ended up in a closed path. What I want to know is simply where to find the file responsible for rendering the home page in GLPI so I can add the button and work my way up from there.

Offline

#2 2023-07-02 20:29:48

Ragnarok
Member
Registered: 2019-10-28
Posts: 44

Re: Adding a new button in GLPI

you can write your own plugin and use the redefine_menu hook

function plugin_yourplugin_redefine_menus($menu) {
    $menu['youritem']['default'] = Plugin::getWebDir('yourplugin') . '/front/index.php';
    $menu['youritem']['title'] = 'Use you plugin';
    $menu['youritem']['icon'] = 'fas fa-dollar-sign';
  }
  return $menu;
}

Offline

Board footer

Powered by FluxBB