PHP Classes

File: class.PHPLIBTemplateAdaptor.php

Recommend this page to a friend!
  Classes of Jesus M. Castagnetto   Generalized CachedTemplate class   class.PHPLIBTemplateAdaptor.php   Download  
File: class.PHPLIBTemplateAdaptor.php
Role: ???
Content type: text/plain
Description: Adaptor class for PHPLIB's Template class
Class: Generalized CachedTemplate class
General Template Caching class
Author: By
Last change:
Date: 23 years ago
Size: 1,479 bytes
 

Contents

Class file image Download
<?php /* * Class TemplateAdaptor (PHPLIB Template version) * by Jesus M. Castagnetto (jmcastagnetto@zkey.com) * (c) 2000. Version 1.1 * * $Id: class.PHPLIBTemplateAdaptor.php,v 1.1 2000/07/17 04:54:16 jesus Exp $ * * Description: * This class extends PHPLIB's (http://phplib.shonline.de/) Template class, * implementing methods and attributes needed for the CachedTemplate class. * * The adaptor class needs to implement the getTemplatesList() method that * returns an array with the names of the templates loaded, the init() * method used to initialize the constructor of the parent template class, * and the getParsedDoc() method which returns the parsed document. * * Changes: * 2000/07/16 - Initial release. * 2000/07/17 - Documentation, new release. */ class TemplateAdaptor extends Template { var $TEMPLATES = array(); /* * This method is used to initialize the parent class */ function init($pathToTemplates=".", $unknowns="remove") { $this->Template($pathToTemplates, $unknowns); } /* * method to return the list of template names */ function getTemplatesList() { if (count($this->file) > 0 ) { while (list($tag, $fn) = each($this->file)) $this->TEMPLATES[] = $this->$fn; } return $this->TEMPLATES; } /* * method to return the parsed document */ function getParsedDoc($sect="") { return $this->get($sect); } } // end of class definition ?>