Changeset 526 for trunk/form_classes.php


Ignore:
Timestamp:
Apr 21, 2013, 10:23:56 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Tabulka HyperLink přejmenována na obecnější název Action. Odkazy na názvy ikony přepracovány na samostatnou tabulku.
  • Upraveno: Funkce týkající se fronty mailů odděleny do samostatného souboru.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/form_classes.php

    r517 r526  
    1919{
    2020  $FormManager->Classes = array(
     21  'Action' => array(
     22    'Title' => 'Akce',
     23    'Table' => 'Action',
     24    'Items' => array(
     25      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     26      'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     27      'URL' => array('Type' => 'Hyperlink', 'Caption' => 'Odkaz', 'Default' => ''),
     28      'Icon' => array('Type' => 'TActionIcon', 'Caption' => 'Ikony', 'Default' => ''),
     29      'Type' => array('Type' => 'TActionType', 'Caption' => 'Typ', 'Default' => ''),
     30      'Group' => array('Type' => 'TActionGroup', 'Caption' => 'Skupina', 'Default' => ''),
     31      'PermissionModule' => array('Type' => 'String', 'Caption' => 'Modul oprávnění', 'Default' => ''),
     32      'PermissionOperation' => array('Type' => 'String', 'Caption' => 'Operace oprávnění', 'Default' => ''),
     33      'Enable' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => ''),
     34    ),
     35  ),
     36  'ActionIcon' => array(
     37    'Title' => 'Ikony akcí',
     38    'Table' => 'ActionIcon',
     39    'Items' => array(
     40      'Name' => array('Type' => 'String', 'Caption' => 'Název souboru', 'Default' => ''),
     41    ),
     42  ),
     43  'ActionGroup' => array(
     44    'Title' => 'Skupiny akcí',
     45    'Table' => 'ActionGroup',
     46    'Items' => array(
     47      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     48    ),
     49  ),
     50  'ActionType' => array(
     51    'Title' => 'Typy akcí',
     52    'Table' => 'ActionType',
     53    'Items' => array(
     54      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     55    ),
     56  ),
    2157  'FinanceBank' => array(
    2258    'Title' => 'Banky',
     
    10991135    'Filter' => '1',
    11001136  ),
     1137  'TActionIcon' => array(
     1138    'Type' => 'Reference',
     1139    'Table' => 'ActionIcon',
     1140    'Id' => 'Id',
     1141    'Name' => 'Name',
     1142    'Filter' => '1',
     1143  ),
     1144  'TActionType' => array(
     1145    'Type' => 'Reference',
     1146    'Table' => 'ActionType',
     1147    'Id' => 'Id',
     1148    'Name' => 'Name',
     1149    'Filter' => '1',
     1150  ),
     1151  'TActionGroup' => array(
     1152    'Type' => 'Reference',
     1153    'Table' => 'ActionGroup',
     1154    'Id' => 'Id',
     1155    'Name' => 'Name',
     1156    'Filter' => '1',
     1157  ),
    11011158  'TDirectory' => array(
    11021159    'Type' => 'Reference',
Note: See TracChangeset for help on using the changeset viewer.