You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
508 B
PHTML
25 lines
508 B
PHTML
|
9 years ago
|
<?php
|
||
|
|
|
||
|
|
if (!defined('BASEPATH'))
|
||
|
|
exit('No direct script access allowed');
|
||
|
|
|
||
|
8 years ago
|
class Zodiac extends CI_Controller {
|
||
|
9 years ago
|
|
||
|
|
function __construct() {
|
||
|
|
parent::__construct();
|
||
|
|
}
|
||
|
|
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
# code...
|
||
|
|
}
|
||
|
|
|
||
|
9 years ago
|
public function edit_zodiac()
|
||
|
9 years ago
|
{
|
||
|
8 years ago
|
$data['nav_view'] = $this->load->view('bootstrap/zodiac/nav', array('nav_active' => ''), true);
|
||
|
9 years ago
|
$this->load->view('bootstrap/header', $data);
|
||
|
8 years ago
|
$this->load->view('bootstrap/zodiac/edit',$data);
|
||
|
9 years ago
|
}
|
||
|
|
|
||
|
|
}
|