Avail feature updated
[ninja.git] / application / config / hypergraph.php
blob4b7a54d277b0f548da53a7509622c5f2cdc7da69
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3 * Specify the path to the hyperapplet jar file
4 * Download from http://hypergraph.sourceforge.net/download.html
5 */
7 $config['hypergraph_dir'] = 'vendor/hypergraph';
10 $config['hyperapplet_path'] = $config['hypergraph_dir'] . '/hyperapplet.jar';
11 $config['nagios_props'] = $config['hypergraph_dir'] . '/nagios.prop';
12 $config['hyper_dtd'] = $config['hypergraph_dir'] . '/GraphXML.dtd';
14 if (!is_file(APPPATH.$config['hyperapplet_path']))
15 $config['hyperapplet_path'] = false;
16 if (!is_file(APPPATH.$config['nagios_props']))
17 $config['nagios_props'] = false;
18 if (!is_file(APPPATH.$config['hyper_dtd']))
19 $config['hyper_dtd'] = false;