Conditions | 11 |
Paths | 43 |
Total Lines | 122 |
Lines | 19 |
Ratio | 15.57 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
16 | public function create() |
||
17 | { |
||
18 | $root_id = $this->getRootID(); |
||
19 | $items = $this->sortItems($this->getItems()); |
||
20 | $nesting = $this->getNesting(); |
||
21 | |||
22 | if (empty($items)) { |
||
23 | return false; |
||
24 | } |
||
25 | |||
26 | View Code Duplication | foreach ($items as $item) { |
|
|
|||
27 | if (null !== $item->getParentId()) { |
||
28 | $children[$item->getParentId()][] = $item; |
||
29 | } |
||
30 | } |
||
31 | |||
32 | // loop will be false if the root has no children (i.e., an empty menu!) |
||
33 | $loop = !empty($children[$root_id]); |
||
34 | |||
35 | // initializing $parent as the root |
||
36 | $parent = $root_id; |
||
37 | $parent_stack = []; |
||
38 | |||
39 | $html = []; |
||
40 | |||
41 | // HTML wrapper for the menu (open) |
||
42 | $html[] = '<ul>'; |
||
43 | |||
44 | $html[] = !empty($before['first_root_li']) ? str_repeat("\t", $nesting + 1).$before['first_root_li'] : ''; |
||
45 | |||
46 | // loop |
||
47 | while ($loop && (($item = $this->each($children[$parent])) || ($parent > $root_id))) { |
||
48 | View Code Duplication | if (is_object($item['value'])) { |
|
49 | /** |
||
50 | * @var MenuItem $obj |
||
51 | */ |
||
52 | $obj = $item['value']; |
||
53 | $item = [ |
||
54 | 'id' => $obj->getId(), |
||
55 | 'parent_id' => $obj->getParentId(), |
||
56 | 'title' => $obj->getTitle(), |
||
57 | 'slug' => $obj->getSlug(), |
||
58 | 'caption' => $obj->getCaption(), |
||
59 | 'position' => $obj->getPosition(), |
||
60 | ]; |
||
61 | } |
||
62 | |||
63 | // HTML for menu item containing children (close) |
||
64 | if ($item === false) { |
||
65 | $parent = array_pop($parent_stack); |
||
66 | $html[] = str_repeat("\t", (count($parent_stack) + 1) * 2 + $nesting).'</ul>'; |
||
67 | $html[] = str_repeat("\t", (count($parent_stack) + 1) * 2 - 1 + $nesting).'</li>'; |
||
68 | } // HTML for menu item containing children (open) |
||
69 | elseif (!empty($children[$item['id']])) { |
||
70 | $tab = str_repeat("\t", (count($parent_stack) + 1) * 2 - 1 + $nesting); |
||
71 | |||
72 | /* |
||
73 | * <li> with <ul> |
||
74 | */ |
||
75 | $html[] = sprintf( |
||
76 | '%1$s'.'<li>%2$s - <a'.'%3$s'.' href="'.'%4$s'.'">%5$s</a> – pozycja: %6$s'. |
||
77 | ' <a href="'.DIR.'/admin/appearance/menu/edit-item/%2$s" class="btn btn-primary btn-xs">Edytuj</a>'. |
||
78 | ' <a href="'.DIR.'/admin/appearance/menu/del-item/%2$s" class="btn btn-danger btn-xs">Usuń</a>', |
||
79 | # %1$s tabulation |
||
80 | $tab, |
||
81 | |||
82 | $item['id'], |
||
83 | |||
84 | # %2$s a title="" |
||
85 | $this->isAttribute('title', $item['caption']), |
||
86 | |||
87 | # %3$s a href="" |
||
88 | $item['slug'], |
||
89 | |||
90 | # %4$s text inside item |
||
91 | $item['title'], |
||
92 | |||
93 | $item['position'] |
||
94 | ); |
||
95 | |||
96 | /* |
||
97 | * sub <ul> in <li> |
||
98 | */ |
||
99 | $html[] = sprintf( |
||
100 | '%1$s'.'<ul>', |
||
101 | # %1$s tabulation |
||
102 | $tab."\t" |
||
103 | ); |
||
104 | |||
105 | $parent_stack[] = $item['parent_id']; |
||
106 | $parent = $item['id']; |
||
107 | } // HTML for menu item with no children (aka "leaf") |
||
108 | else { |
||
109 | $html[] = sprintf( |
||
110 | '%1$s'.'<li>%2$s - <a'.'%3$s'.' href="'.'%4$s'.'">%5$s</a> – pozycja: %6$s'. |
||
111 | ' <a href="'.DIR.'/admin/appearance/menu/edit-item/%2$s" class="btn btn-primary btn-sm btn-xs">Edytuj</a>'. |
||
112 | ' <a href="'.DIR.'/admin/appearance/menu/del-item/%2$s" class="btn btn-danger btn-sm btn-xs">Usuń</a>', |
||
113 | |||
114 | # %1$s tabulation |
||
115 | str_repeat("\t", (count($parent_stack) + 1) * 2 - 1 + $nesting), |
||
116 | |||
117 | $item['id'], |
||
118 | |||
119 | # %2$s a title="" |
||
120 | $this->isAttribute('title', $item['caption']), |
||
121 | |||
122 | # %3$s a href="" |
||
123 | $item['slug'], |
||
124 | |||
125 | # %4$s text inside item |
||
126 | $item['title'], |
||
127 | |||
128 | $item['position'] |
||
129 | ); |
||
130 | } |
||
131 | } |
||
132 | |||
133 | // HTML wrapper for the menu (close) |
||
134 | $html[] = str_repeat("\t", $nesting).'</ul>'; |
||
135 | |||
136 | return implode("\n", array_filter($html))."\n"; |
||
137 | } |
||
138 | |||
159 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.