Show
Ignore:
Timestamp:
02/23/06 20:09:13 (6 years ago)
Author:
john
Message:

added in phpDoc commenting tests docs - Walt

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/input_filter.php

    r117 r138  
    11<?php 
    22 
    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 */ 
    1322class InputFilter { 
    1423     
     
    2534    /**  
    2635      * Constructor for inputFilter class. Only first parameter is required. 
    27       * @access constructor 
     36      * 
    2837      * @param Array $tagsArray - list of user-defined tags 
    2938      * @param Array $attrArray - list of user-defined attributes 
     
    4857      * Method to be called by Trax dispatcher to clean all passed in input. Processes for XSS and specified bad code. 
    4958      * @access public 
     59      *  @todo Document this method 
    5060      */ 
    5161    public function process_all($tagsArray = array(), $attrArray = array(), $tagsMethod = 0, $attrMethod = 0, $xssAuto = 1) {