summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
AgeCommit message (Collapse)AuthorFilesLines
2011-04-21Flipping around contents of a conditional in _ci_load() so the small bits ↵Greg Aker1-6/+6
are on top.
2011-04-20Refactoring the loader to set protected class variables.Greg Aker1-19/+56
Moved _ci_autoload(), which is used in CI_Controller to be a public method. Also added CI_Loader::set_base_classes() to be called in the controller so we're not setting protected vars in another class. Also refactored in the form_helper so it's not trying to access protected vars in CI_Loader. Added the is_loaded() method to the loader to take care of the checks that were being done there.
2011-04-20Altering the loader to be able to load views from packages when adding the ↵Greg Aker1-52/+58
package path with add_package_path().
2011-04-19Removing internal references to the EXT constant. Additionally, marked the ↵Greg Aker1-32/+32
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3.
2011-04-06Made Environment Support optional. Comment out or delete the constant to ↵Phil Sturgeon1-3/+3
stop environment checks.
2011-04-03Fixed loading an array of libraries.Phil Sturgeon1-1/+1
2011-04-01Merged changes.Phil Sturgeon1-13/+3
2011-03-17load config files from environment specific locations in core classes, ↵bubbafoley1-1/+9
helpers and libraries
2011-02-14Whitespace cleanup in core/Pascal Kriete1-2/+2
2011-02-09cleaned up some redundant code in the Loader->library functionKellas Reeves1-13/+3
Elaborated on its functionality in the user guide.
2011-02-02Merged recent changes and tweaked multi-env changes.Phil Sturgeon1-1/+10
2011-01-27Automated merge with https://bitbucket.org/ellislab/codeigniterPhil Sturgeon1-13/+42
2011-01-16Set error_reporting to E_ALL when environment unknown and changed CI_Loader ↵joelcox1-2/+13
to load environment configs first.
2011-01-05Hey look, it's 2011Greg Aker1-1/+1
2011-01-04Added ability to auto load package config files. Fixes #281Eric Barnes1-8/+21
2010-12-27Languages can now be placed in packages folders, and added ↵Phil Sturgeon1-14/+21
->load->get_package_paths().
2010-12-15Package paths can now be auto-loaded in autoload.php.Phil Sturgeon1-0/+9
2010-12-15Package paths can now be auto-loaded in autoload.php.Phil Sturgeon1-0/+9
2010-11-10Fixing output buffer error in the loader classGreg Aker1-1/+1
2010-11-10Changing all class constructors to __construct()Greg Aker1-1/+1
2010-11-10Removing a global call that was needed for php 4.Pascal Kriete1-3/+1
2010-11-10Removing instantiate_class(), which was needed to make php 4 and 5.3 play ↵Pascal Kriete1-1/+1
together nicely. Removed all instantiations by reference.
2010-11-10Merging in changesGreg Aker1-38/+6
2010-11-10Updating PHP requirements in files 5.1.6Greg Aker1-1/+1
2010-11-10Removing _ci_is_instance from the loader.Pascal Kriete1-38/+6
2010-11-10Removing _assign_to_models and _assign_libraries from model related code in ↵Pascal Kriete1-37/+2
favor of __get().
2010-11-09Normalizing package paths to include a single trailing slash.Pascal Kriete1-0/+4
2010-10-12Automated merge with http://hg.ellislab.com/CodeIgniter2Derek Jones1-1/+11
2010-10-12Fix #83 where multiple libraries could not be loaded at once by passing an ↵Greg Aker1-0/+10
array to the load->library() function.
2010-10-11Fixed a bug where CI_Model is always loaded in core/Loader.php, regardless ↵Greg Aker1-1/+1
of if the class is instantiated or not.
2010-10-04Cleanup of stray spaces and tabsBarry Mieny1-149/+149
2010-03-28Change in the loader and driver docs to force ucfirst() on driver directory ↵Greg Aker1-1/+1
names to ensure compatibility on case sensitive file systems.
2010-03-10completely removed Plugins from CodeIgniterDerek Jones1-63/+4
2010-03-10sped up Driver loading slightly by predicting subfolder locationDerek Jones1-1/+8
2010-03-05added Driver libDerek Jones1-0/+23
2010-03-02rewrite of Loader classDerek Jones1-142/+198
killed scaffolding added @PHP4 tags
2010-03-02fixed EOF code comment file locationsDerek Jones1-1/+1
2010-03-02moving core library files out of libraries into new core folderDerek Jones1-0/+1085