<?php
/*
*
*
*
*/
require_once("../classes/class.interfaces.php");
$IFace = new Interfaces();
// CONEXAO
$IFace->SGBDR = "MySQL"; // SGBDR
$IFace->Conexao("localhost","root","","test","3306"); // Propriedades da Conexao
// APARENCIA
$IFace->CelAlt = "24"; // Altura da Celula (Registro)
$IFace->CelCor = "#EDEDED"; // Cor da Celula (Registro)
$IFace->CelCorAtivo = "#C7CDD7"; // Cor da Celula Ativa (Registro)
$IFace->CelCorTit = "#000066"; // Cor do Titulo
// CONFIGURACAOES
$IFace->URL = "http://localhost/projetos/"; // Raiz do Projeto
$IFace->DirImg = "../classes/imagens/"; // Diretorio de Imagens
?>