2013-02-14 Miguel de Dios <miguel.dedios@artica.es>

* include/constants.php: added constant for module type of
	"MODULE_SNMP" and sorted the list of types of modules.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7650 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-02-14 11:27:57 +00:00
parent 901e1585e6
commit b0823dd5db
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-02-14 Miguel de Dios <miguel.dedios@artica.es>
* include/constants.php: added constant for module type of
"MODULE_SNMP" and sorted the list of types of modules.
2013-02-14 Miguel de Dios <miguel.dedios@artica.es> 2013-02-14 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_common.php, * godmode/agentes/module_manager_editor_common.php,

View File

@ -222,8 +222,10 @@ define ('EVENT_CRIT_WARNING_OR_CRITICAL', 34);
define ('EVENT_CRIT_NOT_NORMAL', 20); define ('EVENT_CRIT_NOT_NORMAL', 20);
/* Id Module (more use in component)*/ /* Id Module (more use in component)*/
define ('MODULE_WMI', 6); define ('MODULE_DATA', 1);
define ('MODULE_NETWORK', 2); define ('MODULE_NETWORK', 2);
define ('MODULE_SNMP', 2);
define ('MODULE_PLUGIN', 4); define ('MODULE_PLUGIN', 4);
define ('MODULE_WMI', 6);
define ('MODULE_WEB', 7); define ('MODULE_WEB', 7);
?> ?>