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

Source for file tangra_form_submit_method.class.php

Documentation is available at tangra_form_submit_method.class.php

  1. <?php
  2. // *** Tangra (Application Framework and Tools for PHP)
  3. // $Id$
  4. //
  5.  
  6. /**
  7.  * Contains class Tangra_Form_Submit_Method
  8.  * @package  tangra_lib
  9.  * @subpackage  core
  10.  */
  11.  
  12.  
  13. /**
  14.  * Describes submit methods for forms as seen in method property in <form> HTML tag. Used just as namespace.
  15.  * @package  tangra_lib
  16.  * @subpackage  core
  17.  */
  18.     /**
  19.      * Method GET
  20.      *
  21.      */
  22.     const GET 1;
  23.  
  24.     /**
  25.      * Method POST
  26.      *
  27.      */
  28.     const POST 2;
  29. }