Cloudlog/application/controllers/dashboard.php
2011-04-25 16:24:01 +01:00

11 行
无行尾
265 B
PHP

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Dashboard extends CI_Controller {
public function index()
{
$this->load->view('layout/header');
$this->load->view('dashboard/index');
$this->load->view('layout/footer');
}
}