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.
khosb/application/classes/Controller/Direct.php
2018-06-13 21:40:08 +10:00

24 lines
688 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides Direct Page Access
*
* @package OSB
* @category Controllers/Direct
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Controller_Direct extends Controller_TemplateDefault {
protected $auth_required = FALSE;
public function action_index() {
return $this->action_adsl();
}
public function action_adsl() {
$this->template->content = '<iframe border="0" src="http://www.exetel.com.au/table_inc/broadband_plans.php?is_agent=t&agent_code=V005#standalone" width="900" height="1000"></iframe>';
}
}
?>