tangra logo
   
[ class tree: tangra_lib ] [ index: tangra_lib ] [ all elements ]
 

Source for file tangra_parameter_method.class.php

Documentation is available at tangra_parameter_method.class.php

  1. <?php
  2.  
  3. /**
  4.  * Contains class Tangra_Parameter_Method
  5.  * @package  tangra_lib
  6.  * @subpackage  core
  7.  */
  8.  
  9. /**
  10.  * Loading parent class
  11.  */
  12. require_once(TANGRA_MAIN_DIR.'core/tangra_form_submit_method.class.php');
  13.  
  14.  
  15. /**
  16.  * Describes methods for handing parameters. Used just as a namespace.
  17.  * @package  tangra_lib
  18.  * @subpackage  core
  19.  */
  20.  
  21.     /**
  22.      * Method NONE is fake type used to indicate that no parameter is expected.
  23.      *
  24.      */
  25.     const NONE = 0;
  26.  
  27.     /**
  28.      * PI stands for PATH_INFO $_SERVER var. PI parameters are automatically parsed and included as any other parameter in Web_Context
  29.      * @see Web_Context
  30.      */
  31.     const PI = 4//path_info
  32. }