This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/application/classes/controller/redir.php

21 lines
467 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Redirection Engine
*
* @package lnApp
* @subpackage Page/Home
* @category Controllers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Controller_Redir extends Controller_TemplateDefault {
protected $auth_required = FALSE;
public function action_index() {
echo debug::vars($_SERVER['SERVER_NAME']);
}
}
?>