';
$dir = dir(ROOT_DIR);
while ($file = $dir->read())
{
if ($file[0] == '.')
continue;
if (is_dir(ROOT_DIR . '/' . $file)
&& file_exists(ROOT_DIR . '/' . $file . '/vvb.ini'))
{
$ini = parse_ini_file(ROOT_DIR . '/' . $file . '/vvb.ini');
$config = new stdClass;
foreach ($ini as $key=>$value)
{
$key = strtolower($key);
$config->$key = $value;
}
unset($ini);
echo '
';
}
}
$dir->close();
echo '