Base d'exemple + gestion plugins

git-svn-id: https://forge.glpi-project.org/svn/example/trunk@21 349b9182-4a13-0410-896f-e5e9767dd1b3
This commit is contained in:
moyooo
2007-05-18 00:18:19 +00:00
parent 5f50887e38
commit 24dcbd9399
3 changed files with 26 additions and 4 deletions

View File

@ -75,6 +75,11 @@ function plugin_init_example() {
// Add specific files to add to the header : javascript or css
$PLUGIN_HOOKS['add_javascript']['example']="example.js";
$PLUGIN_HOOKS['add_css']['example']="example.css";
// Define Dropdown tables to be manage in GLPI :
$PLUGIN_HOOKS['dropdown']['example']=array("glpi_dropdown_plugin_example"=>"Plugin Example Dropdown");
$PLUGIN_HOOKS['database_relations']['example']=array("glpi_dropdown_plugin_example"=>array("glpi_plugin_example","FK_dropdown"));
}