Rename 'trial' to 'experiment'

This commit is contained in:
Eike Foken
2011-09-08 01:37:32 +02:00
parent 33e116ed60
commit 7b329f4501
25 changed files with 341 additions and 277 deletions

View File

@@ -1,5 +1,4 @@
<?php
<?php defined('BASEPATH') || exit('No direct script access allowed');
/*
* Copyright (c) 2011 Karsten Heiken <karsten@disposed.de>
*
@@ -28,10 +27,10 @@
* @author Karsten Heiken <karsten@disposed.de>
*/
class Project extends CI_Model {
/**
* Add a short and medium length description to one project.
*
*
* @param mixed $project
*/
private function _addShortName($project) {
@@ -39,10 +38,10 @@ class Project extends CI_Model {
$project['mediumname'] = character_limiter($project['name'], 35);
return $project;
}
/**
* Add a short and medium length description to an array of projects.
*
*
* @param mixed $project
*/
private function _addShortNames($project) {
@@ -205,4 +204,7 @@ class Project extends CI_Model {
return $this->db->delete('projects', array('id' => $projectId));
}
}
}
/* End of file project.php */
/* Location: ./application/models/project.php */