Ignore:
Timestamp:
May 18, 2013, 8:21:50 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Některé formulářové typy přesunuty do jednotlivých modulů.
  • Přidáno: Moduly Customer, Task a Stock.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/TimeMeasure/TimeMeasure.php

    r536 r538  
    2727  {
    2828    parent::Start();
     29    $this->System->FormManager->RegisterClass('Measure', array(
     30      'Title' => 'Měření',
     31      'Table' => 'Measure',
     32      'Items' => array(
     33        'Name' => array('Type' => 'String', 'Caption' => 'Zkratka', 'Default' => 'measure'),
     34        'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'Měření'),
     35        'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => 'Měření veličiny'),
     36        'Unit' => array('Type' => 'String', 'Caption' => 'Jednotka', 'Default' => ''),
     37        'Continuity' => array('Type' => 'Boolean', 'Caption' => 'Spojitost', 'Default' => '0'),
     38        'Period' => array('Type' => 'Integer', 'Caption' => 'Perioda měření', 'Default' => '60'),
     39        'PermissionAdd' => array('Type' => 'String', 'Caption' => 'Oprávnění k měření', 'Default' => 'localhost.localdomain'),
     40        'PermissionView' => array('Type' => 'String', 'Caption' => 'Oprávnění k prohlížení', 'Default' => 'all'),
     41        'Enabled' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => '1'),
     42        'DataType' => array('Type' => 'String', 'Caption' => 'Typ datových položek', 'Default' => 'int'),
     43        'DataTable' => array('Type' => 'String', 'Caption' => 'Tabulka měřených dat', 'Default' => 'data'),
     44      ),
     45    ));   
    2946  }
    3047
Note: See TracChangeset for help on using the changeset viewer.