| 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: | /** | 
| 13: | * XoopsFilterInput is a class for filtering input from any data source | 
| 14: | * | 
| 15: | * Forked from the php input filter library by Daniel Morris | 
| 16: | * | 
| 17: | * Original Contributors: Gianpaolo Racca, Ghislain Picard, | 
| 18: | * Marco Wandschneider, Chris Tobin and Andrew Eddie. | 
| 19: | * | 
| 20: | * @category XoopsFilterInput | 
| 21: | * @package Xoops | 
| 22: | * @author Daniel Morris <dan@rootcube.com> | 
| 23: | * @author Louis Landry <louis.landry@joomla.org> | 
| 24: | * @author Grégory Mage (Aka Mage) | 
| 25: | * @author trabis <lusopoemas@gmail.com> | 
| 26: | * @author Richard Griffith <richard@geekwright.com> | 
| 27: | * @copyright 2005 Daniel Morris | 
| 28: | * @copyright 2005 - 2013 Open Source Matters, Inc. All rights reserved. | 
| 29: | * @copyright 2011-2016 XOOPS Project (https://xoops.org) | 
| 30: | * @license GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html) | 
| 31: | * @link https://xoops.org | 
| 32: | * @since 2.5.7 | 
| 33: | */ | 
| 34: | class XoopsFilterInput extends \Xmf\FilterInput | 
| 35: | { | 
| 36: | } | 
| 37: |