PHP Classes

File: _smvc/_ctrl/instalar.php

Recommend this page to a friend!
  Classes of Bill Rocha   NEOS PHP Framework   _smvc/_ctrl/instalar.php   Download  
File: _smvc/_ctrl/instalar.php
Role: Example script
Content type: text/plain
Description: Controler padrão inicial - usado para instalação do Simple e server como exemplo de funcionamento do Simple
Class: NEOS PHP Framework
Framework that implements the MVC design pattern
Author: By
Last change: Correção de erro...
Date: 14 years ago
Size: 795 bytes
 

Contents

Class file image Download
<?php
/**
 * Smvc - Simple MVC
 * @package SMVC
 * @author Paulo Rocha
 * @copyright 2009 - 2009 Ahcor Design
 * @license http://smvc.tk/manual/license.html
 * @link http://smvc.tk
 * @since Version 0.01
 * @filesource http://smvc.tk/download
 * @category Instalar
 * @uses Default controller (in the install). This controllers is used for: Install, Configurations and Management of aplication.
 */
class Instalar extends Smvc
{
    function
__construct()
    {
       
parent::__construct();
    }
    function
index()
    {
       
$this->view("_instalar/splash");
    }
   
    function
manual($valor="")
    {
       
$this->view("_instalar/manual");
    }
   
    function
criar()
    {
       
$this->view("_instalar/criar");
    }
    function
configurar()
    {
       
$this->view("_instalar/configurar");
    }

}

?>