Passed
Push — master ( ad0c95...184fc6 )
by Stefan
07:53
created

MapOpenStreetMaps   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 5
dl 0
loc 25
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A htmlShowtime() 0 3 1
A htmlBodyCode() 0 3 1
A htmlHeadCode() 0 3 1
A bodyTagCode() 0 3 1
A __construct() 0 3 1
1
<?php
2
3
/*
4
 * ******************************************************************************
5
 * Copyright 2011-2017 DANTE Ltd. and GÉANT on behalf of the GN3, GN3+, GN4-1 
6
 * and GN4-2 consortia
7
 *
8
 * License: see the web/copyright.php file in the file structure
9
 * ******************************************************************************
10
 */
11
12
namespace web\lib\admin;
13
14
require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php");
15
16
/**
17
 * This class provides map display functionality
18
 * 
19
 * @author Stefan Winter <[email protected]>
20
 */
21
class MapOpenStreetMaps extends AbstractMap {
22
23
    public function __construct($inst, $readonly) {
24
        parent::__construct($inst, $readonly);
25
        return $this;
26
    }
27
28
    public function htmlHeadCode() {
29
        // your magic here
30
        return "";
31
    }
32
33
    public function htmlBodyCode() {
34
        // your magic here
35
        return "";
36
    }
37
38
    public function htmlShowtime($wizard = FALSE, $additional = FALSE) {
39
        // your magic here
40
        return "";
41
    }
42
    
43
    public function bodyTagCode() {
44
        // your magic here
45
        return "";
46
    }
47
}
48