In my codeigniter i created a library in library folder.I want to load view pages in that library.How can i do this?

This is my code:

$this->load->view('view_page');

But when iam using this code i get an error:

A PHP Error was encountered

Severity: Notice

Message: Undefined property: CI_theme_lib::$load

Filename: libraries/theme_lib.php

Line Number: 9

What is the problem in mycode?

In Line number 9 in library the code is :

$this->load->view('view_page');
link|improve this question

40% accept rate
have you load your library? example, $this->load->library('mylib'); – Jasonw Jan 31 at 4:03
yes i loaded the library – Mas User Jan 31 at 4:07
show the code on line 9 in your library or better yet, show all your code please. – Jasonw Jan 31 at 4:10
feedback

2 Answers

You simply DON'T load pages (aka Views) in a Library. I don't see any need for doing this.

link|improve this answer
Exactly. The OP should be doing this in the controller. In the library you should be returning data to then be passed to the view for presenting. – PaulM Feb 22 at 16:12
That's not an answer though. There is no reason why you can't do it, which isn't the same as not seeing any reason why you personally would. – Paul Campbell Feb 22 at 18:00
You can't do it because the CI object is not available in a Lib, as you mentioned it in your answer, you need to instanciate it before. I think i'm fairly right in saying that it is a wrong idea and that's why it is not avail in the first place ;-) – Stéphane Bourzeix Feb 23 at 9:17
feedback

To do what you're trying to do you need to get an instance of CI, and use that.

e.g.

$CI =& get_instance();

Within your library functions you could then use this variable to load the view:

$CI->load->view('view_page'); 

I would question though why you want to call a view, in the form that you have done, within a library. I suspect that you would be better to get the view call to return data (setting the 3rd parameter 'true') and then have your library return the display data to the controller.... Your approach seems messy, but then I have no idea what your library is trying to do.....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.