File "router.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/install/controller/startup/router.php
File size: 319 B (319 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
class ControllerStartupRouter extends Controller {
	public function index() {
		if (isset($this->request->get['route']) && $this->request->get['route'] != 'action/route') {
			return new Action($this->request->get['route']);
		} else {
			return new Action($this->config->get('action_default'));
		}
	}
}