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

Source for file form_field_number_fixed_view.class.php

Documentation is available at form_field_number_fixed_view.class.php

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