<?php
##################################################################
## Development by CoMMoN web site author http://mirmastera.ru ##
## fportal web site scripts http://fportal.tk ##
## All rights reserved authors ##
##################################################################
function block_menu($fldr){
global $mysql,$lng,$mlng;
if(($dh = scandir($fldr)) !== false){
foreach($dh as $key => $f){
if($f != '.' && $f != '..'){
$path = $fldr.'/'.$f;
if(is_dir($path)){
if(is_file($path.'/_widgets/block_menu.php')){
include $path.'/_widgets/block_menu.php';
}
}
}
}
}else{$rezult = false;}
return $rezult;
}
?>