PHP Classes

File: controller/Welcome.php

Recommend this page to a friend!
  Classes of Jonathan Alexey   JFWork   controller/Welcome.php   Download  
File: controller/Welcome.php
Role: Class source
Content type: text/plain
Description: Example script
Class: JFWork
Tiny framework based on the MVC design pattern
Author: By
Last change: Update of controller/Welcome.php
Date: 2 years ago
Size: 153 bytes
 

Contents

Class file image Download
<?php

class Welcome extends Engine {

    function
__construct (){
       
parent::__construct();
       
    }
   
    function
Index(){
       
       
load_view("welcome");
    }

}

?>