Changeset 13 for classes.php
- Timestamp:
- Oct 17, 2007, 7:06:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes.php
r4 r13 3 3 $Classes = array( 4 4 'Measure' => array( 5 'Name' => array('Type' => 'String', 'Caption' => 'Zkratka'), 6 'Title' => array('Type' => 'String', 'Caption' => 'Název'), 7 'Description' => array('Type' => 'String', 'Caption' => 'Popis'), 8 'Unit' => array('Type' => 'String', 'Caption' => 'Jednotka'), 9 'Continuity' => array('Type' => 'Boolean', 'Caption' => 'Spojitost'), 10 'Period' => array('Type' => 'Integer', 'Caption' => 'Perioda mìøení'), 11 'PermissionAdd' => array('Type' => 'String', 'Caption' => 'Oprávnìní k mìøení'), 12 'PermissionView' => array('Type' => 'String', 'Caption' => 'Oprávnìní k prohlí¾ení'), 13 'Enabled' => array('Type' => 'Boolean', 'Caption' => 'Povolení'), 5 'Name' => array('Type' => 'String', 'Caption' => 'Zkratka', 'Default' => 'measure'), 6 'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'Mìøení'), 7 'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => 'Mìøení velièiny'), 8 'Unit' => array('Type' => 'String', 'Caption' => 'Jednotka', 'Default' => ''), 9 'Continuity' => array('Type' => 'Boolean', 'Caption' => 'Spojitost', 'Default' => '0'), 10 'Period' => array('Type' => 'Integer', 'Caption' => 'Perioda mìøení', 'Default' => '60'), 11 'PermissionAdd' => array('Type' => 'String', 'Caption' => 'Oprávnìní k mìøení', 'Default' => 'localhost.localdomain'), 12 'PermissionView' => array('Type' => 'String', 'Caption' => 'Oprávnìní k prohlíení', 'Default' => 'all'), 13 'Enabled' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => '1'), 14 'DataType' => array('Type' => 'String', 'Caption' => 'Typ datových poloek', 'Default' => 'int'), 15 'DataTable' => array('Type' => 'String', 'Caption' => 'Tabulka mìøených dat', 'Default' => 'data'), 14 16 ), 15 17 );
Note:
See TracChangeset
for help on using the changeset viewer.