Ext_Users_Controller::getUserAccountNav()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Extension for Controller that provide methods such as member management
4
 * interface to templates
5
 *
6
 * @package Users
7
 * @author  i-lateral <[email protected]>
8
 */
9
class Ext_Users_Controller extends Extension
10
{
11
12
    /**
13
     * Render current user account nav
14
     *
15
     * @return string
16
     */
17
    public function getUserAccountNav()
18
    {
19
        return $this->owner->renderWith("Users_AccountNav");
20
    }
21
}
22