Files
FHC-Core/application/core/FHC_Controller.php
T
paolo 4cc83999ed - Moved class APIv1_Controller from FHC_Controller.php to APIv1_Controller.php
- Moved class DB_Model from FHC_Model.php to DB_Model.php
- load method of class person (person.class.php) now is calling getPerson
  method of the class Person_model
- getAllForBewerbung method of class studiengang (studiengang.class.php) now is calling getAllForBewerbung
  method of the class Studiengang_model
- getStudienplaene method of class studienplan (studienplan.class.php) now is calling getStudienplaene
  method of the class Studienplan_model
2016-04-25 18:25:03 +02:00

11 lines
220 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class FHC_Controller extends CI_Controller
{
function __construct()
{
parent::__construct();
//$this->load->helper('language');
}
}