Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
96.15% covered (success)
96.15%
25 / 26
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
ExchangeUnassignedscope
96.15% covered (success)
96.15%
25 / 26
66.67% covered (warning)
66.67%
2 / 3
4
0.00% covered (danger)
0.00%
0 / 1
 readEntity
91.67% covered (success)
91.67%
11 / 12
0.00% covered (danger)
0.00%
0 / 1
2.00
 readSubjectList
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
1
 readPeriodList
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace BO\Zmsdb;
4
5use BO\Zmsentities\Exchange;
6
7class ExchangeUnassignedscope extends Base
8{
9    public function readEntity()
10    {
11        $entity = new Exchange();
12        $entity['title'] = "Nicht der DLDB zugeordnete Standorte mit Terminen";
13        $entity->addDictionaryEntry('StandortID', 'string', 'ID of a scope', 'scope.id');
14        $entity->addDictionaryEntry('Bezeichnung', 'string', 'name of a scope');
15        $entity->addDictionaryEntry('TerminAnzahl', 'number', 'number of appointments');
16        $entity->addDictionaryEntry('TerminDaten', 'string', 'date of appointments');
17
18        $raw = $this
19            ->getReader()
20            ->fetchAll(constant("\BO\Zmsdb\Query\ExchangeUnassignedscope::QUERY_READ_REPORT"), []);
21        foreach ($raw as $entry) {
22            $entity->addDataSet(array_values($entry));
23        }
24        return $entity;
25    }
26
27    public function readSubjectList()
28    {
29        $entity = new Exchange();
30        $entity['title'] = "Nicht der DLDB zugeordnete Standorte mit Terminen";
31        $entity->setPeriod(new \DateTimeImmutable(), new \DateTimeImmutable());
32        $entity->addDictionaryEntry('subject', 'string', 'ID');
33        $entity->addDictionaryEntry('periodstart', 'string', 'Datum von');
34        $entity->addDictionaryEntry('periodend', 'string', 'Datum bis');
35        $entity->addDictionaryEntry('description', 'string', 'Beschreibung');
36        $entity->addDataSet(["_", "", "", "Alle Standorte"]);
37        return $entity;
38    }
39
40    public function readPeriodList()
41    {
42        $entity = new Exchange();
43        $entity['title'] = "Nicht der DLDB zugeordnete Standorte mit Terminen";
44        $entity->addDictionaryEntry('description', 'string', 'Beschreibung');
45        $entity->addDataSet(["_"]);
46        return $entity;
47    }
48}