1: <?php
2: /*
3: You may not change or alter any portion of this comment or credits
4: of supporting developers from this source code or any supporting source code
5: which is considered copyrighted (c) material of the original comment or credit authors.
6:
7: This program is distributed in the hope that it will be useful,
8: but WITHOUT ANY WARRANTY; without even the implied warranty of
9: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: */
11:
12: namespace Xmf;
13:
14: /**
15: * Xmf\FilterInput is a class for filtering input from any data source
16: *
17: * Forked from the php input filter library by: Daniel Morris
18: *
19: * Original Contributors: Gianpaolo Racca, Ghislain Picard,
20: * Marco Wandschneider, Chris Tobin and Andrew Eddie.
21: *
22: * @category Xmf\FilterInput
23: * @package Xmf
24: * @author Daniel Morris <dan@rootcube.com>
25: * @author Louis Landry <louis.landry@joomla.org>
26: * @author Grégory Mage (Aka Mage)
27: * @author trabis <lusopoemas@gmail.com>
28: * @author Richard Griffith <richard@geekwright.com>
29: * @copyright 2005 Daniel Morris
30: * @copyright 2005 - 2011 Open Source Matters, Inc. All rights reserved.
31: * @copyright 2011-2013 XOOPS Project (http://xoops.org)
32: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
33: * @version Release: 1.0
34: * @link http://xoops.org
35: * @since 1.0
36: */
37: class FilterInput extends \Xoops\Core\FilterInput
38: {
39: }
40: