![]() |
Override $this->load->view() - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Override $this->load->view() (/showthread.php?tid=13183) |
Override $this->load->view() - El Forum - 11-13-2008 [eluser]simonmaddox[/eluser] How would one go about overriding $this->load->view()? For example, if I wanted to rename the "views" folder to "pages" Cheers EDIT: Got it. That'll teach me. It's in Loader.php Override $this->load->view() - El Forum - 11-13-2008 [eluser]GSV Sleeper Service[/eluser] create application/libraries/MY_Loader.php, and override the necessary parts. (more details here - http://ellislab.com/codeigniter/user-guide/general/core_classes.html ) |