![]() |
How do I load a view from outside the default views folder in this application? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6) +--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17) +--- Thread: How do I load a view from outside the default views folder in this application? (/showthread.php?tid=77870) |
How do I load a view from outside the default views folder in this application? - Ajax30 - 10-28-2020 I am working on a CMS with [b]CodeIgniter 3.1.8[/b] and Bootstrap 4. I have decided to add themes to it. The [i]themes[/i] directory is outside [i]application[/i] as can be see in the image below: [color=var(--blue-700)] ![]() Inside [i]themes[/i] I have the theme directory (of course) which contains the "master view", layout.php: [/color][color=var(--blue-700)] ![]() In application/core [/color]I have added a Loader.php file with the following contents: Code: <?php defined('BASEPATH') OR exit('No direct script access allowed'); In my Posts controller's index() method, I load the view passing it the data: Code: public function index() { I get this error message: Code: Call to undefined method CI_Loader::ext_view() [b]NOTE:[/b] the application is [b]not HMVC[/b], only MVC. What am I doing wrong? RE: How do I load a view from outside the default views folder in this application? - InsiteFX - 10-29-2020 This is not tested. Add this to index.php PHP Code: $theme_path = 'themes'; The your code would be something like this. PHP Code: <?php Give that a try. RE: How do I load a view from outside the default views folder in this application? - Ajax30 - 10-30-2020 (10-29-2020, 12:47 PM)InsiteFX Wrote: This is not tested. Thanks! I solved it. Have a look here if you're curios. RE: How do I load a view from outside the default views folder in this application? - InsiteFX - 10-30-2020 Great, glad you got it to work. RE: How do I load a view from outside the default views folder in this application? - Ajax30 - 10-30-2020 (10-30-2020, 11:22 AM)InsiteFX Wrote: Great, glad you got it to work. There is another question. |