PHP Classes

File: app/example/controller/filenotfoundcontroller.class.php

Recommend this page to a friend!
  Classes of Carlos Eduardo Barcelos Amaral   Base MVC Framework   app/example/controller/filenotfoundcontroller.class.php   Download  
File: app/example/controller/filenotfoundcontroller.class.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Base MVC Framework
MVC framework to be the base of Web applications
Author: By
Last change:
Date: 7 years ago
Size: 459 bytes
 

Contents

Class file image Download
<?php
namespace Controller;
use \
Core\Controller;
/**
* FileNotFoundController
*/
class FileNotFoundController extends Controller
{
   public
$file;
  
   function
index() {
     
$this->output = $this->load->view('errors/filenotfound', Array(
        
'head' => $this->load->view('commons/head'),
        
'menu' => $this->load->view('commons/menu'),
        
'footer' => $this->load->view('commons/footer'),
        
'file' => $this->file
     
));
   }
}