loading template only once ? |
Hello to the nice community !
I'm a beginner in CI (but not in PHP), i saw the CI logic is to load the template files in the controller in each method. At the end you load the same files all the time, and it makes heavy controller files for nothing. Code: $this->load->view('templates/header', $data); There is an easier solution to just load it once in your controller or even in your project (for example if you use the same template for the whole project ? Or maybe just to have one template.php file and loading the content inside ? If you can help me, you will be lovely ! Thanks a lot ![]()
Use a MY_Controller
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Er, core/MY_Controller *is* how you use the CI_Controller for the purpose you describe.
https://www.codeigniter.com/user_guide/g...asses.html See https://github.com/bcit-ci/codeigniter-website for an example.
For me worked very well with new Controller, like:
Create a MY_Controller.php in application/core with this: PHP Code: <?php And this is it. To work with it, in your controllers use like this: PHP Code: .... Now you have a template function that load the header and footer everytime and also load the page content and you can pass trough data to show on the header,page content and footer. Hope is usefull. Have a nice day, Eduard. Quote:I love web development. I love web design. I love photography.
02-23-2017, 05:03 AM
(This post was last modified: 03-01-2017, 05:52 AM by InsiteFX. Edit Reason: Fixed spelling error ) PHP Code: <?php What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
|
Welcome Guest, Not a member yet? Register Sign In |