| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | $Classes = array(
|
|---|
| 4 | 'Measure' => array(
|
|---|
| 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 položek', 'Default' => 'int'),
|
|---|
| 15 | 'DataTable' => array('Type' => 'String', 'Caption' => 'Tabulka měřených dat', 'Default' => 'data'),
|
|---|
| 16 | ),
|
|---|
| 17 | );
|
|---|