Changeset 138 for trunk/trax/vendor/trax/input_filter.php
- Timestamp:
- 02/23/06 20:09:13 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/input_filter.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/input_filter.php
r117 r138 1 1 <?php 2 2 3 /** @class: InputFilter (PHP5-Strict with comments) 4 * @project: PHP Input Filter 5 * @date: 10-05-2005 6 * @version: 1.2.2_php5 7 * @author: Daniel Morris 8 * @contributors: Gianpaolo Racca, Ghislain Picard, Marco Wandschneider, Chris Tobin and Andrew Eddie. 9 * @copyright: Daniel Morris 10 * @email: dan@rootcube.com 11 * @license: GNU General Public License (GPL) 12 */ 3 /** 4 * File containing the InputFilter class 5 * 6 * (PHP 5) 7 * 8 * @package PHPonTrax 9 * @version 1.2.2_php5 10 * @author Daniel Morris 11 * contributors: Gianpaolo Racca, Ghislain Picard, Marco Wandschneider, 12 * Chris Tobin and Andrew Eddie. 13 * @copyright Daniel Morris <dan@rootcube.com> 14 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 15 */ 16 17 /** 18 * 19 * @todo Document this class 20 * @package PHPonTrax 21 */ 13 22 class InputFilter { 14 23 … … 25 34 /** 26 35 * Constructor for inputFilter class. Only first parameter is required. 27 * @access constructor36 * 28 37 * @param Array $tagsArray - list of user-defined tags 29 38 * @param Array $attrArray - list of user-defined attributes … … 48 57 * Method to be called by Trax dispatcher to clean all passed in input. Processes for XSS and specified bad code. 49 58 * @access public 59 * @todo Document this method 50 60 */ 51 61 public function process_all($tagsArray = array(), $attrArray = array(), $tagsMethod = 0, $attrMethod = 0, $xssAuto = 1) {
