. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } class RuleAssetCollection extends RuleCollection { // From RuleCollection public $stop_on_first_match = false; static $rightname = 'rule_asset'; public $menu_option = 'ruleasset'; function getTitle() { return __('Business rules for assets'); } function cleanTestOutputCriterias(array $output) { if (isset($output["_rule_process"])) { unset($output["_rule_process"]); } return $output; } }