Advertisement
Guest User

Untitled

a guest
Aug 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. class Jadwalpelajaran extends CI_Controller {
  4.     public function index(){
  5.         $data['title'] = title();
  6.         $data['description'] = description();
  7.         $data['keywords'] = keywords();
  8.         $data['kelas'] = $this->model_app->view_ordering('tb_kelas','kd_kls');
  9.         $data['akd'] = $this->model_app->view_ordering('tahun_akd','kd_thn');
  10.         $this->template->load(template().'/template',template().'/jadwalpelajaran',$data);
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement