Files
WrenchBoradWeb/www/application/controllers/Site.php
T
2022-02-03 12:46:41 -05:00

31 lines
650 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Site extends WRB_Controller {
public function index() {
/* $data['sitename'] = 'home';
$this->load->view('templates/header_boxed', $data);
$this->load->view('users/view_index');
$this->load->view('users/view_external_footer');
* */
$this->home1();
}
public function registration() {
$this->load->view('users/view_registration');
}
public function login() {
// $this->load->view('users/view_index');
// $this->load->view('users/view_external_footer');
}
}