1 | <?php
|
---|
2 |
|
---|
3 | include_once(dirname(__FILE__).'/Measure.php');
|
---|
4 | include_once(dirname(__FILE__).'/Graph.php');
|
---|
5 | include_once(dirname(__FILE__).'/Main.php');
|
---|
6 |
|
---|
7 | class ModuleTimeMeasure extends AppModule
|
---|
8 | {
|
---|
9 | function __construct(System $System)
|
---|
10 | {
|
---|
11 | parent::__construct($System);
|
---|
12 | $this->Name = 'TimeMeasure';
|
---|
13 | $this->Version = '1.0';
|
---|
14 | $this->Creator = 'Chronos';
|
---|
15 | $this->License = 'GNU/GPLv3';
|
---|
16 | $this->Description = 'Time measure of custom values, char';
|
---|
17 | $this->Dependencies = array('User');
|
---|
18 | }
|
---|
19 |
|
---|
20 | function GetModels(): array
|
---|
21 | {
|
---|
22 | return array('Measure');
|
---|
23 | }
|
---|
24 |
|
---|
25 | function DoStart(): void
|
---|
26 | {
|
---|
27 | $this->System->RegisterPage(['grafy'], 'PageMeasure');
|
---|
28 | $this->System->RegisterPage(['grafy', 'graf.png'], 'PageGraph');
|
---|
29 | $this->System->RegisterPage(['grafy', 'add.php'], 'PageMeasureAddValue');
|
---|
30 | $this->System->FormManager->RegisterClass('Measure', array(
|
---|
31 | 'Title' => 'Měření',
|
---|
32 | 'Table' => 'Measure',
|
---|
33 | 'Items' => array(
|
---|
34 | 'Name' => array('Type' => 'String', 'Caption' => 'Zkratka', 'Default' => 'measure'),
|
---|
35 | 'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'Měření'),
|
---|
36 | 'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => 'Měření veličiny'),
|
---|
37 | 'Unit' => array('Type' => 'String', 'Caption' => 'Jednotka', 'Default' => ''),
|
---|
38 | 'Continuity' => array('Type' => 'Boolean', 'Caption' => 'Spojitost', 'Default' => '0'),
|
---|
39 | 'Period' => array('Type' => 'Integer', 'Caption' => 'Perioda měření', 'Default' => '60'),
|
---|
40 | 'PermissionAdd' => array('Type' => 'String', 'Caption' => 'Oprávnění k měření', 'Default' => 'localhost.localdomain'),
|
---|
41 | 'PermissionView' => array('Type' => 'String', 'Caption' => 'Oprávnění k prohlížení', 'Default' => 'all'),
|
---|
42 | 'Enabled' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => '1'),
|
---|
43 | 'DataType' => array('Type' => 'String', 'Caption' => 'Typ datových položek', 'Default' => 'int'),
|
---|
44 | 'DataTable' => array('Type' => 'String', 'Caption' => 'Tabulka měřených dat', 'Default' => 'data'),
|
---|
45 | ),
|
---|
46 | ));
|
---|
47 | }
|
---|
48 | }
|
---|