Sha256: b486eea7f802ba33cb3b25689c00c0d64eb83ad6320f47c720c1f434e045260f
Contents?: true
Size: 810 Bytes
Versions: 3
Compression:
Stored size: 810 Bytes
Contents
<?php /* SVN FILE: $Id: HamlBaseFilter.php 49 2010-04-04 10:51:24Z chris.l.yates $ */ /** * Base Filter for {@link http://haml-lang.com/ Haml} class file. * @author Chris Yates <chris.l.yates@gmail.com> * @copyright Copyright (c) 2010 PBM Web Development * @license http://phamlp.googlecode.com/files/license.txt * @package PHamlP * @subpackage Haml.filters */ /** * Base Filter for {@link http://haml-lang.com/ Haml} class. * This class must be extended and the run() method overridden. * @package PHamlP * @subpackage Haml.filters */ abstract class HamlBaseFilter { /** * Initialise the filter. */ public function init() {} /** * Run the filter. * This method must be overridden in child classes. * @param string text to filter */ abstract public function run($text); }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
frontsau-0.0.3 | lib/Phamlp/haml/filters/HamlBaseFilter.php |
frontsau-0.0.2 | lib/Phamlp/haml/filters/HamlBaseFilter.php |
frontsau-0.0.1 | lib/Phamlp/haml/filters/HamlBaseFilter.php |