PHP Classes

File: Application/Setting/Router.php

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Application/Setting/Router.php   Download  
File: Application/Setting/Router.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change:
Date: 7 years ago
Size: 262 bytes
 

Contents

Class file image Download
<?php

$_ROUTER
['default'] = array(
   
'user_update' => array(
       
'route' => '/user/[i:id]/update',
       
'controller' => 'user',
       
'action' => 'update',
       
'method' => 'PUT',
       
'module' => 'user',
       
'params' => array(),
    ),
);