EllisLab text mark
Advanced Search
     
Multiple load of Library.
Posted: 27 November 2007 07:37 AM   [ Ignore ]
Joined: 2007-04-25
6 posts

Hello,

I’m just started with CI but I have a question that I couldn’t find on the website.

I have put the TemplatePower class as a library into CI but I need to load 2 different template files.

With normal coding I always used 2 different vars to load TemplatePower in.
But how must I do this while using CI?

I use the next code to load the library:

<?php 
    
    $this
->load->library('TemplatePower'$_COOKIE['taalPath'].'/About.tpl');
    
    
$this->templatepower->prepare(); 
    
    
$this->templatepower->newBlock('About');
    
    
$this->templatepower->printToScreen(); <br /> 

?> 

Sorry for the bad language, but I’m not English.

 
Posted: 27 November 2007 07:41 AM   [ Ignore ]   [ # 1 ]   [ Rating: 0 ]
Joined: 2006-10-17
207 posts

After loading the library for the first time I think you can simply do $var=new TemplatePower; The library is simply included the first time so it should work. It works like this in Kohana and CI and Kohana aren’t that different.

Groetjes,