2011-09-19 02:27:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
2017-09-11 15:26:41 -05:00
|
|
|
use LibreNMS\Config;
|
|
|
|
|
|
2020-09-21 15:40:17 +02:00
|
|
|
foreach (glob(Config::get('install_dir') . '/' . $include_dir . '/*.inc.php') as $file) {
|
2016-11-21 07:08:38 +00:00
|
|
|
include $file;
|
2015-07-10 13:36:21 +02:00
|
|
|
}
|
2011-09-19 02:27:33 +00:00
|
|
|
|
2016-11-21 07:08:38 +00:00
|
|
|
unset($include_dir);
|