| Conditions | 2 |
| Paths | 2 |
| Total Lines | 23 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function display(array $db_data, $editing = false) |
||
| 40 | { |
||
| 41 | $title = 'LINKS'; |
||
| 42 | $menu_id = $db_data['settings']['menu_id']; |
||
| 43 | |||
| 44 | $data = $this->get_menu($menu_id); |
||
| 45 | |||
| 46 | if (!sizeof($data)) |
||
| 47 | { |
||
| 48 | return array( |
||
| 49 | 'title' => $title, |
||
| 50 | 'content' => $this->get_message($menu_id, $editing), |
||
| 51 | 'status' => (int) !$editing, |
||
| 52 | ); |
||
| 53 | } |
||
| 54 | |||
| 55 | $this->tree->display_list($data, $this->ptemplate, 'tree'); |
||
| 56 | |||
| 57 | return array( |
||
| 58 | 'title' => $title, |
||
| 59 | 'content' => $this->ptemplate->render_view('blitze/sitemaker', 'blocks/links.html', 'links_block'), |
||
| 60 | ); |
||
| 61 | } |
||
| 62 | } |
||
| 63 |