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

Source for file form_field_integer_view.class.php

Documentation is available at form_field_integer_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_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. require_once(TANGRA_MAIN_DIR.'form/fields/integer/form_field_integer.class.php');
  22.  
  23.  
  24. /**
  25.  * Enter description here...
  26.  *
  27.  * @package tangra_lib
  28.  * @subpackage form
  29.  */
  30.     /**
  31.      * Constructor
  32.      *
  33.      * @param string $tpl_name Field name for template
  34.      * @param Form_Field_Integer $field Field object
  35.      */
  36.     function __construct($tpl_nameForm_Field_Integer $field{
  37.         parent::__construct($tpl_name$field);
  38.     }
  39. }