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

Source for file form_field_integer_limited_view.class.php

Documentation is available at form_field_integer_limited_view.class.php

  1. <?php
  2. // *** Tangra (Application Framework and Tools for PHP)
  3. //  $Id$
  4. //
  5.  
  6.  
  7. /**
  8.  * Contains class Form_Field_Integer_Limited_View
  9.  *
  10.  * @package tangra_lib
  11.  * @subpackage form
  12.  */
  13.  
  14. /**
  15.  *
  16.  */
  17. require_once(TANGRA_MAIN_DIR.'form/fields/text/form_field_text_view.class.php');
  18.  
  19.  
  20. /**
  21.  * View class for Form_Field_Integer_Limited
  22.  *
  23.  * @package tangra_lib
  24.  * @subpackage form
  25.  */
  26.     /**
  27.      * Constructor
  28.      *
  29.      * @param string $tpl_name Field name for template
  30.      * @param Form_Field_Integer_Limited $field Field object
  31.      */
  32.     function __construct($tpl_nameForm_Field_Integer_Limited $field{
  33.         parent::__construct($tpl_name$field);
  34.     }
  35. }