mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply "Squiz" code style on old (pre-2014) files
This commit is contained in:
@@ -1,26 +1,22 @@
|
||||
<?php
|
||||
|
||||
// This is an include so that we don't lose variable scope.
|
||||
if ($include_dir_regexp == '' || !isset($include_dir_regexp)) {
|
||||
$include_dir_regexp = '/\.inc\.php$/';
|
||||
}
|
||||
|
||||
if ($include_dir_regexp == "" || !isset($include_dir_regexp))
|
||||
{
|
||||
$include_dir_regexp = "/\.inc\.php$/";
|
||||
}
|
||||
if ($handle = opendir($config['install_dir'].'/'.$include_dir)) {
|
||||
while (false !== ($file = readdir($handle))) {
|
||||
if (filetype($config['install_dir'].'/'.$include_dir.'/'.$file) == 'file' && preg_match($include_dir_regexp, $file)) {
|
||||
if ($debug) {
|
||||
echo 'Including: '.$config['install_dir'].'/'.$include_dir.'/'.$file."\n";
|
||||
}
|
||||
|
||||
if ($handle = opendir($config['install_dir'] . '/' . $include_dir))
|
||||
{
|
||||
while (false !== ($file = readdir($handle)))
|
||||
{
|
||||
if (filetype($config['install_dir'] . '/' . $include_dir . '/' . $file) == 'file' && preg_match($include_dir_regexp, $file))
|
||||
{
|
||||
if ($debug) { echo("Including: " . $config['install_dir'] . '/' . $include_dir . '/' . $file . "\n"); }
|
||||
|
||||
include($config['install_dir'] . '/' . $include_dir . '/' . $file);
|
||||
}
|
||||
include $config['install_dir'].'/'.$include_dir.'/'.$file;
|
||||
}
|
||||
}
|
||||
|
||||
closedir($handle);
|
||||
}
|
||||
}
|
||||
|
||||
unset($include_dir_regexp, $include_dir);
|
||||
|
||||
?>
|
||||
unset($include_dir_regexp, $include_dir);
|
||||
|
Reference in New Issue
Block a user