GoogleMapModelAdmin
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 12
c 0
b 0
f 0
1
<?php
2
3
/**
4
 *@author nicolaas[at]sunnysideup.co.nz
5
 *@description model admin for template overview
6
 **/
7
8
class GoogleMapModelAdmin extends ModelAdmin
9
{
10
    public $showImportForm = true;
11
12
    private static $managed_models = array('GoogleMapLocationsObject', 'GoogleMapSearchRecord');
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
13
14
    private static $url_segment = 'google-maps';
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
15
16
    private static $menu_title = 'Google Maps';
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
17
18
    private static $menu_icon = 'googlemap/images/icons/GoogleMapModelAdmin.png';
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
19
}
20