PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Bill Rocha   SMVC   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: BootStrap
Class: SMVC
MVC framework implementation
Author: By
Last change: nova versão
Date: 14 years ago
Size: 531 bytes
 

Contents

Class file image Download
<?php
$mark1
=microtime();
//abre o arquivo de configuração (xml)
if(file_exists('_smvc/config.xml')) {$cfg=simplexml_load_file('_smvc/config.xml');}
else {exit(
'Não achei o arquivo de configuração!');}
//define o caminho se já não estiver definido no arquivo de configuração
if($cfg->path=="") {$cfg->path=dirname(__FILE__);}
if(
$cfg->uri=="") {@$cfg->uri=$_SERVER['REQUEST_URI'];}
//procura e carrega o CORE do sistema
if(file_exists($cfg->core)) {include($cfg->core);}
else {exit(
"Não achei o CORE do sistema!");}
?>