. * ------------------------------------------------------------------------- * @copyright Copyright (C) 2006-2022 by Example plugin team. * @license GPLv2 https://www.gnu.org/licenses/gpl-2.0.html * @link https://github.com/pluginsGLPI/example * ------------------------------------------------------------------------- */ // ---------------------------------------------------------------------- // Original Author of file: Walid Nouh // Purpose of file: // ---------------------------------------------------------------------- namespace GlpiPlugin\Example; use RuleCollection; if (!defined('GLPI_ROOT')) { die("Sorry. You can't access directly to this file"); } class RuleTestCollection extends RuleCollection { // From RuleCollection public $stop_on_first_match = true; public static $rightname = 'rule_import'; public $menu_option = 'test'; function getTitle() { return 'Rulesengine test'; } }