. -------------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access directly to this file"); } // Class NotificationTarget class PluginExampleNotificationTargetExample extends NotificationTarget { function getEvents() { return array ('alert' => 'alert example'); } function getDatasForTemplate($event, $options=array()) { global $DB, $CFG_GLPI; $this->datas['##example.name##'] = __('Example', 'example'); } }