24 lines
688 B
PHP
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>';
|
||
|
}
|
||
|
}
|
||
|
?>
|