* add code to import xml templates using curl.
[monitor.git] / zabbix / getdefines.php
1 <?php
2
3 $path = '/var/www/html/zabbix/include';
4 set_include_path(get_include_path() . PATH_SEPARATOR . $path);
5
6 require "defines.inc.php";
7
8 $const = get_defined_constants(true);
9 foreach ( $const['user'] as $k => $v ):
10         if ( is_int($v) ):
11                 print "$k=$v\n";
12         endif;
13 endforeach;
14
15 ?>