ScanImageWebGUI/application/router.class.php

25 lines
275 B
PHP
Raw Normal View History

2014-08-23 23:14:53 -04:00
<?php
class router {
/*
* @the registry
*/
private $registry;
/*
* @the controller path
*/
private $path;
private $args = array();
public $file;
public $controller;
public $action;
function __construct($registry) {
$this->registry = $registry;
}