Ignore:
Timestamp:
Aug 4, 2009, 9:53:52 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Definice formulářů a tabulek ze souboru form_classes.php byly rozděleny do odpovídajících souborů ve složce view.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/common/form.php

    r54 r56  
    11<?php
    2 
    3 include('form_classes.php');
    42
    53class Form
     
    97  var $OnSubmit = '';
    108 
    11   function __construct($ClassName)
     9  function __construct($FormClass)
    1210  { 
    13     global $FormClasses;
    14 
    15     if(array_key_exists($ClassName, $FormClasses))
     11    $this->Definition = $FormClass;
     12    foreach($this->Definition['Items'] as $Index => $Item)
    1613    {
    17       $this->Definition = &$FormClasses[$ClassName];
    18       foreach($this->Definition['Items'] as $Index => $Item)
    19       {
    20         $this->Values[$Index] = '';
    21       }   
    22     } else
    23     {
    24       $this->Definition = array('Title' => 'Neznámý formulář', 'Table' => '', 'Items' => array());
    25     }
     14      $this->Values[$Index] = '';
     15    }   
    2616  }
    2717
Note: See TracChangeset for help on using the changeset viewer.