Conditions | 26 |
Paths | > 20000 |
Total Lines | 160 |
Code Lines | 108 |
Lines | 0 |
Ratio | 0 % |
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 |
||
27 | public function index() |
||
28 | { |
||
29 | $this->load->language('extension/module/blocksforallcategories'); |
||
30 | |||
31 | $this->document->setTitle($this->language->get('heading_title')); |
||
32 | |||
33 | $this->load->model('extension/module'); |
||
34 | |||
35 | if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) { |
||
36 | if (!isset($this->request->get['module_id'])) { |
||
37 | $this->model_extension_module->addModule('blocksforallcategories', $this->request->post); |
||
38 | } else { |
||
39 | $this->model_extension_module->editModule($this->request->get['module_id'], $this->request->post); |
||
40 | } |
||
41 | |||
42 | $this->cache->delete('product'); |
||
43 | |||
44 | $this->session->data['success'] = $this->language->get('text_success'); |
||
45 | |||
46 | $this->response->redirect($this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=module', true)); |
||
47 | } |
||
48 | |||
49 | $data['heading_title'] = $this->language->get('heading_title'); |
||
50 | |||
51 | $data['text_edit'] = $this->language->get('text_edit'); |
||
52 | $data['text_enabled'] = $this->language->get('text_enabled'); |
||
53 | $data['text_disabled'] = $this->language->get('text_disabled'); |
||
54 | |||
55 | $data['entry_name'] = $this->language->get('entry_name'); |
||
56 | $data['entry_category_limit'] = $this->language->get('entry_category_limit'); |
||
57 | $data['entry_sub_category_limit'] = $this->language->get('entry_sub_category_limit'); |
||
58 | $data['entry_width'] = $this->language->get('entry_width'); |
||
59 | $data['entry_height'] = $this->language->get('entry_height'); |
||
60 | $data['entry_status'] = $this->language->get('entry_status'); |
||
61 | $data['entry_cover_status'] = $this->language->get('entry_cover_status'); |
||
62 | |||
63 | $data['button_save'] = $this->language->get('button_save'); |
||
64 | $data['button_cancel'] = $this->language->get('button_cancel'); |
||
65 | |||
66 | if (isset($this->error['warning'])) { |
||
67 | $data['error_warning'] = $this->error['warning']; |
||
68 | } else { |
||
69 | $data['error_warning'] = ''; |
||
70 | } |
||
71 | |||
72 | if (isset($this->error['name'])) { |
||
73 | $data['error_name'] = $this->error['name']; |
||
74 | } else { |
||
75 | $data['error_name'] = ''; |
||
76 | } |
||
77 | |||
78 | if (isset($this->error['width'])) { |
||
79 | $data['error_width'] = $this->error['width']; |
||
80 | } else { |
||
81 | $data['error_width'] = ''; |
||
82 | } |
||
83 | |||
84 | if (isset($this->error['height'])) { |
||
85 | $data['error_height'] = $this->error['height']; |
||
86 | } else { |
||
87 | $data['error_height'] = ''; |
||
88 | } |
||
89 | |||
90 | $data['breadcrumbs'] = array(); |
||
91 | |||
92 | $data['breadcrumbs'][] = array( |
||
93 | 'text' => $this->language->get('text_home'), |
||
94 | 'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], true) |
||
95 | ); |
||
96 | |||
97 | $data['breadcrumbs'][] = array( |
||
98 | 'text' => $this->language->get('text_extension'), |
||
99 | 'href' => $this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=module', true) |
||
100 | ); |
||
101 | |||
102 | if (!isset($this->request->get['module_id'])) { |
||
103 | $data['breadcrumbs'][] = array( |
||
104 | 'text' => $this->language->get('heading_title'), |
||
105 | 'href' => $this->url->link('extension/module/blocksforallcategories', 'token=' . $this->session->data['token'], true) |
||
106 | ); |
||
107 | } else { |
||
108 | $data['breadcrumbs'][] = array( |
||
109 | 'text' => $this->language->get('heading_title'), |
||
110 | 'href' => $this->url->link('extension/module/blocksforallcategories', 'token=' . $this->session->data['token'] . '&module_id=' . $this->request->get['module_id'], true) |
||
111 | ); |
||
112 | } |
||
113 | |||
114 | if (!isset($this->request->get['module_id'])) { |
||
115 | $data['action'] = $this->url->link('extension/module/blocksforallcategories', 'token=' . $this->session->data['token'], true); |
||
116 | } else { |
||
117 | $data['action'] = $this->url->link('extension/module/blocksforallcategories', 'token=' . $this->session->data['token'] . '&module_id=' . $this->request->get['module_id'], true); |
||
118 | } |
||
119 | |||
120 | $data['cancel'] = $this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=module', true); |
||
121 | |||
122 | if (isset($this->request->get['module_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) { |
||
123 | $module_info = $this->model_extension_module->getModule($this->request->get['module_id']); |
||
124 | } |
||
125 | |||
126 | if (isset($this->request->post['name'])) { |
||
127 | $data['name'] = $this->request->post['name']; |
||
128 | } elseif (!empty($module_info)) { |
||
129 | $data['name'] = $module_info['name']; |
||
130 | } else { |
||
131 | $data['name'] = ''; |
||
132 | } |
||
133 | |||
134 | if (isset($this->request->post['category_limit'])) { |
||
135 | $data['category_limit'] = $this->request->post['category_limit']; |
||
136 | } elseif (!empty($module_info)) { |
||
137 | $data['category_limit'] = $module_info['category_limit']; |
||
138 | } else { |
||
139 | $data['category_limit'] = 100; |
||
140 | } |
||
141 | |||
142 | if (isset($this->request->post['sub_category_limit'])) { |
||
143 | $data['sub_category_limit'] = $this->request->post['sub_category_limit']; |
||
144 | } elseif (!empty($module_info)) { |
||
145 | $data['sub_category_limit'] = $module_info['sub_category_limit']; |
||
146 | } else { |
||
147 | $data['sub_category_limit'] = 4; |
||
148 | } |
||
149 | |||
150 | if (isset($this->request->post['width'])) { |
||
151 | $data['width'] = $this->request->post['width']; |
||
152 | } elseif (!empty($module_info)) { |
||
153 | $data['width'] = $module_info['width']; |
||
154 | } else { |
||
155 | $data['width'] = 609; |
||
156 | } |
||
157 | |||
158 | if (isset($this->request->post['height'])) { |
||
159 | $data['height'] = $this->request->post['height']; |
||
160 | } elseif (!empty($module_info)) { |
||
161 | $data['height'] = $module_info['height']; |
||
162 | } else { |
||
163 | $data['height'] = 609; |
||
164 | } |
||
165 | |||
166 | if (isset($this->request->post['status'])) { |
||
167 | $data['status'] = $this->request->post['status']; |
||
168 | } elseif (!empty($module_info)) { |
||
169 | $data['status'] = $module_info['status']; |
||
170 | } else { |
||
171 | $data['status'] = ''; |
||
172 | } |
||
173 | |||
174 | if (isset($this->request->post['cover_status'])) { |
||
175 | $data['cover_status'] = $this->request->post['cover_status']; |
||
176 | } elseif (!empty($module_info)) { |
||
177 | $data['cover_status'] = $module_info['cover_status']; |
||
178 | } else { |
||
179 | $data['cover_status'] = ''; |
||
180 | } |
||
181 | |||
182 | $data['header'] = $this->load->controller('common/header'); |
||
183 | $data['column'] = $this->load->controller('common/column_left'); |
||
184 | $data['footer'] = $this->load->controller('common/footer'); |
||
185 | |||
186 | $this->response->setOutput($this->load->view('extension/module/blocksforallcategories', $data)); |
||
187 | } |
||
210 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.