Completed
Push — master ( df6d12...eab9e2 )
by Patrick
01:41 queued 10s
created

FVSPlugin   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 0
b 0
f 0
1
<?php
2
/*
3
class FVSPlugin extends SecurePlugin
4
{
5
    function get_secure_menu_entries($page, $user)
6
    {
7
        $ret = array(
8
          'Volunteer' => $page->secure_root.'fvs/index.php'
9
        );
10
        return $ret;
11
    }
12
13
    function get_plugin_entry_point()
14
    {
15
        return array(
16
          'name'=>'Volunteer',
17
          'link' => 'fvs/index.php'
18
        );
19
    }
20
}
21
*/
22