Files
librenms-librenms/includes/include-dir.inc.php
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
162 B
PHP
Raw Normal View History

2011-09-19 02:27:33 +00:00
<?php
use LibreNMS\Config;
foreach (glob(Config::get('install_dir') . '/' . $include_dir . '/*.inc.php') as $file) {
include $file;
}
2011-09-19 02:27:33 +00:00
unset($include_dir);