1<?php
2/**
3 * PHPTAL templating engine
4 *
5 * PHP Version 5
6 *
7 * @category HTML
8 * @package  PHPTAL
9 * @author   Laurent Bedubourg <lbedubourg@motion-twin.com>
10 * @license  http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
11 * @version  SVN: $Id$
12 * @link     http://phptal.org/
13 */
14
15
16/**
17 * Interface for Triggers (phptal:id)
18 *
19 * @package PHPTAL
20 */
21interface PHPTAL_Trigger
22{
23    const SKIPTAG = 1;
24    const PROCEED = 2;
25
26    public function start($id, $tpl);
27
28    public function end($id, $tpl);
29}
30