'PluginExampleExample', // )); // Params : plugin name - string type - ID - Array of attributes Plugin::registerClass('PluginExampleDropdown'); Plugin::registerClass('PluginExampleExample', array('notificationtemplates_types' => true)); Plugin::registerClass('PluginExampleRuleTestCollection', array('rulecollections_types' => true)); // Display a menu entry ? if (isset($_SESSION["glpi_plugin_example_profile"])) { // Right set in change_profile hook $PLUGIN_HOOKS['menu_entry']['example'] = 'front/example.php'; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['title'] = "Search"; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['page'] = '/plugins/example/front/example.php'; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['links']['search'] = '/plugins/example/front/example.php'; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['links']['add'] = '/plugins/example/front/example.form.php'; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['links']['config'] = '/plugins/example/index.php'; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['links']["".$LANG["] = '/plugins/example/index.php'; $PLUGIN_HOOKS['submenu_entry']['example']['options']['optionname']['links'][$LANG['plugin_example']["test"]] = '/plugins/example/index.php'; $PLUGIN_HOOKS["helpdesk_menu_entry"]['example'] = true; } // Config page if (haveRight('config','w')) { $PLUGIN_HOOKS['config_page']['example'] = 'config.php'; } // Init session //$PLUGIN_HOOKS['init_session']['example'] = 'plugin_init_session_example'; // Change profile $PLUGIN_HOOKS['change_profile']['example'] = 'plugin_change_profile_example'; // Change entity //$PLUGIN_HOOKS['change_entity']['example'] = 'plugin_change_entity_example'; // Onglets management $PLUGIN_HOOKS['headings']['example'] = 'plugin_get_headings_example'; $PLUGIN_HOOKS['headings_action']['example'] = 'plugin_headings_actions_example'; // Item action event // See define.php for defined ITEM_TYPE $PLUGIN_HOOKS['pre_item_update']['example'] = array('Computer'=>'plugin_pre_item_update_example'); $PLUGIN_HOOKS['item_update']['example'] = array('Computer'=>'plugin_item_update_example'); $PLUGIN_HOOKS['item_empty']['example'] = array('Computer'=>'plugin_item_empty_example'); // Example using a method in class $PLUGIN_HOOKS['pre_item_add']['example'] = array('Computer' => array('PluginExampleExample', 'pre_item_add_example')); $PLUGIN_HOOKS['item_add']['example'] = array('Computer' => array('PluginExampleExample', 'item_add_example')); $PLUGIN_HOOKS['pre_item_delete']['example'] = array('Computer'=>'plugin_pre_item_delete_example'); $PLUGIN_HOOKS['item_delete']['example'] = array('Computer'=>'plugin_item_delete_example'); // Example using the same function $PLUGIN_HOOKS['pre_item_purge']['example'] = array('Computer'=>'plugin_pre_item_purge_example', 'Phone'=>'plugin_pre_item_purge_example'); $PLUGIN_HOOKS['item_purge']['example'] = array('Computer'=>'plugin_item_purge_example', 'Phone'=>'plugin_item_purge_example'); // Example with 2 different functions $PLUGIN_HOOKS['pre_item_restore']['example'] = array('Computer'=>'plugin_pre_item_restore_example', 'Phone'=>'plugin_pre_item_restore_example2'); $PLUGIN_HOOKS['item_restore']['example'] = array('Computer'=>'plugin_item_restore_example'); // Add event to GLPI core itemtype, event will be raised by the plugin. // See plugin_example_uninstall for cleanup of notification $PLUGIN_HOOKS['item_get_events']['example'] = array('NotificationTargetTicket'=>'plugin_example_get_events'); // Add datas to GLPI core itemtype for notifications template. $PLUGIN_HOOKS['item_get_datas']['example'] = array('NotificationTargetTicket'=>'plugin_example_get_datas'); $PLUGIN_HOOKS['item_transfer']['example'] = 'plugin_item_transfer_example'; //redirect // Simple redirect : http://localhost/glpi/index.php?redirect=plugin_example_2 (ID 2 du form) // $PLUGIN_HOOKS['redirect_page']['example'] = 'example.form.php'; // Multiple redirect : http://localhost/glpi/index.php?redirect=plugin_example_one_2 (ID 2 du form) // Multiple redirect : http://localhost/glpi/index.php?redirect=plugin_example_two_2 (ID 2 du form) $PLUGIN_HOOKS['redirect_page']['example']['one'] = 'example.form.php'; $PLUGIN_HOOKS['redirect_page']['example']['two'] = 'example2.form.php'; //function to populate planning $PLUGIN_HOOKS['planning_populate']['example'] = 'plugin_planning_populate_example'; //function to display planning items $PLUGIN_HOOKS['display_planning']['example'] = 'plugin_display_planning_example'; // Massive Action definition $PLUGIN_HOOKS['use_massive_action']['example'] = 1; $PLUGIN_HOOKS['assign_to_ticket']['example'] = 1; // 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'; // Retrieve others datas from LDAP //$PLUGIN_HOOKS['retrieve_more_data_from_ldap']['example']="plugin_retrieve_more_data_from_ldap_example"; // Reports $PLUGIN_HOOKS['reports']['example'] = array('report.php' => 'New Report', 'report.php?other' => 'New Report 2'); // Stats $PLUGIN_HOOKS['stats']['example'] = array('stat.php' => 'New stat', 'stat.php?other' => 'New stats 2',); $PLUGIN_HOOKS['post_init']['example'] = 'plugin_example_postinit'; } // Get the name and the version of the plugin - Needed function plugin_version_example() { return array('name' => 'Plugin Example', 'version' => '5.0', 'author' => 'Julien Dombre', 'homepage' => 'https://forge.indepnet.net/projects/example', 'minGlpiVersion' => '0.83');// For compatibility / no install in version < 0.80 } // Optional : check prerequisites before install : may print errors or add to message after redirect function plugin_example_check_prerequisites() { // Strict version check (could be less strict, or could allow various version) if (version_compare(GLPI_VERSION,'0.83','lt') || version_compare(GLPI_VERSION,'0.84','ge')) { echo "This plugin requires GLPI >= 0.80"; return false; } return true; } // Check configuration process for plugin : need to return true if succeeded // Can display a message only if failure and $verbose is true function plugin_example_check_config($verbose=false) { global $LANG; if (true) { // Your configuration check return true; } if ($verbose) { echo $LANG['plugins'][2]; } return false; } ?>