Changeset 1638
- Timestamp:
- 12/28/2007 01:01:26 PM (9 months ago)
- Location:
- trunk/system/libraries
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/ORM.php
r1629 r1638 53 53 * @return object 54 54 */ 55 public static function instance($model = FALSE, $id = FALSE)55 public static function factory($model = FALSE, $id = FALSE) 56 56 { 57 57 $model = empty($model) ? __CLASS__ : ucfirst($model).'_Model'; -
trunk/system/libraries/View.php
r1592 r1638 28 28 * @param string type of file: html, css, js, etc. 29 29 */ 30 public static function instance($name, $data = NULL, $type = NULL)30 public static function factory($name, $data = NULL, $type = NULL) 31 31 { 32 32 return new View($name, $data, $type);
