| [ Index ] |
PHP Cross Reference of Limb3 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 * Limb PHP Framework 4 * 5 * @link http://limb-project.com 6 * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com) 7 * @license LGPL http://www.gnu.org/copyleft/lesser.html 8 */ 9 10 11 /** 12 * Interface for filter classes to be used with lmbFilterChain 13 * 14 * @version $Id: lmbInterceptingFilter.interface.php 5965 2007-06-08 09:50:55Z pachanga $ 15 * @package filter_chain 16 */ 17 interface lmbInterceptingFilter 18 { 19 /** 20 * Runs the filter. 21 * Filters should decide whether to pass control to the next filter in the chain or not. 22 * @see lmbFilterChain :: next() 23 * 24 * @param lmbFilterChain filters chain 25 * @return void 26 */ 27 function run($filter_chain); 28 } 29 30 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Sat Nov 22 03:48:54 2008 | Cross-referenced by PHPXref 0.7 |