PHP Classes

File: tests/addLayer/StoreController.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/addLayer/StoreController.php   Download  
File: tests/addLayer/StoreController.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 330 bytes
 

Contents

Class file image Download
<?php

class StoreController extends Mind
{

    public function
__construct($conf = array())
    {
       
parent::__construct($conf);
    }

    public function
index()
    {
       
//
       
echo 'merhaba ben store\'dan index';
    }

    public function
create()
    {
       
//
       
echo 'merhaba ben create';
    }

}