forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 26
Php5 magic Autoloader
World Wide Web Server edited this page Jul 4, 2012
·
21 revisions
[b]Advantages[/b]
[code] define('PROGRESS', 'less work for myself :)'); [/code]
- [color=red]Get Everything Everywhere[/color]: No more get_instance() for use CI inside model, library, helper, or view
- [color=red]Lazy-load support[/color]: No more $this->load->something(). Resources automatically loads (only first time, only if needed)
- [color=red]100% Back\Forward CI Compatibility[/color]: All the logic work delegated to standard CI Core
- [color=red]More concise syntax[/color]: Faster code typing style, better read style that make more sense. Bye bye $this->
- [color=red]Non-obtrusive[/color]: If you wish, you can switch syntax modes, or even use them both. No refactor needed for "pre-plugin" code
- [color=red]No core hacking is required[/color]: Simply download and load it just like any other plugin.
[h3]Download\Userguide:[/h3] Go to [url="http://codeigniter.com/forums/viewthread/134786/"]Forum[/url].