Gumbo_Template_Engine_Internal
Gumbo_Template_Engine | --Gumbo_Template_Engine_Internal
Internal Template Engine Class
The Internal Template Engine will include a template file into the parse method. The engine will include the file as if the contents were written inside the method. The Template file should contain HTML and PHP code intermixed. The use of <?php .. ?> tags is recommended. The Template file should output the results to the browser. The contents will be caught inside a buffer and the contents saved into the object.
Template File:
... template_variable; ?> ...
Author(s): |
Michael Luster <mluster79@yahoo.com> |
License: | New BSD License |
Copyright: | Copyright (c) 2007, iBayou, Michael Luster |
Link: | http://sourceforge.net/projects/phpgumbo |
Version: | 0.0.1 |
Inherited Methods
- Gumbo_Template_Engine::assign()
- Gumbo_Template_Engine::display()
- Gumbo_Template_Engine::exists()
- Gumbo_Template_Engine::fetch()
- Gumbo_Template_Engine::getDirCache()
- Gumbo_Template_Engine::getDirCompile()
- Gumbo_Template_Engine::getDirConfig()
- Gumbo_Template_Engine::getDirTpl()
- Gumbo_Template_Engine::getFile()
- Gumbo_Template_Engine::getFullPath()
- Gumbo_Template_Engine::getLeftDelimeter()
- Gumbo_Template_Engine::getOutput()
- Gumbo_Template_Engine::getRightDelimeter()
- Gumbo_Template_Engine::getVar()
- Gumbo_Template_Engine::getVars()
- Gumbo_Template_Engine::isFormatted()
- Gumbo_Template_Engine::loadGlobals()
- Gumbo_Template_Engine::parse()
- Gumbo_Template_Engine::reset()
- Gumbo_Template_Engine::setDirCache()
- Gumbo_Template_Engine::setDirCompile()
- Gumbo_Template_Engine::setDirConfig()
- Gumbo_Template_Engine::setDirTpl()
- Gumbo_Template_Engine::setFile()
- Gumbo_Template_Engine::setFormatted()
- Gumbo_Template_Engine::setLeftDelimeter()
- Gumbo_Template_Engine::setOutput()
- Gumbo_Template_Engine::setRightDelimeter()
- Gumbo_Template_Engine::unassign()
- Gumbo_Template_Engine::__get()
- Gumbo_Template_Engine::__isset()
- Gumbo_Template_Engine::__set()
- Gumbo_Template_Engine::__unset()
Class Methods
public Gumbo_Template_Engine_Internal __construct ( [string $file] )
[line 55]
Constructor
Parameter(s):
- (string) $file :: template file name
[ Top ]