Changeset 433 for trunk/form_classes.php


Ignore:
Timestamp:
Oct 12, 2012, 8:27:30 AM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Možnost mazat položky.
  • Přidáno: Přidávání a změna hodnot položek.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/form_classes.php

    r432 r433  
    22
    33$FormClasses = array(
     4  'FinanceTreasury' => array(
     5    'Title' => 'Pokladny',
     6    'Table' => 'FinanceTreasury',
     7    'DefaultSortColumn' => 'Name',
     8    'Items' => array(
     9      'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     10      'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Čas vytvoření', 'Default' => ''),
     11    ),
     12  ),
     13  'FinanceBankAccount' => array(
     14    'Title' => 'Účty',
     15    'Table' => 'FinanceBankAccount',
     16    'DefaultSortColumn' => 'Comment',
     17    'Items' => array(
     18      'Comment' => array('Type' => 'String', 'Caption' => 'Komentář', 'Default' => ''),
     19      'Number' => array('Type' => 'String', 'Caption' => 'Číslo', 'Default' => ''),
     20      'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Čas vytvoření', 'Default' => ''),
     21    ),
     22  ),
    423  'Country' => array(
    524    'Title' => 'Země',
     
    1938      'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
    2039      'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
    21       'LastIP' => array('Type' => 'String', 'Caption' => 'Poslední IP adresy', 'Default' => ''),
     40      'LastIpAddress' => array('Type' => 'String', 'Caption' => 'Poslední IP adresy', 'Default' => ''),
    2241      'LastLoginTime' => array('Type' => 'DateTime', 'Caption' => 'Poslední čas přihlášení', 'Default' => ''),
    2342      'RegistrationTime' => array('Type' => 'DateTime', 'Caption' => 'Čas registrace', 'Default' => ''),
Note: See TracChangeset for help on using the changeset viewer.