@@ -18,31 +18,31 @@ discard block |
||
18 | 18 | class directory_website_in_queue extends \phpbb\notification\type\base |
19 | 19 | { |
20 | 20 | /** |
21 | - * Get notification type name |
|
22 | - * |
|
23 | - * @return string |
|
24 | - */ |
|
21 | + * Get notification type name |
|
22 | + * |
|
23 | + * @return string |
|
24 | + */ |
|
25 | 25 | public function get_type() |
26 | 26 | { |
27 | 27 | return 'ernadoo.phpbbdirectory.notification.type.directory_website_in_queue'; |
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
31 | - * Notification option data (for outputting to the user) |
|
32 | - * |
|
33 | - * @var bool|array False if the service should use it's default data |
|
34 | - * Array of data (including keys 'id', 'lang', and 'group') |
|
35 | - */ |
|
31 | + * Notification option data (for outputting to the user) |
|
32 | + * |
|
33 | + * @var bool|array False if the service should use it's default data |
|
34 | + * Array of data (including keys 'id', 'lang', and 'group') |
|
35 | + */ |
|
36 | 36 | public static $notification_option = array( |
37 | 37 | 'lang' => 'NOTIFICATION_TYPE_DIR_UCP_IN_MODERATION_QUEUE', |
38 | 38 | 'group' => 'NOTIFICATION_DIR_UCP', |
39 | 39 | ); |
40 | 40 | |
41 | 41 | /** |
42 | - * Permission to check for (in find_users_for_notification) |
|
43 | - * |
|
44 | - * @var string Permission name |
|
45 | - */ |
|
42 | + * Permission to check for (in find_users_for_notification) |
|
43 | + * |
|
44 | + * @var string Permission name |
|
45 | + */ |
|
46 | 46 | protected $permission = 'a_'; |
47 | 47 | |
48 | 48 | /** @var \phpbb\user_loader */ |
@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
57 | - * Is available |
|
58 | - * |
|
59 | - * @return bool True/False whether or not this is available to the user |
|
60 | - */ |
|
57 | + * Is available |
|
58 | + * |
|
59 | + * @return bool True/False whether or not this is available to the user |
|
60 | + */ |
|
61 | 61 | public function is_available() |
62 | 62 | { |
63 | 63 | $has_permission = $this->auth->acl_get($this->permission, true); |
@@ -66,21 +66,21 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
69 | - * Get link id |
|
70 | - * |
|
71 | - * @param array $data The data from the link |
|
72 | - * @return int |
|
73 | - */ |
|
69 | + * Get link id |
|
70 | + * |
|
71 | + * @param array $data The data from the link |
|
72 | + * @return int |
|
73 | + */ |
|
74 | 74 | static public function get_item_id($data) |
75 | 75 | { |
76 | 76 | return (int) $data['link_id']; |
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
80 | - * Get parent id - it's not used |
|
81 | - * |
|
82 | - * @param array $data The data from the link |
|
83 | - */ |
|
80 | + * Get parent id - it's not used |
|
81 | + * |
|
82 | + * @param array $data The data from the link |
|
83 | + */ |
|
84 | 84 | static public function get_item_parent_id($data) |
85 | 85 | { |
86 | 86 | // No parent |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
91 | - * Find the users who want to receive notifications |
|
92 | - * |
|
93 | - * @param array $data Data from submit link |
|
94 | - * @param array $options Options for finding users for notification |
|
95 | - * @return array |
|
96 | - */ |
|
91 | + * Find the users who want to receive notifications |
|
92 | + * |
|
93 | + * @param array $data Data from submit link |
|
94 | + * @param array $options Options for finding users for notification |
|
95 | + * @return array |
|
96 | + */ |
|
97 | 97 | public function find_users_for_notification($data, $options = array()) |
98 | 98 | { |
99 | 99 | $options = array_merge(array( |
@@ -113,18 +113,18 @@ discard block |
||
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
116 | - * Get the user's avatar |
|
117 | - */ |
|
116 | + * Get the user's avatar |
|
117 | + */ |
|
118 | 118 | public function get_avatar() |
119 | 119 | { |
120 | 120 | return $this->user_loader->get_avatar($this->get_data('user_from'), false, true); |
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
124 | - * Get the HTML formatted title of this notification |
|
125 | - * |
|
126 | - * @return string |
|
127 | - */ |
|
124 | + * Get the HTML formatted title of this notification |
|
125 | + * |
|
126 | + * @return string |
|
127 | + */ |
|
128 | 128 | public function get_title() |
129 | 129 | { |
130 | 130 | $link_name = $this->get_data('link_name'); |
@@ -134,30 +134,30 @@ discard block |
||
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
137 | - * Get email template |
|
138 | - * |
|
139 | - * @return string |
|
140 | - */ |
|
137 | + * Get email template |
|
138 | + * |
|
139 | + * @return string |
|
140 | + */ |
|
141 | 141 | public function get_email_template() |
142 | 142 | { |
143 | 143 | return '@ernadoo_phpbbdirectory/directory_website_in_queue'; |
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
147 | - * Get email template variables |
|
148 | - * |
|
149 | - * @return array |
|
150 | - */ |
|
147 | + * Get email template variables |
|
148 | + * |
|
149 | + * @return array |
|
150 | + */ |
|
151 | 151 | public function get_email_template_variables() |
152 | 152 | { |
153 | 153 | return array(); |
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
157 | - * Get the url to this item |
|
158 | - * |
|
159 | - * @return string URL |
|
160 | - */ |
|
157 | + * Get the url to this item |
|
158 | + * |
|
159 | + * @return string URL |
|
160 | + */ |
|
161 | 161 | public function get_url() |
162 | 162 | { |
163 | 163 | global $phpbb_admin_path; |
@@ -166,23 +166,23 @@ discard block |
||
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
169 | - * Users needed to query before this notification can be displayed |
|
170 | - * |
|
171 | - * @return array Array of user_ids |
|
172 | - */ |
|
169 | + * Users needed to query before this notification can be displayed |
|
170 | + * |
|
171 | + * @return array Array of user_ids |
|
172 | + */ |
|
173 | 173 | public function users_to_query() |
174 | 174 | { |
175 | 175 | return array($this->get_data('user_from')); |
176 | 176 | } |
177 | 177 | |
178 | 178 | /** |
179 | - * Function for preparing the data for insertion in an SQL query |
|
180 | - * (The service handles insertion) |
|
181 | - * |
|
182 | - * @param array $data Data from submit link |
|
183 | - * @param array $pre_create_data Data from pre_create_insert_array() |
|
184 | - * @return array Array of data ready to be inserted into the database |
|
185 | - */ |
|
179 | + * Function for preparing the data for insertion in an SQL query |
|
180 | + * (The service handles insertion) |
|
181 | + * |
|
182 | + * @param array $data Data from submit link |
|
183 | + * @param array $pre_create_data Data from pre_create_insert_array() |
|
184 | + * @return array Array of data ready to be inserted into the database |
|
185 | + */ |
|
186 | 186 | public function create_insert_array($data, $pre_create_data = array()) |
187 | 187 | { |
188 | 188 | $this->set_data('user_from', $data['user_from']); |
@@ -16,32 +16,32 @@ |
||
16 | 16 | protected $db; |
17 | 17 | |
18 | 18 | /** |
19 | - * Constructor |
|
20 | - * |
|
21 | - * @param \phpbb\db\driver\driver_interface $db |
|
22 | - */ |
|
19 | + * Constructor |
|
20 | + * |
|
21 | + * @param \phpbb\db\driver\driver_interface $db |
|
22 | + */ |
|
23 | 23 | public function __construct(\phpbb\db\driver\driver_interface $db) |
24 | 24 | { |
25 | 25 | $this->db = $db; |
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
29 | - * Performs a search on keywords depending on display specific params. You have to run split_keywords() first |
|
30 | - * |
|
31 | - * @param array $keywords_ary contains each words to search |
|
32 | - * @param string $fields contains either titleonly (link titles should be searched), desconly (only description bodies should be searched) |
|
33 | - * @param string $terms is either 'all' (use query as entered, words without prefix should default to "have to be in field") or 'any' (ignore search query parts and just return all posts that contain any of the specified words) |
|
34 | - * @param array $sort_by_sql contains SQL code for the ORDER BY part of a query |
|
35 | - * @param string $sort_key is the key of $sort_by_sql for the selected sorting |
|
36 | - * @param string $sort_dir is either a or d representing ASC and DESC |
|
37 | - * @param string $sort_days specifies the maximum amount of days a post may be old |
|
38 | - * @param array $ex_cid_ary specifies an array of category ids which should not be searched |
|
39 | - * @param int $cat_id is set to 0 or a topic id, if it is not 0 then only posts in this topic should be searched |
|
40 | - * @param array &$id_ary passed by reference, to be filled with ids for the page specified by $start and $per_page, should be ordered |
|
41 | - * @param int $start indicates the first index of the page |
|
42 | - * @param int $per_page number of ids each page is supposed to contain |
|
43 | - * @return int total number of results |
|
44 | - */ |
|
29 | + * Performs a search on keywords depending on display specific params. You have to run split_keywords() first |
|
30 | + * |
|
31 | + * @param array $keywords_ary contains each words to search |
|
32 | + * @param string $fields contains either titleonly (link titles should be searched), desconly (only description bodies should be searched) |
|
33 | + * @param string $terms is either 'all' (use query as entered, words without prefix should default to "have to be in field") or 'any' (ignore search query parts and just return all posts that contain any of the specified words) |
|
34 | + * @param array $sort_by_sql contains SQL code for the ORDER BY part of a query |
|
35 | + * @param string $sort_key is the key of $sort_by_sql for the selected sorting |
|
36 | + * @param string $sort_dir is either a or d representing ASC and DESC |
|
37 | + * @param string $sort_days specifies the maximum amount of days a post may be old |
|
38 | + * @param array $ex_cid_ary specifies an array of category ids which should not be searched |
|
39 | + * @param int $cat_id is set to 0 or a topic id, if it is not 0 then only posts in this topic should be searched |
|
40 | + * @param array &$id_ary passed by reference, to be filled with ids for the page specified by $start and $per_page, should be ordered |
|
41 | + * @param int $start indicates the first index of the page |
|
42 | + * @param int $per_page number of ids each page is supposed to contain |
|
43 | + * @return int total number of results |
|
44 | + */ |
|
45 | 45 | public function keyword_search($keywords_ary, $fields, $terms, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_cid_ary, $cat_id, &$id_ary, $start, $per_page) |
46 | 46 | { |
47 | 47 | $matches = array(); |
@@ -69,20 +69,20 @@ discard block |
||
69 | 69 | $match_search_query = ''; |
70 | 70 | foreach ($matches as $match) |
71 | 71 | { |
72 | - $match_search_query .= (($match_search_query) ? ' OR ' : '') . 'LOWER('. $match . ') '; |
|
73 | - $match_search_query .= $this->db->sql_like_expression(str_replace('*', $this->db->get_any_char(), $this->db->get_any_char() . strtolower($word) . $this->db->get_any_char())); |
|
72 | + $match_search_query .= (($match_search_query) ? ' OR ' : '').'LOWER('.$match.') '; |
|
73 | + $match_search_query .= $this->db->sql_like_expression(str_replace('*', $this->db->get_any_char(), $this->db->get_any_char().strtolower($word).$this->db->get_any_char())); |
|
74 | 74 | } |
75 | - $search_query .= ((!$search_query) ? '' : (($terms == 'all') ? ' AND ' : ' OR ')) . '(' . $match_search_query . ')'; |
|
75 | + $search_query .= ((!$search_query) ? '' : (($terms == 'all') ? ' AND ' : ' OR ')).'('.$match_search_query.')'; |
|
76 | 76 | } |
77 | 77 | $direction = (($sort_dir == 'd') ? 'DESC' : 'ASC'); |
78 | 78 | |
79 | 79 | if (is_array($sort_by_sql[$sort_key])) |
80 | 80 | { |
81 | - $sql_sort_order = implode(' ' . $direction . ', ', $sort_by_sql[$sort_key]) . ' ' . $direction; |
|
81 | + $sql_sort_order = implode(' '.$direction.', ', $sort_by_sql[$sort_key]).' '.$direction; |
|
82 | 82 | } |
83 | 83 | else |
84 | 84 | { |
85 | - $sql_sort_order = $sort_by_sql[$sort_key] . ' ' . $direction; |
|
85 | + $sql_sort_order = $sort_by_sql[$sort_key].' '.$direction; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | $sql_array = array( |
@@ -90,10 +90,10 @@ discard block |
||
90 | 90 | 'FROM' => array( |
91 | 91 | $this->links_table => 'l'), |
92 | 92 | 'WHERE' => 'l.link_active = 1 |
93 | - ' . (($search_query) ? 'AND (' . $search_query . ')' : '') . ' |
|
94 | - ' . (sizeof($ex_cid_ary) ? ' AND ' . $this->db->sql_in_set('l.link_cat', $ex_cid_ary, true) : '') . ' |
|
95 | - ' . (($cat_id) ? ' AND ' . $this->db->sql_in_set('l.link_cat', $cat_id) : '') . ' |
|
96 | - ' . (($sort_days) ? ' AND l.link_time >= ' . (time() - ($sort_days * 86400)) : ''), |
|
93 | + ' . (($search_query) ? 'AND ('.$search_query.')' : '').' |
|
94 | + ' . (sizeof($ex_cid_ary) ? ' AND '.$this->db->sql_in_set('l.link_cat', $ex_cid_ary, true) : '').' |
|
95 | + ' . (($cat_id) ? ' AND '.$this->db->sql_in_set('l.link_cat', $cat_id) : '').' |
|
96 | + ' . (($sort_days) ? ' AND l.link_time >= '.(time() - ($sort_days * 86400)) : ''), |
|
97 | 97 | 'ORDER_BY' => $sql_sort_order |
98 | 98 | ); |
99 | 99 |
@@ -13,8 +13,8 @@ discard block |
||
13 | 13 | class v2_0_0 extends \phpbb\db\migration\container_aware_migration |
14 | 14 | { |
15 | 15 | /** |
16 | - * @inheritDoc |
|
17 | - */ |
|
16 | + * @inheritDoc |
|
17 | + */ |
|
18 | 18 | static public function depends_on() |
19 | 19 | { |
20 | 20 | return array( |
@@ -23,8 +23,8 @@ discard block |
||
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | - * @inheritDoc |
|
27 | - */ |
|
26 | + * @inheritDoc |
|
27 | + */ |
|
28 | 28 | public function update_data() |
29 | 29 | { |
30 | 30 | return array( |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | $default_reparser = new $fast_reparsers[0][0]( |
47 | 47 | $this->db, |
48 | - $this->container->getParameter('core.table_prefix') . $fast_reparsers[0][1]); |
|
48 | + $this->container->getParameter('core.table_prefix').$fast_reparsers[0][1]); |
|
49 | 49 | |
50 | 50 | $resume_data = array( |
51 | 51 | 'reparser' => 0, |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | { |
61 | 61 | $reparser = new $fast_reparsers[$resume_data['reparser']][0]( |
62 | 62 | $this->db, |
63 | - $this->container->getParameter('core.table_prefix') . $fast_reparsers[$resume_data['reparser']][1] |
|
63 | + $this->container->getParameter('core.table_prefix').$fast_reparsers[$resume_data['reparser']][1] |
|
64 | 64 | ); |
65 | 65 | |
66 | 66 | // New reparser |
@@ -13,8 +13,8 @@ |
||
13 | 13 | class comment_text extends \phpbb\textreparser\row_based_plugin |
14 | 14 | { |
15 | 15 | /** |
16 | - * {@inheritdoc} |
|
17 | - */ |
|
16 | + * {@inheritdoc} |
|
17 | + */ |
|
18 | 18 | public function get_columns() |
19 | 19 | { |
20 | 20 | return array( |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | public $u_action; |
20 | 20 | |
21 | 21 | /** |
22 | - * |
|
23 | - * @param int $id |
|
24 | - * @param string $mode |
|
25 | - */ |
|
22 | + * |
|
23 | + * @param int $id |
|
24 | + * @param string $mode |
|
25 | + */ |
|
26 | 26 | public function main($id, $mode) |
27 | 27 | { |
28 | 28 | global $request, $phpbb_container; |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | } |
188 | 188 | |
189 | 189 | /** |
190 | - * Display thumb services available |
|
191 | - * |
|
192 | - * @param string $url_selected |
|
193 | - * @return string |
|
194 | - */ |
|
190 | + * Display thumb services available |
|
191 | + * |
|
192 | + * @param string $url_selected |
|
193 | + * @return string |
|
194 | + */ |
|
195 | 195 | public function get_thumb_service_list($url_selected) |
196 | 196 | { |
197 | 197 | $thumbshot = array( |
@@ -211,11 +211,11 @@ discard block |
||
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
214 | - * Display order drop-down list |
|
215 | - * |
|
216 | - * @param string $order_selected |
|
217 | - * @return string |
|
218 | - */ |
|
214 | + * Display order drop-down list |
|
215 | + * |
|
216 | + * @param string $order_selected |
|
217 | + * @return string |
|
218 | + */ |
|
219 | 219 | public function get_order_list($order_selected) |
220 | 220 | { |
221 | 221 | global $user; |
@@ -244,8 +244,8 @@ discard block |
||
244 | 244 | } |
245 | 245 | |
246 | 246 | /** |
247 | - * Adjust all three max_filesize config vars for display |
|
248 | - */ |
|
247 | + * Adjust all three max_filesize config vars for display |
|
248 | + */ |
|
249 | 249 | public function max_filesize($value, $key = '') |
250 | 250 | { |
251 | 251 | // Determine size var and adjust the value accordingly |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | { |
205 | 205 | $selected = ($url == $url_selected) ? 'selected="selected"' : ''; |
206 | 206 | |
207 | - $select_options .= '<option value="' . $url . '" ' . $selected . '>' . parse_url($url, PHP_URL_HOST) . '</option>'; |
|
207 | + $select_options .= '<option value="'.$url.'" '.$selected.'>'.parse_url($url, PHP_URL_HOST).'</option>'; |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | return $select_options; |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | { |
238 | 238 | $selected = ($i == $order_selected) ? 'selected="selected"' : ''; |
239 | 239 | $order_substr = trim(str_replace(' ', '_', $i)); |
240 | - $tpl .= '<option value="' . $i . '" ' . $selected . '>' . $user->lang['DIR_ORDER_' . strtoupper($order_substr)] . '</option>'; |
|
240 | + $tpl .= '<option value="'.$i.'" '.$selected.'>'.$user->lang['DIR_ORDER_'.strtoupper($order_substr)].'</option>'; |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | return ($tpl); |
@@ -254,6 +254,6 @@ discard block |
||
254 | 254 | $value = $filesize['value']; |
255 | 255 | |
256 | 256 | // size and maxlength must not be specified for input of type number |
257 | - return '<input type="number" id="' . $key . '" min="0" max="999999999999999" step="any" name="config[' . $key . ']" value="' . $value . '" /> <select name="' . $key . '">' . size_select_options($size_var) . '</select>'; |
|
257 | + return '<input type="number" id="'.$key.'" min="0" max="999999999999999" step="any" name="config['.$key.']" value="'.$value.'" /> <select name="'.$key.'">'.size_select_options($size_var).'</select>'; |
|
258 | 258 | } |
259 | 259 | } |
@@ -66,22 +66,22 @@ discard block |
||
66 | 66 | private $links_data; |
67 | 67 | |
68 | 68 | /** |
69 | - * Constructor |
|
70 | - * |
|
71 | - * @param \phpbb\config\config $config Config object |
|
72 | - * @param \phpbb\db\driver\driver_interface $db Database object |
|
73 | - * @param \phpbb\pagination $pagination Pagination object |
|
74 | - * @param \phpbb\language\language $language Language object |
|
75 | - * @param \phpbb\log\log $log Log object |
|
76 | - * @param \phpbb\notification\manager $notification Notification object |
|
77 | - * @param \phpbb\request\request $request Request object |
|
78 | - * @param \phpbb\template\template $template Template object |
|
79 | - * @param \phpbb\user $user User object |
|
80 | - * @param \ernadoo\phpbbdirectory\core\categorie $categorie PhpBB Directory extension categorie object |
|
81 | - * @param \ernadoo\phpbbdirectory\core\link $link PhpBB Directory extension link object |
|
82 | - * @param string $root_path phpBB root path |
|
83 | - * @param string $php_ext phpEx |
|
84 | - */ |
|
69 | + * Constructor |
|
70 | + * |
|
71 | + * @param \phpbb\config\config $config Config object |
|
72 | + * @param \phpbb\db\driver\driver_interface $db Database object |
|
73 | + * @param \phpbb\pagination $pagination Pagination object |
|
74 | + * @param \phpbb\language\language $language Language object |
|
75 | + * @param \phpbb\log\log $log Log object |
|
76 | + * @param \phpbb\notification\manager $notification Notification object |
|
77 | + * @param \phpbb\request\request $request Request object |
|
78 | + * @param \phpbb\template\template $template Template object |
|
79 | + * @param \phpbb\user $user User object |
|
80 | + * @param \ernadoo\phpbbdirectory\core\categorie $categorie PhpBB Directory extension categorie object |
|
81 | + * @param \ernadoo\phpbbdirectory\core\link $link PhpBB Directory extension link object |
|
82 | + * @param string $root_path phpBB root path |
|
83 | + * @param string $php_ext phpEx |
|
84 | + */ |
|
85 | 85 | public function __construct(\phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\pagination $pagination, \phpbb\language\language $language, \phpbb\log\log $log, \phpbb\notification\manager $notification, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user, \ernadoo\phpbbdirectory\core\categorie $categorie, \ernadoo\phpbbdirectory\core\link $link, $root_path, $php_ext) |
86 | 86 | { |
87 | 87 | $this->config = $config; |
@@ -102,11 +102,11 @@ discard block |
||
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
105 | - * Display confirm box |
|
106 | - * |
|
107 | - * @param array $mark Website selected for (dis)approval |
|
108 | - * @return null |
|
109 | - */ |
|
105 | + * Display confirm box |
|
106 | + * |
|
107 | + * @param array $mark Website selected for (dis)approval |
|
108 | + * @return null |
|
109 | + */ |
|
110 | 110 | public function display_confirm($mark) |
111 | 111 | { |
112 | 112 | $s_hidden_fields = array( |
@@ -118,10 +118,10 @@ discard block |
||
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
121 | - * Display website list for (dis)approval |
|
122 | - * |
|
123 | - * @return null |
|
124 | - */ |
|
121 | + * Display website list for (dis)approval |
|
122 | + * |
|
123 | + * @return null |
|
124 | + */ |
|
125 | 125 | public function display_websites() |
126 | 126 | { |
127 | 127 | global $phpbb_admin_path; |
@@ -225,11 +225,11 @@ discard block |
||
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
228 | - * Get link's information and call appropriate action |
|
229 | - * |
|
230 | - * @param array $mark Website selected for (dis)approval |
|
231 | - * @return null |
|
232 | - */ |
|
228 | + * Get link's information and call appropriate action |
|
229 | + * |
|
230 | + * @param array $mark Website selected for (dis)approval |
|
231 | + * @return null |
|
232 | + */ |
|
233 | 233 | public function exec_action($mark) |
234 | 234 | { |
235 | 235 | $this->_get_infos_links($mark); |
@@ -252,10 +252,10 @@ discard block |
||
252 | 252 | } |
253 | 253 | |
254 | 254 | /** |
255 | - * Notify users which had submitted their websites |
|
256 | - * |
|
257 | - * @return null |
|
258 | - */ |
|
255 | + * Notify users which had submitted their websites |
|
256 | + * |
|
257 | + * @return null |
|
258 | + */ |
|
259 | 259 | public function notifiy_submiters() |
260 | 260 | { |
261 | 261 | if (!class_exists('messenger')) |
@@ -299,22 +299,22 @@ discard block |
||
299 | 299 | } |
300 | 300 | |
301 | 301 | /** |
302 | - * Set page url |
|
303 | - * |
|
304 | - * @param string $u_action Custom form action |
|
305 | - * @return null |
|
306 | - * @access public |
|
307 | - */ |
|
302 | + * Set page url |
|
303 | + * |
|
304 | + * @param string $u_action Custom form action |
|
305 | + * @return null |
|
306 | + * @access public |
|
307 | + */ |
|
308 | 308 | public function set_page_url($u_action) |
309 | 309 | { |
310 | 310 | $this->u_action = $u_action; |
311 | 311 | } |
312 | 312 | |
313 | 313 | /** |
314 | - * Approve action |
|
315 | - * |
|
316 | - * @return null |
|
317 | - */ |
|
314 | + * Approve action |
|
315 | + * |
|
316 | + * @return null |
|
317 | + */ |
|
318 | 318 | private function _action_approved() |
319 | 319 | { |
320 | 320 | foreach ($this->links_data as $row) |
@@ -343,10 +343,10 @@ discard block |
||
343 | 343 | } |
344 | 344 | |
345 | 345 | /** |
346 | - * Disapprove action |
|
347 | - * |
|
348 | - * @return null |
|
349 | - */ |
|
346 | + * Disapprove action |
|
347 | + * |
|
348 | + * @return null |
|
349 | + */ |
|
350 | 350 | private function _action_disapproved() |
351 | 351 | { |
352 | 352 | foreach ($this->links_data as $row) |
@@ -367,11 +367,11 @@ discard block |
||
367 | 367 | } |
368 | 368 | |
369 | 369 | /** |
370 | - * Get informations about links selected |
|
371 | - * |
|
372 | - * @param $mark Website selected for (dis)approval |
|
373 | - * @return null |
|
374 | - */ |
|
370 | + * Get informations about links selected |
|
371 | + * |
|
372 | + * @param $mark Website selected for (dis)approval |
|
373 | + * @return null |
|
374 | + */ |
|
375 | 375 | private function _get_infos_links($mark) |
376 | 376 | { |
377 | 377 | $sql_array = array( |
@@ -406,11 +406,11 @@ discard block |
||
406 | 406 | } |
407 | 407 | |
408 | 408 | /** |
409 | - * Notify users which watch categories |
|
410 | - * |
|
411 | - * @param $row Informations about website |
|
412 | - * @return null |
|
413 | - */ |
|
409 | + * Notify users which watch categories |
|
410 | + * |
|
411 | + * @param $row Informations about website |
|
412 | + * @return null |
|
413 | + */ |
|
414 | 414 | private function _notify_suscribers($row) |
415 | 415 | { |
416 | 416 | $notification_data = array( |
@@ -84,21 +84,21 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function __construct(\phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\pagination $pagination, \phpbb\language\language $language, \phpbb\log\log $log, \phpbb\notification\manager $notification, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user, \ernadoo\phpbbdirectory\core\categorie $categorie, \ernadoo\phpbbdirectory\core\link $link, $root_path, $php_ext) |
86 | 86 | { |
87 | - $this->config = $config; |
|
88 | - $this->db = $db; |
|
89 | - $this->pagination = $pagination; |
|
87 | + $this->config = $config; |
|
88 | + $this->db = $db; |
|
89 | + $this->pagination = $pagination; |
|
90 | 90 | $this->language = $language; |
91 | 91 | $this->phpbb_log = $log; |
92 | - $this->notification = $notification; |
|
93 | - $this->request = $request; |
|
92 | + $this->notification = $notification; |
|
93 | + $this->request = $request; |
|
94 | 94 | $this->template = $template; |
95 | 95 | $this->user = $user; |
96 | 96 | $this->categorie = $categorie; |
97 | 97 | $this->link = $link; |
98 | 98 | $this->root_path = $root_path; |
99 | - $this->php_ext = $php_ext; |
|
99 | + $this->php_ext = $php_ext; |
|
100 | 100 | |
101 | - $this->action = $this->request->variable('action', ''); |
|
101 | + $this->action = $this->request->variable('action', ''); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -127,14 +127,14 @@ discard block |
||
127 | 127 | global $phpbb_admin_path; |
128 | 128 | |
129 | 129 | // Sort keys |
130 | - $sort_days = $this->request->variable('st', 0); |
|
130 | + $sort_days = $this->request->variable('st', 0); |
|
131 | 131 | $sort_key = $this->request->variable('sk', 't'); |
132 | 132 | $sort_dir = $this->request->variable('sd', 'd'); |
133 | 133 | |
134 | 134 | // Number of entries to display |
135 | 135 | $per_page = $this->request->variable('links_per_page', (int) $this->config['dir_show']); |
136 | 136 | |
137 | - $start = $this->request->variable('start', 0); |
|
137 | + $start = $this->request->variable('start', 0); |
|
138 | 138 | |
139 | 139 | // Categorie ordering options |
140 | 140 | $limit_days = array(0 => $this->language->lang('SEE_ALL'), 1 => $this->language->lang('1_DAY'), 7 => $this->language->lang('7_DAYS'), 14 => $this->language->lang('2_WEEKS'), 30 => $this->language->lang('1_MONTH'), 90 => $this->language->lang('3_MONTHS'), 180 => $this->language->lang('6_MONTHS'), 365 => $this->language->lang('1_YEAR')); |
@@ -150,15 +150,15 @@ discard block |
||
150 | 150 | |
151 | 151 | if (is_array($sort_by_sql[$sort_key])) |
152 | 152 | { |
153 | - $sql_sort_order = implode(' ' . $direction . ', ', $sort_by_sql[$sort_key]) . ' ' . $direction; |
|
153 | + $sql_sort_order = implode(' '.$direction.', ', $sort_by_sql[$sort_key]).' '.$direction; |
|
154 | 154 | } |
155 | 155 | else |
156 | 156 | { |
157 | - $sql_sort_order = $sort_by_sql[$sort_key] . ' ' . $direction; |
|
157 | + $sql_sort_order = $sort_by_sql[$sort_key].' '.$direction; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | $sql = 'SELECT COUNT(1) AS total_links |
161 | - FROM ' . $this->links_table . ' |
|
161 | + FROM ' . $this->links_table.' |
|
162 | 162 | WHERE link_active = 0' . |
163 | 163 | (($sql_where) ? " AND link_time >= $sql_where" : ''); |
164 | 164 | $result = $this->db->sql_query($sql); |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | 'ON' => 'u.user_id = l.link_user_id' |
183 | 183 | ) |
184 | 184 | ), |
185 | - 'WHERE' => 'l.link_active = 0' . (($sql_where) ? " AND l.link_time >= $sql_where" : ''), |
|
185 | + 'WHERE' => 'l.link_active = 0'.(($sql_where) ? " AND l.link_time >= $sql_where" : ''), |
|
186 | 186 | 'ORDER_BY' => $sql_sort_order); |
187 | 187 | |
188 | 188 | $sql = $this->db->sql_build_query('SELECT', $sql_array); |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | |
210 | 210 | $option_ary = array('approved' => 'DIR_LINK_ACTIVATE', 'disapproved' => 'DIR_LINK_DELETE'); |
211 | 211 | |
212 | - $base_url = $this->u_action . "&$u_sort_param&links_per_page=$per_page"; |
|
212 | + $base_url = $this->u_action."&$u_sort_param&links_per_page=$per_page"; |
|
213 | 213 | $this->pagination->generate_template_pagination($base_url, 'pagination', 'start', $total_links, $per_page, $start); |
214 | 214 | |
215 | 215 | $this->template->assign_vars(array( |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | 'S_SORT_DIR' => $s_sort_dir, |
221 | 221 | 'LINKS_PER_PAGE' => $per_page, |
222 | 222 | |
223 | - 'U_ACTION' => $this->u_action . "&$u_sort_param&links_per_page=$per_page&start=$start", |
|
223 | + 'U_ACTION' => $this->u_action."&$u_sort_param&links_per_page=$per_page&start=$start", |
|
224 | 224 | )); |
225 | 225 | } |
226 | 226 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | return; |
249 | 249 | } |
250 | 250 | |
251 | - $this->phpbb_log->add('admin', $this->user->data['user_id'], $this->user->ip, 'LOG_LINK_' . strtoupper($this->action), time(), array(implode(', ', $this->affected_link_name))); |
|
251 | + $this->phpbb_log->add('admin', $this->user->data['user_id'], $this->user->ip, 'LOG_LINK_'.strtoupper($this->action), time(), array(implode(', ', $this->affected_link_name))); |
|
252 | 252 | } |
253 | 253 | |
254 | 254 | /** |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | { |
261 | 261 | if (!class_exists('messenger')) |
262 | 262 | { |
263 | - include($this->root_path . 'includes/functions_messenger.' . $this->php_ext); |
|
263 | + include($this->root_path.'includes/functions_messenger.'.$this->php_ext); |
|
264 | 264 | } |
265 | 265 | $messenger = new \messenger(false); |
266 | 266 | |
@@ -327,15 +327,15 @@ discard block |
||
327 | 327 | 'link_cat' => (int) $row['link_cat'], |
328 | 328 | ); |
329 | 329 | |
330 | - $sql = 'UPDATE ' . $this->links_table . ' |
|
331 | - SET ' . $this->db->sql_build_array('UPDATE', $sql_ary) . ' |
|
330 | + $sql = 'UPDATE '.$this->links_table.' |
|
331 | + SET ' . $this->db->sql_build_array('UPDATE', $sql_ary).' |
|
332 | 332 | WHERE link_id = ' . (int) $row['link_id']; |
333 | 333 | $this->db->sql_query($sql); |
334 | 334 | } |
335 | 335 | |
336 | 336 | foreach ($this->cat_data as $cat_id => $count) |
337 | 337 | { |
338 | - $sql = 'UPDATE ' . $this->categories_table . ' |
|
338 | + $sql = 'UPDATE '.$this->categories_table.' |
|
339 | 339 | SET cat_links = cat_links + '.$count.' |
340 | 340 | WHERE cat_id = ' . (int) $cat_id; |
341 | 341 | $this->db->sql_query($sql); |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | } |
362 | 362 | } |
363 | 363 | |
364 | - $sql = 'DELETE FROM ' . $this->links_table . ' WHERE link_id = ' . (int) $row['link_id']; |
|
364 | + $sql = 'DELETE FROM '.$this->links_table.' WHERE link_id = '.(int) $row['link_id']; |
|
365 | 365 | $this->db->sql_query($sql); |
366 | 366 | } |
367 | 367 | } |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | protected $u_action; |
31 | 31 | |
32 | 32 | /** |
33 | - * Constructor |
|
34 | - * |
|
35 | - * @param \phpbb\db\driver\driver_interface $db Database object |
|
36 | - * @param \phpbb\language\language $language Language object |
|
37 | - * @param \phpbb\request\request $request Request object |
|
38 | - * @param \phpbb\template\template $template Template object |
|
39 | - */ |
|
33 | + * Constructor |
|
34 | + * |
|
35 | + * @param \phpbb\db\driver\driver_interface $db Database object |
|
36 | + * @param \phpbb\language\language $language Language object |
|
37 | + * @param \phpbb\request\request $request Request object |
|
38 | + * @param \phpbb\template\template $template Template object |
|
39 | + */ |
|
40 | 40 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\language\language $language, \phpbb\request\request $request, \phpbb\template\template $template) |
41 | 41 | { |
42 | 42 | $this->db = $db; |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
49 | - * Display confirm box |
|
50 | - * |
|
51 | - * @param string $action Requested action |
|
52 | - * @return null |
|
53 | - */ |
|
49 | + * Display confirm box |
|
50 | + * |
|
51 | + * @param string $action Requested action |
|
52 | + * @return null |
|
53 | + */ |
|
54 | 54 | public function display_confirm($action) |
55 | 55 | { |
56 | 56 | switch ($action) |
@@ -88,10 +88,10 @@ discard block |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
91 | - * Display phpBB Directory statistics |
|
92 | - * |
|
93 | - * @return null |
|
94 | - */ |
|
91 | + * Display phpBB Directory statistics |
|
92 | + * |
|
93 | + * @return null |
|
94 | + */ |
|
95 | 95 | public function display_stats() |
96 | 96 | { |
97 | 97 | // Count number of categories |
@@ -178,11 +178,11 @@ discard block |
||
178 | 178 | } |
179 | 179 | |
180 | 180 | /** |
181 | - * Execute action requested |
|
182 | - * |
|
183 | - * @param string $action Requested action |
|
184 | - * @return null |
|
185 | - */ |
|
181 | + * Execute action requested |
|
182 | + * |
|
183 | + * @param string $action Requested action |
|
184 | + * @return null |
|
185 | + */ |
|
186 | 186 | public function exec_action($action) |
187 | 187 | { |
188 | 188 | switch ($action) |
@@ -257,23 +257,23 @@ discard block |
||
257 | 257 | } |
258 | 258 | |
259 | 259 | /** |
260 | - * Set page url |
|
261 | - * |
|
262 | - * @param string $u_action Custom form action |
|
263 | - * @return null |
|
264 | - * @access public |
|
265 | - */ |
|
260 | + * Set page url |
|
261 | + * |
|
262 | + * @param string $u_action Custom form action |
|
263 | + * @return null |
|
264 | + * @access public |
|
265 | + */ |
|
266 | 266 | public function set_page_url($u_action) |
267 | 267 | { |
268 | 268 | $this->u_action = $u_action; |
269 | 269 | } |
270 | 270 | |
271 | 271 | /** |
272 | - * Get orphan banners |
|
273 | - * |
|
274 | - * @param bool $delete True if we want to delete banners, else false |
|
275 | - * @return null|int Number of orphan files, else null |
|
276 | - */ |
|
272 | + * Get orphan banners |
|
273 | + * |
|
274 | + * @param bool $delete True if we want to delete banners, else false |
|
275 | + * @return null|int Number of orphan files, else null |
|
276 | + */ |
|
277 | 277 | private function _orphan_files($delete = false) |
278 | 278 | { |
279 | 279 | $banner_path = $this->get_banner_path(); |
@@ -39,10 +39,10 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\language\language $language, \phpbb\request\request $request, \phpbb\template\template $template) |
41 | 41 | { |
42 | - $this->db = $db; |
|
42 | + $this->db = $db; |
|
43 | 43 | $this->language = $language; |
44 | 44 | $this->template = $template; |
45 | - $this->request = $request; |
|
45 | + $this->request = $request; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | { |
149 | 149 | if ($file[0] != '.' && $file[0] != '..' && strpos($file, 'index.') === false && strpos($file, '.db') === false) |
150 | 150 | { |
151 | - $banners_dir_size += filesize($banners_path . $file); |
|
151 | + $banners_dir_size += filesize($banners_path.$file); |
|
152 | 152 | } |
153 | 153 | } |
154 | 154 | closedir($banners_dir); |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | 'U_ACTION' => $this->u_action, |
168 | 168 | |
169 | 169 | 'TOTAL_CATS' => $total_cats, |
170 | - 'TOTAL_LINKS' => $total_links-$waiting_links, |
|
170 | + 'TOTAL_LINKS' => $total_links - $waiting_links, |
|
171 | 171 | 'WAITING_LINKS' => $waiting_links, |
172 | 172 | 'TOTAL_COMMENTS' => $total_comments, |
173 | 173 | 'TOTAL_VOTES' => $total_votes, |
@@ -192,15 +192,15 @@ discard block |
||
192 | 192 | { |
193 | 193 | case 'sqlite': |
194 | 194 | case 'firebird': |
195 | - $this->db->sql_query('DELETE FROM ' . $this->votes_table); |
|
195 | + $this->db->sql_query('DELETE FROM '.$this->votes_table); |
|
196 | 196 | break; |
197 | 197 | |
198 | 198 | default: |
199 | - $this->db->sql_query('TRUNCATE TABLE ' . $this->votes_table); |
|
199 | + $this->db->sql_query('TRUNCATE TABLE '.$this->votes_table); |
|
200 | 200 | break; |
201 | 201 | } |
202 | 202 | |
203 | - $sql = 'UPDATE ' . $this->links_table . ' |
|
203 | + $sql = 'UPDATE '.$this->links_table.' |
|
204 | 204 | SET link_vote = 0, link_note = 0'; |
205 | 205 | $this->db->sql_query($sql); |
206 | 206 | |
@@ -215,15 +215,15 @@ discard block |
||
215 | 215 | { |
216 | 216 | case 'sqlite': |
217 | 217 | case 'firebird': |
218 | - $this->db->sql_query('DELETE FROM ' . $this->comments_table); |
|
218 | + $this->db->sql_query('DELETE FROM '.$this->comments_table); |
|
219 | 219 | break; |
220 | 220 | |
221 | 221 | default: |
222 | - $this->db->sql_query('TRUNCATE TABLE ' . $this->comments_table); |
|
222 | + $this->db->sql_query('TRUNCATE TABLE '.$this->comments_table); |
|
223 | 223 | break; |
224 | 224 | } |
225 | 225 | |
226 | - $sql = 'UPDATE ' . $this->links_table . ' |
|
226 | + $sql = 'UPDATE '.$this->links_table.' |
|
227 | 227 | SET link_comment = 0'; |
228 | 228 | $this->db->sql_query($sql); |
229 | 229 | |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | break; |
236 | 236 | |
237 | 237 | case 'clicks': |
238 | - $sql = 'UPDATE ' . $this->links_table . ' |
|
238 | + $sql = 'UPDATE '.$this->links_table.' |
|
239 | 239 | SET link_view = 0'; |
240 | 240 | $this->db->sql_query($sql); |
241 | 241 | |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | { |
290 | 290 | $physical_files[] = $img; |
291 | 291 | } |
292 | - $sql = 'SELECT link_banner FROM ' . $this->links_table . ' |
|
292 | + $sql = 'SELECT link_banner FROM '.$this->links_table.' |
|
293 | 293 | WHERE link_banner <> \'\''; |
294 | 294 | $result = $this->db->sql_query($sql); |
295 | 295 |
@@ -13,12 +13,12 @@ |
||
13 | 13 | class nestedset_category extends \phpbb\tree\nestedset |
14 | 14 | { |
15 | 15 | /** |
16 | - * Construct |
|
17 | - * |
|
18 | - * @param \phpbb\db\driver\driver_interface $db Database connection |
|
19 | - * @param \phpbb\lock\db $lock Lock class used to lock the table when moving forums around |
|
20 | - * @param string $categorie_table Categories table |
|
21 | - */ |
|
16 | + * Construct |
|
17 | + * |
|
18 | + * @param \phpbb\db\driver\driver_interface $db Database connection |
|
19 | + * @param \phpbb\lock\db $lock Lock class used to lock the table when moving forums around |
|
20 | + * @param string $categorie_table Categories table |
|
21 | + */ |
|
22 | 22 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\lock\db $lock, $categorie_table) |
23 | 23 | { |
24 | 24 | parent::__construct( |
@@ -46,18 +46,18 @@ discard block |
||
46 | 46 | public $data = array(); |
47 | 47 | |
48 | 48 | /** |
49 | - * Constructor |
|
50 | - * |
|
51 | - * @param \phpbb\db\driver\driver_interface $db Database object |
|
52 | - * @param \phpbb\config\config $config Config object |
|
53 | - * @param \phpbb\language\language $language Language object |
|
54 | - * @param \phpbb\template\template $template Template object |
|
55 | - * @param \phpbb\user $user User object |
|
56 | - * @param \phpbb\controller\helper $helper Controller helper object |
|
57 | - * @param \phpbb\request\request $request Request object |
|
58 | - * @param \phpbb\auth\auth $auth Auth object |
|
59 | - * @param \phpbb\cron\manager $cron Cron object |
|
60 | - */ |
|
49 | + * Constructor |
|
50 | + * |
|
51 | + * @param \phpbb\db\driver\driver_interface $db Database object |
|
52 | + * @param \phpbb\config\config $config Config object |
|
53 | + * @param \phpbb\language\language $language Language object |
|
54 | + * @param \phpbb\template\template $template Template object |
|
55 | + * @param \phpbb\user $user User object |
|
56 | + * @param \phpbb\controller\helper $helper Controller helper object |
|
57 | + * @param \phpbb\request\request $request Request object |
|
58 | + * @param \phpbb\auth\auth $auth Auth object |
|
59 | + * @param \phpbb\cron\manager $cron Cron object |
|
60 | + */ |
|
61 | 61 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, \phpbb\controller\helper $helper, \phpbb\request\request $request, \phpbb\auth\auth $auth, \phpbb\cron\manager $cron) |
62 | 62 | { |
63 | 63 | $this->db = $db; |
@@ -72,21 +72,21 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
75 | - * Function for get approval setting |
|
76 | - * used in edit mode for test the setting of new category's link |
|
77 | - * |
|
78 | - * @return bool |
|
79 | - */ |
|
75 | + * Function for get approval setting |
|
76 | + * used in edit mode for test the setting of new category's link |
|
77 | + * |
|
78 | + * @return bool |
|
79 | + */ |
|
80 | 80 | public function need_approval() |
81 | 81 | { |
82 | 82 | return (bool) $this->data['cat_validate']; |
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
86 | - * Generate Jumpbox |
|
87 | - * |
|
88 | - * @return null |
|
89 | - */ |
|
86 | + * Generate Jumpbox |
|
87 | + * |
|
88 | + * @return null |
|
89 | + */ |
|
90 | 90 | public function make_cat_jumpbox() |
91 | 91 | { |
92 | 92 | $sql = 'SELECT cat_id, cat_name, parent_id, left_id, right_id |
@@ -139,12 +139,12 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
142 | - * Generate a list of directory's categories |
|
143 | - * |
|
144 | - * @param int $select_id Selected category |
|
145 | - * @param array $ignore_id Array of ignored categories |
|
146 | - * @return string $cat_list html code |
|
147 | - */ |
|
142 | + * Generate a list of directory's categories |
|
143 | + * |
|
144 | + * @param int $select_id Selected category |
|
145 | + * @param array $ignore_id Array of ignored categories |
|
146 | + * @return string $cat_list html code |
|
147 | + */ |
|
148 | 148 | public function make_cat_select($select_id = 0, $ignore_id = array()) |
149 | 149 | { |
150 | 150 | $ignore_id = is_array($ignore_id) ? $ignore_id : array($ignore_id); |
@@ -190,10 +190,10 @@ discard block |
||
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | - * Display cat or subcat |
|
194 | - * |
|
195 | - * @return null |
|
196 | - */ |
|
193 | + * Display cat or subcat |
|
194 | + * |
|
195 | + * @return null |
|
196 | + */ |
|
197 | 197 | public function display() |
198 | 198 | { |
199 | 199 | $cat_rows = $subcats = array(); |
@@ -322,11 +322,11 @@ discard block |
||
322 | 322 | } |
323 | 323 | |
324 | 324 | /** |
325 | - * Get informations about a cat or subcat |
|
326 | - * |
|
327 | - * @param int $cat_id The category ID |
|
328 | - * @return null|false |
|
329 | - */ |
|
325 | + * Get informations about a cat or subcat |
|
326 | + * |
|
327 | + * @param int $cat_id The category ID |
|
328 | + * @return null|false |
|
329 | + */ |
|
330 | 330 | public function get($cat_id = 0) |
331 | 331 | { |
332 | 332 | if ($cat_id) |
@@ -354,11 +354,11 @@ discard block |
||
354 | 354 | } |
355 | 355 | |
356 | 356 | /** |
357 | - * Create category navigation links for given category, create parent |
|
358 | - * list if currently null, assign basic category info to template |
|
359 | - * |
|
360 | - * @param array $dir_cat_data |
|
361 | - */ |
|
357 | + * Create category navigation links for given category, create parent |
|
358 | + * list if currently null, assign basic category info to template |
|
359 | + * |
|
360 | + * @param array $dir_cat_data |
|
361 | + */ |
|
362 | 362 | public function generate_dir_nav(&$dir_cat_data) |
363 | 363 | { |
364 | 364 | global $phpbb_container; |
@@ -395,12 +395,12 @@ discard block |
||
395 | 395 | } |
396 | 396 | |
397 | 397 | /** |
398 | - * Return good key language |
|
399 | - * |
|
400 | - * @param bool $validate True if approbation needed before publication |
|
401 | - * @return string Information about approval, depends on user auth level |
|
402 | - * @throws \phpbb\exception\runtime_exception |
|
403 | - */ |
|
398 | + * Return good key language |
|
399 | + * |
|
400 | + * @param bool $validate True if approbation needed before publication |
|
401 | + * @return string Information about approval, depends on user auth level |
|
402 | + * @throws \phpbb\exception\runtime_exception |
|
403 | + */ |
|
404 | 404 | public function dir_submit_type($validate) |
405 | 405 | { |
406 | 406 | if ($validate && !$this->auth->acl_get('a_')) |
@@ -424,15 +424,15 @@ discard block |
||
424 | 424 | } |
425 | 425 | |
426 | 426 | /** |
427 | - * Category watching common code |
|
428 | - * |
|
429 | - * @param string $mode Watch or unwatch a category |
|
430 | - * @param array $s_watching An empty array, passed by reference |
|
431 | - * @param int $user_id The user ID |
|
432 | - * @param int $cat_id The category ID |
|
433 | - * @param string $notify_status User is watching the category? |
|
434 | - * @return null|string |
|
435 | - */ |
|
427 | + * Category watching common code |
|
428 | + * |
|
429 | + * @param string $mode Watch or unwatch a category |
|
430 | + * @param array $s_watching An empty array, passed by reference |
|
431 | + * @param int $user_id The user ID |
|
432 | + * @param int $cat_id The category ID |
|
433 | + * @param string $notify_status User is watching the category? |
|
434 | + * @return null|string |
|
435 | + */ |
|
436 | 436 | public function watch_categorie($mode, &$s_watching, $user_id, $cat_id, $notify_status) |
437 | 437 | { |
438 | 438 | // Is user watching this thread? |
@@ -518,11 +518,11 @@ discard block |
||
518 | 518 | } |
519 | 519 | |
520 | 520 | /** |
521 | - * Return Category name |
|
522 | - * |
|
523 | - * @param int $cat_id The category ID |
|
524 | - * @return string The category name |
|
525 | - */ |
|
521 | + * Return Category name |
|
522 | + * |
|
523 | + * @param int $cat_id The category ID |
|
524 | + * @return string The category name |
|
525 | + */ |
|
526 | 526 | static public function getname($cat_id) |
527 | 527 | { |
528 | 528 | global $db, $phpbb_container; |
@@ -60,13 +60,13 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, \phpbb\controller\helper $helper, \phpbb\request\request $request, \phpbb\auth\auth $auth, \phpbb\cron\manager $cron) |
62 | 62 | { |
63 | - $this->db = $db; |
|
64 | - $this->config = $config; |
|
63 | + $this->db = $db; |
|
64 | + $this->config = $config; |
|
65 | 65 | $this->language = $language; |
66 | 66 | $this->template = $template; |
67 | 67 | $this->user = $user; |
68 | - $this->helper = $helper; |
|
69 | - $this->request = $request; |
|
68 | + $this->helper = $helper; |
|
69 | + $this->request = $request; |
|
70 | 70 | $this->auth = $auth; |
71 | 71 | $this->cron = $cron; |
72 | 72 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | public function make_cat_jumpbox() |
91 | 91 | { |
92 | 92 | $sql = 'SELECT cat_id, cat_name, parent_id, left_id, right_id |
93 | - FROM ' . $this->categories_table . ' |
|
93 | + FROM ' . $this->categories_table.' |
|
94 | 94 | ORDER BY left_id ASC'; |
95 | 95 | $result = $this->db->sql_query($sql, 600); |
96 | 96 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | 'FORUM_ID' => $row['cat_id'], |
120 | 120 | 'FORUM_NAME' => $row['cat_name'], |
121 | 121 | 'S_FORUM_COUNT' => $iteration, |
122 | - 'LINK' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $row['cat_id']), |
|
122 | + 'LINK' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$row['cat_id']), |
|
123 | 123 | )); |
124 | 124 | |
125 | 125 | for ($i = 0; $i < $padding; $i++) |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | |
152 | 152 | // This query is identical to the jumpbox one |
153 | 153 | $sql = 'SELECT cat_id, cat_name, parent_id, left_id, right_id |
154 | - FROM ' . $this->categories_table . ' |
|
154 | + FROM ' . $this->categories_table.' |
|
155 | 155 | ORDER BY left_id ASC'; |
156 | 156 | $result = $this->db->sql_query($sql, 600); |
157 | 157 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | } |
182 | 182 | |
183 | 183 | $selected = (($row['cat_id'] == $select_id) ? ' selected="selected"' : ''); |
184 | - $cat_list .= '<option value="' . $row['cat_id'] . '"' . (($disabled) ? ' disabled="disabled" class="disabled-option"' : $selected) . '>' . $padding . $row['cat_name'] . '</option>'; |
|
184 | + $cat_list .= '<option value="'.$row['cat_id'].'"'.(($disabled) ? ' disabled="disabled" class="disabled-option"' : $selected).'>'.$padding.$row['cat_name'].'</option>'; |
|
185 | 185 | } |
186 | 186 | $this->db->sql_freeresult($result); |
187 | 187 | unset($padding_store); |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | */ |
197 | 197 | public function display() |
198 | 198 | { |
199 | - $cat_rows = $subcats = array(); |
|
199 | + $cat_rows = $subcats = array(); |
|
200 | 200 | $parent_id = $visible_cats = 0; |
201 | 201 | |
202 | 202 | $sql_array = array( |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | else |
215 | 215 | { |
216 | 216 | $root_data = $this->data; |
217 | - $sql_where = 'left_id > ' . $root_data['left_id'] . ' AND left_id < ' . $root_data['right_id']; |
|
217 | + $sql_where = 'left_id > '.$root_data['left_id'].' AND left_id < '.$root_data['right_id']; |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | $sql = $this->db->sql_build_query('SELECT', array( |
@@ -261,12 +261,12 @@ discard block |
||
261 | 261 | { |
262 | 262 | foreach ($subcats[$dir_cat_id] as $subcat_id => $subcat_row) |
263 | 263 | { |
264 | - $row['cat_links'] = ($row['cat_count_all']) ? ($row['cat_links']+$subcat_row['links']) : $row['cat_links']; |
|
264 | + $row['cat_links'] = ($row['cat_count_all']) ? ($row['cat_links'] + $subcat_row['links']) : $row['cat_links']; |
|
265 | 265 | |
266 | 266 | if ($subcat_row['display'] && $subcat_row['parent_id'] == $dir_cat_id) |
267 | 267 | { |
268 | 268 | $subcats_list[] = array( |
269 | - 'link' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $subcat_id), |
|
269 | + 'link' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$subcat_id), |
|
270 | 270 | 'name' => $subcat_row['name'], |
271 | 271 | 'links' => $subcat_row['links'] |
272 | 272 | ); |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | 'CAT_LINKS' => $row['cat_links'], |
285 | 285 | 'CAT_IMG' => $this->get_img_path('icons', $row['cat_icon']), |
286 | 286 | |
287 | - 'U_CAT' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $row['cat_id']), |
|
287 | + 'U_CAT' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$row['cat_id']), |
|
288 | 288 | )); |
289 | 289 | |
290 | 290 | // Assign subcats loop for style authors |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | if ($task->is_ready()) |
317 | 317 | { |
318 | 318 | $url = $task->get_url(); |
319 | - $this->template->assign_var('RUN_CRON_TASK', '<img src="' . $url . '" width="1" height="1" alt="" />'); |
|
319 | + $this->template->assign_var('RUN_CRON_TASK', '<img src="'.$url.'" width="1" height="1" alt="" />'); |
|
320 | 320 | } |
321 | 321 | } |
322 | 322 | } |
@@ -338,10 +338,10 @@ discard block |
||
338 | 338 | 'LEFT_JOIN' => array( |
339 | 339 | array( |
340 | 340 | 'FROM' => array($this->watch_table => 'w'), |
341 | - 'ON' => 'c.cat_id = w.cat_id AND w.user_id = ' . (int) $this->user->data['user_id'] |
|
341 | + 'ON' => 'c.cat_id = w.cat_id AND w.user_id = '.(int) $this->user->data['user_id'] |
|
342 | 342 | ), |
343 | 343 | ), |
344 | - 'WHERE' => 'c.cat_id = ' . (int) $cat_id |
|
344 | + 'WHERE' => 'c.cat_id = '.(int) $cat_id |
|
345 | 345 | ); |
346 | 346 | $sql = $this->db->sql_build_query('SELECT', $sql_array); |
347 | 347 | $result = $this->db->sql_query($sql); |
@@ -378,8 +378,8 @@ discard block |
||
378 | 378 | $this->template->assign_block_vars('dir_navlinks', array( |
379 | 379 | 'FORUM_NAME' => $parent_data['cat_name'], |
380 | 380 | 'FORUM_ID' => $parent_cat_id, |
381 | - 'MICRODATA' => $microdata_attr . '="' . $parent_cat_id . '"', |
|
382 | - 'U_VIEW_FORUM' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $parent_cat_id), |
|
381 | + 'MICRODATA' => $microdata_attr.'="'.$parent_cat_id.'"', |
|
382 | + 'U_VIEW_FORUM' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$parent_cat_id), |
|
383 | 383 | )); |
384 | 384 | } |
385 | 385 | } |
@@ -387,8 +387,8 @@ discard block |
||
387 | 387 | $this->template->assign_block_vars('dir_navlinks', array( |
388 | 388 | 'FORUM_NAME' => $dir_cat_data['cat_name'], |
389 | 389 | 'FORUM_ID' => $dir_cat_data['cat_id'], |
390 | - 'MICRODATA' => $microdata_attr . '="' . $dir_cat_data['cat_id'] . '"', |
|
391 | - 'U_VIEW_FORUM' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $dir_cat_data['cat_id']), |
|
390 | + 'MICRODATA' => $microdata_attr.'="'.$dir_cat_data['cat_id'].'"', |
|
391 | + 'U_VIEW_FORUM' => $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$dir_cat_data['cat_id']), |
|
392 | 392 | )); |
393 | 393 | |
394 | 394 | return; |
@@ -444,17 +444,17 @@ discard block |
||
444 | 444 | { |
445 | 445 | if ($mode == 'unwatch') |
446 | 446 | { |
447 | - $sql = 'DELETE FROM ' . $this->watch_table . " |
|
447 | + $sql = 'DELETE FROM '.$this->watch_table." |
|
448 | 448 | WHERE cat_id = $cat_id |
449 | 449 | AND user_id = $user_id"; |
450 | 450 | $this->db->sql_query($sql); |
451 | 451 | |
452 | - $redirect_url = $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $cat_id); |
|
452 | + $redirect_url = $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$cat_id); |
|
453 | 453 | $message = $this->language->lang('DIR_NOT_WATCHING_CAT'); |
454 | 454 | |
455 | 455 | if (!$this->request->is_ajax()) |
456 | 456 | { |
457 | - $message .= '<br /><br />' . $this->language->lang('DIR_CLICK_RETURN_CAT', '<a href="' . $redirect_url . '">', '</a>'); |
|
457 | + $message .= '<br /><br />'.$this->language->lang('DIR_CLICK_RETURN_CAT', '<a href="'.$redirect_url.'">', '</a>'); |
|
458 | 458 | } |
459 | 459 | |
460 | 460 | meta_refresh(3, $redirect_url); |
@@ -466,8 +466,8 @@ discard block |
||
466 | 466 | |
467 | 467 | if ($notify_status != NOTIFY_YES) |
468 | 468 | { |
469 | - $sql = 'UPDATE ' . $this->watch_table . ' |
|
470 | - SET notify_status = ' . NOTIFY_YES . " |
|
469 | + $sql = 'UPDATE '.$this->watch_table.' |
|
470 | + SET notify_status = ' . NOTIFY_YES." |
|
471 | 471 | WHERE cat_id = $cat_id |
472 | 472 | AND user_id = $user_id"; |
473 | 473 | $this->db->sql_query($sql); |
@@ -478,16 +478,16 @@ discard block |
||
478 | 478 | { |
479 | 479 | if ($mode == 'watch') |
480 | 480 | { |
481 | - $sql = 'INSERT INTO ' . $this->watch_table . " (user_id, cat_id, notify_status) |
|
482 | - VALUES ($user_id, $cat_id, " . NOTIFY_YES . ')'; |
|
481 | + $sql = 'INSERT INTO '.$this->watch_table." (user_id, cat_id, notify_status) |
|
482 | + VALUES ($user_id, $cat_id, ".NOTIFY_YES.')'; |
|
483 | 483 | $this->db->sql_query($sql); |
484 | 484 | |
485 | - $redirect_url = $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_' . $cat_id); |
|
485 | + $redirect_url = $this->helper->route('ernadoo_phpbbdirectory_dynamic_route_'.$cat_id); |
|
486 | 486 | $message = $this->language->lang('DIR_ARE_WATCHING_CAT'); |
487 | 487 | |
488 | 488 | if (!$this->request->is_ajax()) |
489 | 489 | { |
490 | - $message .= '<br /><br />' . $this->language->lang('DIR_CLICK_RETURN_CAT', '<a href="' . $redirect_url . '">', '</a>'); |
|
490 | + $message .= '<br /><br />'.$this->language->lang('DIR_CLICK_RETURN_CAT', '<a href="'.$redirect_url.'">', '</a>'); |
|
491 | 491 | } |
492 | 492 | |
493 | 493 | meta_refresh(3, $redirect_url); |
@@ -507,10 +507,10 @@ discard block |
||
507 | 507 | |
508 | 508 | if ($can_watch) |
509 | 509 | { |
510 | - $s_watching['link'] = $this->helper->route('ernadoo_phpbbdirectory_suscribe_controller', array('cat_id' => $cat_id, 'mode' => (($is_watching) ? 'unwatch' : 'watch'))); |
|
510 | + $s_watching['link'] = $this->helper->route('ernadoo_phpbbdirectory_suscribe_controller', array('cat_id' => $cat_id, 'mode' => (($is_watching) ? 'unwatch' : 'watch'))); |
|
511 | 511 | $s_watching['link_toggle'] = $this->helper->route('ernadoo_phpbbdirectory_suscribe_controller', array('cat_id' => $cat_id, 'mode' => ((!$is_watching) ? 'unwatch' : 'watch'))); |
512 | - $s_watching['title'] = $this->language->lang((($is_watching) ? 'DIR_STOP' : 'DIR_START') . '_WATCHING_CAT'); |
|
513 | - $s_watching['title_toggle'] = $this->language->lang(((!$is_watching) ? 'DIR_STOP' : 'DIR_START') . '_WATCHING_CAT'); |
|
512 | + $s_watching['title'] = $this->language->lang((($is_watching) ? 'DIR_STOP' : 'DIR_START').'_WATCHING_CAT'); |
|
513 | + $s_watching['title_toggle'] = $this->language->lang(((!$is_watching) ? 'DIR_STOP' : 'DIR_START').'_WATCHING_CAT'); |
|
514 | 514 | $s_watching['is_watching'] = $is_watching; |
515 | 515 | } |
516 | 516 | |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | $categories_table = $phpbb_container->getParameter('tables.dir.categories'); |
531 | 531 | |
532 | 532 | $sql = 'SELECT cat_name |
533 | - FROM ' . $categories_table . ' |
|
533 | + FROM ' . $categories_table.' |
|
534 | 534 | WHERE cat_id = ' . (int) $cat_id; |
535 | 535 | $result = $db->sql_query($sql); |
536 | 536 | $row = $db->sql_fetchrow($result); |