1 | <?php |
||
2 | |||
3 | /* Divine CMS - Open source CMS for widespread use. |
||
4 | Copyright (c) 2019 Mykola Burakov ([email protected]) |
||
5 | |||
6 | See SOURCE.txt for other and additional information. |
||
7 | |||
8 | This file is part of Divine CMS. |
||
9 | |||
10 | This program is free software: you can redistribute it and/or modify |
||
11 | it under the terms of the GNU General Public License as published by |
||
12 | the Free Software Foundation, either version 3 of the License, or |
||
13 | (at your option) any later version. |
||
14 | |||
15 | This program is distributed in the hope that it will be useful, |
||
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
18 | GNU General Public License for more details. |
||
19 | |||
20 | You should have received a copy of the GNU General Public License |
||
21 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
||
22 | |||
23 | class ModelDesignBenefit extends \Divine\Engine\Core\Model |
||
0 ignored issues
–
show
|
|||
24 | { |
||
25 | public function addBenefit($data) |
||
0 ignored issues
–
show
|
|||
26 | { |
||
27 | $this->db->query(" |
||
28 | INSERT INTO benefit |
||
29 | SET name = '" . $this->db->escape($data['name']) . "', |
||
30 | link = '" . $data['link'] . "', |
||
31 | type = '" . (int)$data['type'] . "', |
||
32 | status = '" . (int)$data['status'] . "' |
||
33 | "); |
||
34 | |||
35 | $benefit_id = $this->db->getLastId(); |
||
36 | |||
37 | if (isset($data['image'])) { |
||
38 | $this->db->query(" |
||
39 | UPDATE benefit |
||
40 | SET image = '" . $this->db->escape(html_entity_decode($data['image'], ENT_QUOTES, 'UTF-8')) . "' |
||
41 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
42 | "); |
||
43 | } |
||
44 | |||
45 | foreach ($data['benefit_description'] as $language_id => $value) { |
||
46 | $this->db->query(" |
||
47 | INSERT INTO benefit_description |
||
48 | SET benefit_id = '" . (int)$benefit_id . "', |
||
49 | language_id = '" . (int)$language_id . "', |
||
50 | description = '" . $this->db->escape($value['description']) . "' |
||
51 | "); |
||
52 | } |
||
53 | } |
||
54 | |||
55 | public function editBenefit($benefit_id, $data) |
||
56 | { |
||
57 | $this->db->query(" |
||
58 | UPDATE benefit |
||
59 | SET name = '" . $this->db->escape($data['name']) . "', |
||
60 | link = '" . $data['link'] . "', |
||
61 | type = '" . (int)$data['type'] . "', |
||
62 | status = '" . (int)$data['status'] . "' |
||
63 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
64 | "); |
||
65 | |||
66 | if (isset($data['image'])) { |
||
67 | $this->db->query(" |
||
68 | UPDATE benefit |
||
69 | SET image = '" . $this->db->escape(html_entity_decode($data['image'], ENT_QUOTES, 'UTF-8')) . "' |
||
70 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
71 | "); |
||
72 | } |
||
73 | |||
74 | $this->db->query(" |
||
75 | DELETE |
||
76 | FROM benefit_description |
||
77 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
78 | "); |
||
79 | |||
80 | foreach ($data['benefit_description'] as $language_id => $value) { |
||
81 | $this->db->query(" |
||
82 | INSERT INTO benefit_description |
||
83 | SET benefit_id = '" . (int)$benefit_id . "', |
||
84 | language_id = '" . (int)$language_id . "', |
||
85 | description = '" . $this->db->escape($value['description']) . "' |
||
86 | "); |
||
87 | } |
||
88 | } |
||
89 | |||
90 | public function deleteBenefit($benefit_id) |
||
91 | { |
||
92 | $this->db->query(" |
||
93 | DELETE |
||
94 | FROM benefit |
||
95 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
96 | "); |
||
97 | $this->db->query(" |
||
98 | DELETE |
||
99 | FROM benefit_description |
||
100 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
101 | "); |
||
102 | } |
||
103 | |||
104 | public function getBenefit($benefit_id) |
||
105 | { |
||
106 | $query = $this->db->query(" |
||
107 | SELECT DISTINCT * |
||
108 | FROM benefit |
||
109 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
110 | "); |
||
111 | |||
112 | return $query->row; |
||
113 | } |
||
114 | |||
115 | public function getBenefits($data = array()) |
||
116 | { |
||
117 | $sql = " |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
\n SELECT * \... FROM benefit\n does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
118 | SELECT * |
||
119 | FROM benefit |
||
120 | "; |
||
121 | |||
122 | $sort_data = array( |
||
123 | 'name', |
||
124 | 'status' |
||
125 | ); |
||
126 | |||
127 | if (isset($data['sort']) && in_array($data['sort'], $sort_data)) { |
||
128 | $sql .= " ORDER BY " . $data['sort']; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
ORDER BY does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
129 | } else { |
||
130 | $sql .= " ORDER BY name"; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
ORDER BY name does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
131 | } |
||
132 | |||
133 | if (isset($data['order']) && ($data['order'] == 'DESC')) { |
||
134 | $sql .= " DESC"; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
DESC does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
135 | } else { |
||
136 | $sql .= " ASC"; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
ASC does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
137 | } |
||
138 | |||
139 | if (isset($data['start']) || isset($data['limit'])) { |
||
140 | if ($data['start'] < 0) { |
||
141 | $data['start'] = 0; |
||
142 | } |
||
143 | |||
144 | if ($data['limit'] < 1) { |
||
145 | $data['limit'] = 20; |
||
146 | } |
||
147 | |||
148 | $sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit']; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
LIMIT does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
, does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
149 | } |
||
150 | |||
151 | $query = $this->db->query($sql); |
||
152 | |||
153 | return $query->rows; |
||
154 | } |
||
155 | |||
156 | public function getProductBenefit($product_id) |
||
157 | { |
||
158 | $benefits = array(); |
||
159 | |||
160 | $query = $this->db->query(" |
||
161 | SELECT benefit_id, |
||
162 | position |
||
163 | FROM product_to_benefit |
||
164 | WHERE product_id = '" . (int)$product_id . "' |
||
165 | GROUP BY position |
||
166 | "); |
||
167 | |||
168 | foreach ($query->rows as $benefit) { |
||
169 | $benefits[$benefit['position']] = $benefit['benefit_id']; |
||
170 | } |
||
171 | |||
172 | return $benefits; |
||
173 | } |
||
174 | |||
175 | public function getTotalBenefits() |
||
176 | { |
||
177 | $query = $this->db->query(" |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
\n SELECT COU... FROM benefit\n does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
178 | SELECT COUNT(*) AS total |
||
179 | FROM benefit |
||
180 | "); |
||
181 | |||
182 | return $query->row['total']; |
||
183 | } |
||
184 | |||
185 | public function validateDelete($selected) |
||
186 | { |
||
187 | $query = $this->db->query(" |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
\n SELECT COU... WHERE benefit_id IN ( does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
188 | SELECT COUNT(*) AS total |
||
189 | FROM product_to_benefit |
||
190 | WHERE benefit_id IN (". $selected .") |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
)\n does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
191 | "); |
||
192 | |||
193 | return $query->row['total']; |
||
194 | } |
||
195 | |||
196 | |||
197 | public function getBenefitDescriptions($benefit_id) |
||
198 | { |
||
199 | $benefit_description_data = array(); |
||
200 | |||
201 | $query = $this->db->query(" |
||
202 | SELECT * |
||
203 | FROM benefit_description |
||
204 | WHERE benefit_id = '" . (int)$benefit_id . "' |
||
205 | "); |
||
206 | |||
207 | foreach ($query->rows as $result) { |
||
208 | $benefit_description_data[$result['language_id']] = array( |
||
209 | 'description' => $result['description'], |
||
210 | ); |
||
211 | } |
||
212 | |||
213 | return $benefit_description_data; |
||
214 | } |
||
215 | } |
||
216 |
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.