4 * Template Plugin Interface
6 * Developers making Template Plugins will extend this.
8 * @author John Le Drew <jp@antz29.com>
9 * @copyright Copyright (c) 2009, John Le Drew
10 * @license http://www.opensource.org/licenses/mit-license.php MIT License
11 * @version 2.0.0-alpha
15 abstract class smp_TemplatePlugin
{
19 final public function __construct(smp_Template
$template)
21 $this->_template
= $template;
25 final protected function getTemplate()
27 return $this->_template
;
30 protected function init() {}