query($q); $moduleActive = 0; $inner = ' class="body-inner"'; $jsInner = '-inner'; if($module->num_rows) { // Connect module $module = $module->fetch_assoc(); $tpl_file = $module['word']; @include_once ($WEB."engine/modules/".$tpl_file.".php"); } else { /** * Check for normal page */ $q = " SELECT * FROM `rce_pages` WHERE `trans` = '".$URL[0]."' "; $info = $mysqli->query($q); if($info->num_rows) { // Have this page, use Page module $tpl_file = 'page'; @require_once ($WEB."engine/modules/page.php"); } // Nothing found, go to 404 if($moduleActive == 0) { // Set headers and show template header("HTTP/1.0 404 Not Found"); $tpl_file = '404'; } } } // Add widgets include_once ($WEB."engine/modules/widgets.php"); // Include template renderer for site front include_once ($WEB."template/template.php"); }