TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   General (http://www.talkphp.com/general/)
-   -   Different style template system? (http://www.talkphp.com/general/1954-different-style-template-system.html)

Nor 01-14-2008 05:25 PM

Different style template system?
 
After A while I've been reading different forum software's source code and they have a different style of template system.

$template->load("blah");

and etc.. does anyone know exactly how this style of template system is created ( sort of like the phpbb2 style template system, but just a little more advanced )

Thanks in return for your help/support.

Wildhoney 01-15-2008 12:43 AM

I'm not sure I entirely understand the question. What the function will look like? Wouldn't it just be a wrapper for include? Like so:

php Code:
function load($szPage)
{
    if(!file_exists($szPage))
    {
        return;
    }

    include_once($szPage);
}

Nor 01-15-2008 01:10 PM

Theres much more to it I'll get an example l8r today.


All times are GMT. The time now is 05:57 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0