Rename configurations to trials

This commit is contained in:
Karsten Heiken
2011-07-28 19:53:47 +02:00
parent 19c963f6f6
commit 67aef80279
4 changed files with 86 additions and 99 deletions

View File

@@ -0,0 +1,21 @@
<?php
/**
* Trials are used to store different variations of the same project.
*
* @author Karsten Heiken, karsten@disposed.de
*/
class Trials extends CI_Controller {
/**
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->load->model('trial');
// load language file
// $this->lang->load(strtolower($this->router->class));
}
}