summaryrefslogtreecommitdiff
path: root/lib/phptal/PHPTAL/Php/TalesChainReader.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/phptal/PHPTAL/Php/TalesChainReader.php')
-rw-r--r--lib/phptal/PHPTAL/Php/TalesChainReader.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/phptal/PHPTAL/Php/TalesChainReader.php b/lib/phptal/PHPTAL/Php/TalesChainReader.php
new file mode 100644
index 0000000..4992bfe
--- /dev/null
+++ b/lib/phptal/PHPTAL/Php/TalesChainReader.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * PHPTAL templating engine
+ *
+ * PHP Version 5
+ *
+ * @category HTML
+ * @package PHPTAL
+ * @author Laurent Bedubourg <lbedubourg@motion-twin.com>
+ * @author Kornel LesiƄski <kornel@aardvarkmedia.co.uk>
+ * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
+ * @version SVN: $Id$
+ * @link http://phptal.org/
+ */
+
+/**
+ * @package PHPTAL
+ * @subpackage Php
+ */
+interface PHPTAL_Php_TalesChainReader
+{
+ public function talesChainNothingKeyword(PHPTAL_Php_TalesChainExecutor $executor);
+ public function talesChainDefaultKeyword(PHPTAL_Php_TalesChainExecutor $executor);
+ public function talesChainPart(PHPTAL_Php_TalesChainExecutor $executor, $expression, $islast);
+}