summaryrefslogtreecommitdiffstats
path: root/system/libraries/Loader.php
AgeCommit message (Collapse)AuthorFilesLines
2010-01-05updated copyrightsDerek Jones1-1/+1
2009-12-05tweak in database() to match change to $active_record variableDerek Jones1-1/+1
2009-12-05fixed bug where active record override wasn't being honored properlyDerek Jones1-1/+1
2009-07-29PHP 5.3.0 compatibility changesDerek Jones1-1/+1
2009-07-10Simplified some conditional syntaxDerek Jones1-5/+2
2009-04-22updated copyrights to 2009Derek Jones1-1/+1
2008-11-13Changing EOL style to LFDerek Allard1-1087/+1087
2008-10-19Fixed a bug in which servers that are case sensitive to file names were ↵Rick Ellis1-2/+11
ignoring config files unless they were named with the correct case
2008-10-09fixed spelling of existant to existentDerek Jones1-2/+2
2008-09-13updated copyrightRick Ellis1-1/+1
2008-08-27Fixed a variable that was set wrongRick Ellis1-1/+1
2008-08-26Made some changes for compatibility with the new form validation classRick Ellis1-61/+32
2008-08-26(no commit message)Rick Ellis1-1/+1
2008-08-26Made a Loader changes so that the new validation class will work.Rick Ellis1-5/+9
Made some doc style changes
2008-08-21Added a bit more error trapping in the load() functionRick Ellis1-0/+5
2008-08-21Added the ability to assign a custom object name when loading a library.Rick Ellis1-9/+56
Added some code that looks to see if a library is in a subdirectory if the class is not found, and if the path was not specified
2008-08-12(no commit message)Rick Ellis1-2/+2
2008-08-12Added support for libraries in subdirectoriesRick Ellis1-2/+22
2008-06-16correcting some docblock commentsDerek Allard1-2/+2
2008-05-14force closing tag on eval() for servers not running short_open_tagsDerek Jones1-1/+1
2008-05-13Some sweeping syntax changes for consistency:Derek Jones1-20/+20
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace
2008-05-13adjusted eval() statement in Loader to accommodate servers with ↵Derek Jones1-1/+1
short_open_tag disabled with the new change of removing closing PHP tags from files
2008-05-12removed an ereg from configDerek Allard1-4/+4
added a qualifier to a str_replace for \t in Input changed substr to strncmp in Codeigniter.php and directory_map function added braces in an if statement of unit test Removed "scripts" from the auto-load search path. Scripts were deprecated in Version 1.4.1 (September 21, 2006). If you still need to use them for legacy reasons, they must now be manually loaded in each Controller.
2008-05-11Removed closing PHP tags, replaced with a comment block identifying the end ↵Derek Jones1-1/+3
of the file
2008-05-11Undoing change committed in r1115Derek Jones1-0/+1
2008-05-11removed closing PHP tag from all framework filesDerek Jones1-1/+0
2008-05-06DB Forge is now assigned to any models that exist after loading (#3457).Derek Allard1-0/+2
2008-05-05Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵Derek Allard1-18/+18
the File Helper. Changed ( ! condition) into (! condition) within the code
2008-04-04include() vs include_once() allows for multiple views with the same nameDerek Allard1-1/+1
2008-03-18changed include into include_onceDerek Allard1-10/+10
2008-01-30Fixed bug #1813 - added check for $CI->db isset() and is_object() before ↵Derek Jones1-4/+4
returning false in Loader::database()
2008-01-28added ability to "extend" helpersDerek Jones1-1/+16
* modified Loader to check for prefixed helpers in application/helpers folder * surrounded provided helper functions with if (! function_exists('foo')) conditionals so the user's helper functions take precedent.
2008-01-22Changed the load protocol of Models to allow for extension.Derek Allard1-1/+1
2008-01-22prefixed all the variables in _ci_load() to avoid symbol collision in view filesDerek Jones1-14/+16
2008-01-22(no commit message)Derek Allard1-12/+8
2008-01-21replaced www.codeigniter.com with codeigniter.comDerek Jones1-3/+3
2008-01-18multiple view concatenation supportDerek Allard1-1/+1
2008-01-18ExpressionEngine Dev Team in creditDerek Allard1-2/+2
2008-01-17moved an strtolower higher into the init_class function for case insensitivityDerek Allard1-2/+3
2008-01-17prefixed reserved variables of _ci_load() in order to not conflict with view ↵Derek Jones1-15/+15
file variables
2008-01-16Many new Active Record functions, and another whack of stuffDerek Allard1-1/+30
2008-01-16fixed a bug when loading plugin files as _plugin. and not _piDerek Allard1-1/+1
2007-12-20removed an unneeded setting of $config to NULLDerek Allard1-1/+985
2007-12-01(no commit message)Derek Allard1-1/+1
2007-11-27autoloaded models moved to load after libraries are loadedDerek Allard1-987/+1
2007-10-09Added the ability to auto-load ModelsDerek Allard1-0/+18
2007-10-04Fixed a typo in the docblock comments that had CodeIgniter spelled CodeIgnitor.Derek Allard1-1/+1
2007-07-16comment clean upDerek Allard1-3/+2
2007-07-16further scaffolding language fixesDerek Allard1-0/+13
2007-07-12added language files to autoloadDerek Allard1-7/+18