| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public static function getGlyphiconBreadcrumbNodes() { |
||
| 31 | |||
| 32 | $breadcrumbNodes = []; |
||
| 33 | |||
| 34 | $breadcrumbNodes[] = new BreadcrumbNode("label.edit_profile", "g:user", "fos_user_profile_edit", NavigationInterface::NAVIGATION_MATCHER_ROUTER); |
||
| 35 | $breadcrumbNodes[] = new BreadcrumbNode("label.show_profile", "g:user", "fos_user_profile_show", NavigationInterface::NAVIGATION_MATCHER_ROUTER); |
||
| 36 | $breadcrumbNodes[] = new BreadcrumbNode("label.change_password", "g:lock", "fos_user_change_password", NavigationInterface::NAVIGATION_MATCHER_ROUTER); |
||
| 37 | |||
| 38 | return $breadcrumbNodes; |
||
| 39 | } |
||
| 40 | } |
||
| 41 |