<?php
/*
------
Музыка
------
*/
//Настройки музыки
$music_settings = @PARSE_INI_FILE(ROOT."/system/config/music.ini", FALSE);
$path = CLEARSPECIALCHARS(GET('path'));
$section = CLEARSPECIALCHARS(GET('section'));
IF (GET('section') && FILE_EXISTS(ROOT.'/modules/'.$path.'/content/'.$section.'.php')){
REQUIRE (ROOT.'/modules/'.$path.'/content/'.$section.'.php');
}ELSE{
REQUIRE (ROOT.'/modules/'.$path.'/content/index.php');
}
?>