Passed
Push — master ( 2c1b34...eeeeb5 )
by Paul
04:03
created
plugin/Helper.php 1 patch
Indentation   +214 added lines, -214 removed lines patch added patch discarded remove patch
@@ -8,218 +8,218 @@
 block discarded – undo
8 8
 
9 9
 class Helper
10 10
 {
11
-    /**
12
-     * @param string $name
13
-     * @param string $path
14
-     * @return string
15
-     */
16
-    public static function buildClassName($name, $path = '')
17
-    {
18
-        $className = Str::camelCase($name);
19
-        $path = ltrim(str_replace(__NAMESPACE__, '', $path), '\\');
20
-        return !empty($path)
21
-            ? __NAMESPACE__.'\\'.$path.'\\'.$className
22
-            : $className;
23
-    }
24
-
25
-    /**
26
-     * @param string $name
27
-     * @param string $prefix
28
-     * @return string
29
-     */
30
-    public static function buildMethodName($name, $prefix = '')
31
-    {
32
-        return lcfirst($prefix.static::buildClassName($name));
33
-    }
34
-
35
-    /**
36
-     * @param string $name
37
-     * @return string
38
-     */
39
-    public static function buildPropertyName($name)
40
-    {
41
-        return static::buildMethodName($name);
42
-    }
43
-
44
-    /**
45
-     * @param string $cast
46
-     * @param mixed $value
47
-     * @return mixed
48
-     */
49
-    public static function castTo($cast = '', $value)
50
-    {
51
-        $method = static::buildMethodName($cast, 'castTo');
52
-        return !empty($cast) && method_exists(__CLASS__, $method)
53
-            ? static::$method($value)
54
-            : $value;
55
-    }
56
-
57
-    /**
58
-     * @param mixed $value
59
-     * @return array
60
-     */
61
-    public static function castToArray($value)
62
-    {
63
-        return (array) $value;
64
-    }
65
-
66
-    /**
67
-     * @param mixed $value
68
-     * @return bool
69
-     */
70
-    public static function castToBool($value)
71
-    {
72
-        return filter_var($value, FILTER_VALIDATE_BOOLEAN);
73
-    }
74
-
75
-    /**
76
-     * @param mixed $value
77
-     * @return float
78
-     */
79
-    public static function castToFloat($value)
80
-    {
81
-        return (float) filter_var($value, FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
82
-    }
83
-
84
-    /**
85
-     * @param mixed $value
86
-     * @return int
87
-     */
88
-    public static function castToInt($value)
89
-    {
90
-        return (int) filter_var($value, FILTER_VALIDATE_INT);
91
-    }
92
-
93
-    /**
94
-     * @param mixed $value
95
-     * @return object
96
-     */
97
-    public static function castToObject($value)
98
-    {
99
-        return (object) (array) $value;
100
-    }
101
-
102
-    /**
103
-     * @param mixed $value
104
-     * @return string
105
-     */
106
-    public static function castToString($value)
107
-    {
108
-        if (is_object($value) && in_array('__toString', get_class_methods($value))) {
109
-            return (string) $value->__toString();
110
-        }
111
-        if (is_array($value) || is_object($value)) {
112
-            return serialize($value);
113
-        }
114
-        return (string) $value;
115
-    }
116
-
117
-    /**
118
-     * @param string $key
119
-     * @return mixed
120
-     */
121
-    public static function filterInput($key, array $request = [])
122
-    {
123
-        if (isset($request[$key])) {
124
-            return $request[$key];
125
-        }
126
-        $variable = filter_input(INPUT_POST, $key);
127
-        if (is_null($variable) && isset($_POST[$key])) {
128
-            $variable = $_POST[$key];
129
-        }
130
-        return $variable;
131
-    }
132
-
133
-    /**
134
-     * @param string $key
135
-     * @return array
136
-     */
137
-    public static function filterInputArray($key)
138
-    {
139
-        $variable = filter_input(INPUT_POST, $key, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY);
140
-        if (empty($variable) && !empty($_POST[$key]) && is_array($_POST[$key])) {
141
-            $variable = $_POST[$key];
142
-        }
143
-        return (array) $variable;
144
-    }
145
-
146
-    /**
147
-     * @return string
148
-     */
149
-    public static function getIpAddress()
150
-    {
151
-        $whitelist = [];
152
-        $isUsingCloudflare = !empty(filter_input(INPUT_SERVER, 'CF-Connecting-IP'));
153
-        if (apply_filters('site-reviews/whip/whitelist/cloudflare', $isUsingCloudflare)) {
154
-            $cloudflareIps = glsr(Cache::class)->getCloudflareIps();
155
-            $whitelist[Whip::CLOUDFLARE_HEADERS] = [Whip::IPV4 => $cloudflareIps['v4']];
156
-            if (defined('AF_INET6')) {
157
-                $whitelist[Whip::CLOUDFLARE_HEADERS][Whip::IPV6] = $cloudflareIps['v6'];
158
-            }
159
-        }
160
-        $whitelist = apply_filters('site-reviews/whip/whitelist', $whitelist);
161
-        $methods = apply_filters('site-reviews/whip/methods', Whip::ALL_METHODS);
162
-        $whip = new Whip($methods, $whitelist);
163
-        do_action_ref_array('site-reviews/whip', [$whip]);
164
-        if (false !== ($clientAddress = $whip->getValidIpAddress())) {
165
-            return (string) $clientAddress;
166
-        }
167
-        glsr_log()->error('Unable to detect IP address.');
168
-        return 'unknown';
169
-    }
170
-
171
-    /**
172
-     * @param mixed $value
173
-     * @param string|int $min
174
-     * @param string|int $max
175
-     * @return bool
176
-     */
177
-    public static function inRange($value, $min, $max)
178
-    {
179
-        $inRange = filter_var($value, FILTER_VALIDATE_INT, ['options' => [
180
-            'min_range' => intval($min),
181
-            'max_range' => intval($max),
182
-        ]]);
183
-        return false !== $inRange;
184
-    }
185
-
186
-    /**
187
-     * @param int|string $value
188
-     * @param int|string $compareWithValue
189
-     * @return bool
190
-     */
191
-    public static function isGreaterThan($value, $compareWithValue)
192
-    {
193
-        return version_compare($value, $compareWithValue, '>');
194
-    }
195
-
196
-    /**
197
-     * @param int|string $value
198
-     * @param int|string $compareWithValue
199
-     * @return bool
200
-     */
201
-    public static function isGreaterThanOrEqual($value, $compareWithValue)
202
-    {
203
-        return version_compare($value, $compareWithValue, '>=');
204
-    }
205
-
206
-    /**
207
-     * @param int|string $value
208
-     * @param int|string $compareWithValue
209
-     * @return bool
210
-     */
211
-    public static function isLessThan($value, $compareWithValue)
212
-    {
213
-        return version_compare($value, $compareWithValue, '<');
214
-    }
215
-
216
-    /**
217
-     * @param int|string $value
218
-     * @param int|string $compareWithValue
219
-     * @return bool
220
-     */
221
-    public static function isLessThanOrEqual($value, $compareWithValue)
222
-    {
223
-        return version_compare($value, $compareWithValue, '<=');
224
-    }
11
+	/**
12
+	 * @param string $name
13
+	 * @param string $path
14
+	 * @return string
15
+	 */
16
+	public static function buildClassName($name, $path = '')
17
+	{
18
+		$className = Str::camelCase($name);
19
+		$path = ltrim(str_replace(__NAMESPACE__, '', $path), '\\');
20
+		return !empty($path)
21
+			? __NAMESPACE__.'\\'.$path.'\\'.$className
22
+			: $className;
23
+	}
24
+
25
+	/**
26
+	 * @param string $name
27
+	 * @param string $prefix
28
+	 * @return string
29
+	 */
30
+	public static function buildMethodName($name, $prefix = '')
31
+	{
32
+		return lcfirst($prefix.static::buildClassName($name));
33
+	}
34
+
35
+	/**
36
+	 * @param string $name
37
+	 * @return string
38
+	 */
39
+	public static function buildPropertyName($name)
40
+	{
41
+		return static::buildMethodName($name);
42
+	}
43
+
44
+	/**
45
+	 * @param string $cast
46
+	 * @param mixed $value
47
+	 * @return mixed
48
+	 */
49
+	public static function castTo($cast = '', $value)
50
+	{
51
+		$method = static::buildMethodName($cast, 'castTo');
52
+		return !empty($cast) && method_exists(__CLASS__, $method)
53
+			? static::$method($value)
54
+			: $value;
55
+	}
56
+
57
+	/**
58
+	 * @param mixed $value
59
+	 * @return array
60
+	 */
61
+	public static function castToArray($value)
62
+	{
63
+		return (array) $value;
64
+	}
65
+
66
+	/**
67
+	 * @param mixed $value
68
+	 * @return bool
69
+	 */
70
+	public static function castToBool($value)
71
+	{
72
+		return filter_var($value, FILTER_VALIDATE_BOOLEAN);
73
+	}
74
+
75
+	/**
76
+	 * @param mixed $value
77
+	 * @return float
78
+	 */
79
+	public static function castToFloat($value)
80
+	{
81
+		return (float) filter_var($value, FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
82
+	}
83
+
84
+	/**
85
+	 * @param mixed $value
86
+	 * @return int
87
+	 */
88
+	public static function castToInt($value)
89
+	{
90
+		return (int) filter_var($value, FILTER_VALIDATE_INT);
91
+	}
92
+
93
+	/**
94
+	 * @param mixed $value
95
+	 * @return object
96
+	 */
97
+	public static function castToObject($value)
98
+	{
99
+		return (object) (array) $value;
100
+	}
101
+
102
+	/**
103
+	 * @param mixed $value
104
+	 * @return string
105
+	 */
106
+	public static function castToString($value)
107
+	{
108
+		if (is_object($value) && in_array('__toString', get_class_methods($value))) {
109
+			return (string) $value->__toString();
110
+		}
111
+		if (is_array($value) || is_object($value)) {
112
+			return serialize($value);
113
+		}
114
+		return (string) $value;
115
+	}
116
+
117
+	/**
118
+	 * @param string $key
119
+	 * @return mixed
120
+	 */
121
+	public static function filterInput($key, array $request = [])
122
+	{
123
+		if (isset($request[$key])) {
124
+			return $request[$key];
125
+		}
126
+		$variable = filter_input(INPUT_POST, $key);
127
+		if (is_null($variable) && isset($_POST[$key])) {
128
+			$variable = $_POST[$key];
129
+		}
130
+		return $variable;
131
+	}
132
+
133
+	/**
134
+	 * @param string $key
135
+	 * @return array
136
+	 */
137
+	public static function filterInputArray($key)
138
+	{
139
+		$variable = filter_input(INPUT_POST, $key, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY);
140
+		if (empty($variable) && !empty($_POST[$key]) && is_array($_POST[$key])) {
141
+			$variable = $_POST[$key];
142
+		}
143
+		return (array) $variable;
144
+	}
145
+
146
+	/**
147
+	 * @return string
148
+	 */
149
+	public static function getIpAddress()
150
+	{
151
+		$whitelist = [];
152
+		$isUsingCloudflare = !empty(filter_input(INPUT_SERVER, 'CF-Connecting-IP'));
153
+		if (apply_filters('site-reviews/whip/whitelist/cloudflare', $isUsingCloudflare)) {
154
+			$cloudflareIps = glsr(Cache::class)->getCloudflareIps();
155
+			$whitelist[Whip::CLOUDFLARE_HEADERS] = [Whip::IPV4 => $cloudflareIps['v4']];
156
+			if (defined('AF_INET6')) {
157
+				$whitelist[Whip::CLOUDFLARE_HEADERS][Whip::IPV6] = $cloudflareIps['v6'];
158
+			}
159
+		}
160
+		$whitelist = apply_filters('site-reviews/whip/whitelist', $whitelist);
161
+		$methods = apply_filters('site-reviews/whip/methods', Whip::ALL_METHODS);
162
+		$whip = new Whip($methods, $whitelist);
163
+		do_action_ref_array('site-reviews/whip', [$whip]);
164
+		if (false !== ($clientAddress = $whip->getValidIpAddress())) {
165
+			return (string) $clientAddress;
166
+		}
167
+		glsr_log()->error('Unable to detect IP address.');
168
+		return 'unknown';
169
+	}
170
+
171
+	/**
172
+	 * @param mixed $value
173
+	 * @param string|int $min
174
+	 * @param string|int $max
175
+	 * @return bool
176
+	 */
177
+	public static function inRange($value, $min, $max)
178
+	{
179
+		$inRange = filter_var($value, FILTER_VALIDATE_INT, ['options' => [
180
+			'min_range' => intval($min),
181
+			'max_range' => intval($max),
182
+		]]);
183
+		return false !== $inRange;
184
+	}
185
+
186
+	/**
187
+	 * @param int|string $value
188
+	 * @param int|string $compareWithValue
189
+	 * @return bool
190
+	 */
191
+	public static function isGreaterThan($value, $compareWithValue)
192
+	{
193
+		return version_compare($value, $compareWithValue, '>');
194
+	}
195
+
196
+	/**
197
+	 * @param int|string $value
198
+	 * @param int|string $compareWithValue
199
+	 * @return bool
200
+	 */
201
+	public static function isGreaterThanOrEqual($value, $compareWithValue)
202
+	{
203
+		return version_compare($value, $compareWithValue, '>=');
204
+	}
205
+
206
+	/**
207
+	 * @param int|string $value
208
+	 * @param int|string $compareWithValue
209
+	 * @return bool
210
+	 */
211
+	public static function isLessThan($value, $compareWithValue)
212
+	{
213
+		return version_compare($value, $compareWithValue, '<');
214
+	}
215
+
216
+	/**
217
+	 * @param int|string $value
218
+	 * @param int|string $compareWithValue
219
+	 * @return bool
220
+	 */
221
+	public static function isLessThanOrEqual($value, $compareWithValue)
222
+	{
223
+		return version_compare($value, $compareWithValue, '<=');
224
+	}
225 225
 }
Please login to merge, or discard this patch.
plugin/Database/OptionManager.php 1 patch
Indentation   +142 added lines, -142 removed lines patch added patch discarded remove patch
@@ -9,157 +9,157 @@
 block discarded – undo
9 9
 
10 10
 class OptionManager
11 11
 {
12
-    /**
13
-     * @var array
14
-     */
15
-    protected $options;
12
+	/**
13
+	 * @var array
14
+	 */
15
+	protected $options;
16 16
 
17
-    /**
18
-     * @return string
19
-     */
20
-    public static function databaseKey($version = null)
21
-    {
22
-        if (1 == $version) {
23
-            return 'geminilabs_site_reviews_settings';
24
-        }
25
-        if (2 == $version) {
26
-            return 'geminilabs_site_reviews-v2';
27
-        }
28
-        if (null === $version) {
29
-            $version = explode('.', glsr()->version);
30
-            $version = array_shift($version);
31
-        }
32
-        return Str::snakeCase(Application::ID.'-v'.intval($version));
33
-    }
17
+	/**
18
+	 * @return string
19
+	 */
20
+	public static function databaseKey($version = null)
21
+	{
22
+		if (1 == $version) {
23
+			return 'geminilabs_site_reviews_settings';
24
+		}
25
+		if (2 == $version) {
26
+			return 'geminilabs_site_reviews-v2';
27
+		}
28
+		if (null === $version) {
29
+			$version = explode('.', glsr()->version);
30
+			$version = array_shift($version);
31
+		}
32
+		return Str::snakeCase(Application::ID.'-v'.intval($version));
33
+	}
34 34
 
35
-    /**
36
-     * @return array
37
-     */
38
-    public function all()
39
-    {
40
-        if (empty($this->options)) {
41
-            $this->reset();
42
-        }
43
-        return $this->options;
44
-    }
35
+	/**
36
+	 * @return array
37
+	 */
38
+	public function all()
39
+	{
40
+		if (empty($this->options)) {
41
+			$this->reset();
42
+		}
43
+		return $this->options;
44
+	}
45 45
 
46
-    /**
47
-     * @param string $path
48
-     * @return bool
49
-     */
50
-    public function delete($path)
51
-    {
52
-        $keys = explode('.', $path);
53
-        $last = array_pop($keys);
54
-        $options = $this->all();
55
-        $pointer = &$options;
56
-        foreach ($keys as $key) {
57
-            if (!isset($pointer[$key]) || !is_array($pointer[$key])) {
58
-                continue;
59
-            }
60
-            $pointer = &$pointer[$key];
61
-        }
62
-        unset($pointer[$last]);
63
-        return $this->set($options);
64
-    }
46
+	/**
47
+	 * @param string $path
48
+	 * @return bool
49
+	 */
50
+	public function delete($path)
51
+	{
52
+		$keys = explode('.', $path);
53
+		$last = array_pop($keys);
54
+		$options = $this->all();
55
+		$pointer = &$options;
56
+		foreach ($keys as $key) {
57
+			if (!isset($pointer[$key]) || !is_array($pointer[$key])) {
58
+				continue;
59
+			}
60
+			$pointer = &$pointer[$key];
61
+		}
62
+		unset($pointer[$last]);
63
+		return $this->set($options);
64
+	}
65 65
 
66
-    /**
67
-     * @param string $path
68
-     * @param mixed $fallback
69
-     * @param string $cast
70
-     * @return mixed
71
-     */
72
-    public function get($path = '', $fallback = '', $cast = '')
73
-    {
74
-        $result = Arr::get($this->all(), $path, $fallback);
75
-        return Helper::castTo($cast, $result);
76
-    }
66
+	/**
67
+	 * @param string $path
68
+	 * @param mixed $fallback
69
+	 * @param string $cast
70
+	 * @return mixed
71
+	 */
72
+	public function get($path = '', $fallback = '', $cast = '')
73
+	{
74
+		$result = Arr::get($this->all(), $path, $fallback);
75
+		return Helper::castTo($cast, $result);
76
+	}
77 77
 
78
-    /**
79
-     * @param string $path
80
-     * @return bool
81
-     */
82
-    public function getBool($path)
83
-    {
84
-        return Helper::castToBool($this->get($path));
85
-    }
78
+	/**
79
+	 * @param string $path
80
+	 * @return bool
81
+	 */
82
+	public function getBool($path)
83
+	{
84
+		return Helper::castToBool($this->get($path));
85
+	}
86 86
 
87
-    /**
88
-     * @param string $path
89
-     * @param mixed $fallback
90
-     * @param string $cast
91
-     * @return mixed
92
-     */
93
-    public function getWP($path, $fallback = '', $cast = '')
94
-    {
95
-        $option = get_option($path, $fallback);
96
-        if (empty($option)) {
97
-            $option = $fallback;
98
-        }
99
-        return Helper::castTo($cast, $option);
100
-    }
87
+	/**
88
+	 * @param string $path
89
+	 * @param mixed $fallback
90
+	 * @param string $cast
91
+	 * @return mixed
92
+	 */
93
+	public function getWP($path, $fallback = '', $cast = '')
94
+	{
95
+		$option = get_option($path, $fallback);
96
+		if (empty($option)) {
97
+			$option = $fallback;
98
+		}
99
+		return Helper::castTo($cast, $option);
100
+	}
101 101
 
102
-    /**
103
-     * @return string
104
-     */
105
-    public function json()
106
-    {
107
-        return json_encode($this->all());
108
-    }
102
+	/**
103
+	 * @return string
104
+	 */
105
+	public function json()
106
+	{
107
+		return json_encode($this->all());
108
+	}
109 109
 
110
-    /**
111
-     * @return array
112
-     */
113
-    public function normalize(array $options = [])
114
-    {
115
-        $options = wp_parse_args(
116
-            Arr::flattenArray($options),
117
-            glsr(DefaultsManager::class)->defaults()
118
-        );
119
-        array_walk($options, function (&$value) {
120
-            if (!is_string($value)) {
121
-                return;
122
-            }
123
-            $value = wp_kses($value, wp_kses_allowed_html('post'));
124
-        });
125
-        return Arr::convertDotNotationArray($options);
126
-    }
110
+	/**
111
+	 * @return array
112
+	 */
113
+	public function normalize(array $options = [])
114
+	{
115
+		$options = wp_parse_args(
116
+			Arr::flattenArray($options),
117
+			glsr(DefaultsManager::class)->defaults()
118
+		);
119
+		array_walk($options, function (&$value) {
120
+			if (!is_string($value)) {
121
+				return;
122
+			}
123
+			$value = wp_kses($value, wp_kses_allowed_html('post'));
124
+		});
125
+		return Arr::convertDotNotationArray($options);
126
+	}
127 127
 
128
-    /**
129
-     * @return bool
130
-     */
131
-    public function isRecaptchaEnabled()
132
-    {
133
-        $integration = $this->get('settings.submissions.recaptcha.integration');
134
-        return 'all' == $integration || ('guest' == $integration && !is_user_logged_in());
135
-    }
128
+	/**
129
+	 * @return bool
130
+	 */
131
+	public function isRecaptchaEnabled()
132
+	{
133
+		$integration = $this->get('settings.submissions.recaptcha.integration');
134
+		return 'all' == $integration || ('guest' == $integration && !is_user_logged_in());
135
+	}
136 136
 
137
-    /**
138
-     * @return array
139
-     */
140
-    public function reset()
141
-    {
142
-        $options = $this->getWP(static::databaseKey(), []);
143
-        if (!is_array($options) || empty($options)) {
144
-            delete_option(static::databaseKey());
145
-            $options = glsr()->defaults ?: [];
146
-        }
147
-        $this->options = $options;
148
-    }
137
+	/**
138
+	 * @return array
139
+	 */
140
+	public function reset()
141
+	{
142
+		$options = $this->getWP(static::databaseKey(), []);
143
+		if (!is_array($options) || empty($options)) {
144
+			delete_option(static::databaseKey());
145
+			$options = glsr()->defaults ?: [];
146
+		}
147
+		$this->options = $options;
148
+	}
149 149
 
150
-    /**
151
-     * @param string|array $pathOrOptions
152
-     * @param mixed $value
153
-     * @return bool
154
-     */
155
-    public function set($pathOrOptions, $value = '')
156
-    {
157
-        if (is_string($pathOrOptions)) {
158
-            $pathOrOptions = Arr::set($this->all(), $pathOrOptions, $value);
159
-        }
160
-        if ($result = update_option(static::databaseKey(), (array) $pathOrOptions)) {
161
-            $this->reset();
162
-        }
163
-        return $result;
164
-    }
150
+	/**
151
+	 * @param string|array $pathOrOptions
152
+	 * @param mixed $value
153
+	 * @return bool
154
+	 */
155
+	public function set($pathOrOptions, $value = '')
156
+	{
157
+		if (is_string($pathOrOptions)) {
158
+			$pathOrOptions = Arr::set($this->all(), $pathOrOptions, $value);
159
+		}
160
+		if ($result = update_option(static::databaseKey(), (array) $pathOrOptions)) {
161
+			$this->reset();
162
+		}
163
+		return $result;
164
+	}
165 165
 }
Please login to merge, or discard this patch.
plugin/Database/CountsManager.php 1 patch
Indentation   +227 added lines, -227 removed lines patch added patch discarded remove patch
@@ -14,248 +14,248 @@
 block discarded – undo
14 14
 
15 15
 class CountsManager
16 16
 {
17
-    const LIMIT = 500;
18
-    const META_AVERAGE = '_glsr_average';
19
-    const META_COUNT = '_glsr_count';
20
-    const META_RANKING = '_glsr_ranking';
17
+	const LIMIT = 500;
18
+	const META_AVERAGE = '_glsr_average';
19
+	const META_COUNT = '_glsr_count';
20
+	const META_RANKING = '_glsr_ranking';
21 21
 
22
-    /**
23
-     * @return array
24
-     */
25
-    public function buildCounts(array $args = [])
26
-    {
27
-        $counts = [
28
-            'local' => $this->generateEmptyCountsArray(),
29
-        ];
30
-        $query = $this->queryReviews($args);
31
-        while ($query) {
32
-            $counts = $this->populateCountsFromQuery($query, $counts);
33
-            $query = $query->has_more
34
-                ? $this->queryReviews($args, end($query->reviews)->ID)
35
-                : false;
36
-        }
37
-        return $counts;
38
-    }
22
+	/**
23
+	 * @return array
24
+	 */
25
+	public function buildCounts(array $args = [])
26
+	{
27
+		$counts = [
28
+			'local' => $this->generateEmptyCountsArray(),
29
+		];
30
+		$query = $this->queryReviews($args);
31
+		while ($query) {
32
+			$counts = $this->populateCountsFromQuery($query, $counts);
33
+			$query = $query->has_more
34
+				? $this->queryReviews($args, end($query->reviews)->ID)
35
+				: false;
36
+		}
37
+		return $counts;
38
+	}
39 39
 
40
-    /**
41
-     * @return void
42
-     */
43
-    public function decreaseAll(Review $review)
44
-    {
45
-        glsr(GlobalCountsManager::class)->decrease($review);
46
-        glsr(PostCountsManager::class)->decrease($review);
47
-        glsr(TermCountsManager::class)->decrease($review);
48
-    }
40
+	/**
41
+	 * @return void
42
+	 */
43
+	public function decreaseAll(Review $review)
44
+	{
45
+		glsr(GlobalCountsManager::class)->decrease($review);
46
+		glsr(PostCountsManager::class)->decrease($review);
47
+		glsr(TermCountsManager::class)->decrease($review);
48
+	}
49 49
 
50
-    /**
51
-     * @param string $type
52
-     * @param int $rating
53
-     * @return array
54
-     */
55
-    public function decreaseRating(array $reviewCounts, $type, $rating)
56
-    {
57
-        if (isset($reviewCounts[$type][$rating])) {
58
-            $reviewCounts[$type][$rating] = max(0, $reviewCounts[$type][$rating] - 1);
59
-        }
60
-        return $reviewCounts;
61
-    }
50
+	/**
51
+	 * @param string $type
52
+	 * @param int $rating
53
+	 * @return array
54
+	 */
55
+	public function decreaseRating(array $reviewCounts, $type, $rating)
56
+	{
57
+		if (isset($reviewCounts[$type][$rating])) {
58
+			$reviewCounts[$type][$rating] = max(0, $reviewCounts[$type][$rating] - 1);
59
+		}
60
+		return $reviewCounts;
61
+	}
62 62
 
63
-    /**
64
-     * @return array
65
-     */
66
-    public function flatten(array $reviewCounts, array $args = [])
67
-    {
68
-        $counts = [];
69
-        array_walk_recursive($reviewCounts, function ($num, $index) use (&$counts) {
70
-            $counts[$index] = $num + intval(Arr::get($counts, $index, 0));
71
-        });
72
-        $min = Arr::get($args, 'min', glsr()->constant('MIN_RATING', Rating::class));
73
-        $max = Arr::get($args, 'max', glsr()->constant('MAX_RATING', Rating::class));
74
-        foreach ($counts as $index => &$num) {
75
-            if (!Helper::inRange($index, $min, $max)) {
76
-                $num = 0;
77
-            }
78
-        }
79
-        return $counts;
80
-    }
63
+	/**
64
+	 * @return array
65
+	 */
66
+	public function flatten(array $reviewCounts, array $args = [])
67
+	{
68
+		$counts = [];
69
+		array_walk_recursive($reviewCounts, function ($num, $index) use (&$counts) {
70
+			$counts[$index] = $num + intval(Arr::get($counts, $index, 0));
71
+		});
72
+		$min = Arr::get($args, 'min', glsr()->constant('MIN_RATING', Rating::class));
73
+		$max = Arr::get($args, 'max', glsr()->constant('MAX_RATING', Rating::class));
74
+		foreach ($counts as $index => &$num) {
75
+			if (!Helper::inRange($index, $min, $max)) {
76
+				$num = 0;
77
+			}
78
+		}
79
+		return $counts;
80
+	}
81 81
 
82
-    /**
83
-     * @return array
84
-     */
85
-    public function getCounts(array $args = [])
86
-    {
87
-        $args = $this->normalizeArgs($args);
88
-        $counts = $this->hasMixedAssignment($args)
89
-            ? $this->buildCounts($args) // force query the database
90
-            : $this->get($args);
91
-        return $this->normalize($counts);
92
-    }
82
+	/**
83
+	 * @return array
84
+	 */
85
+	public function getCounts(array $args = [])
86
+	{
87
+		$args = $this->normalizeArgs($args);
88
+		$counts = $this->hasMixedAssignment($args)
89
+			? $this->buildCounts($args) // force query the database
90
+			: $this->get($args);
91
+		return $this->normalize($counts);
92
+	}
93 93
 
94
-    /**
95
-     * @return void
96
-     */
97
-    public function increaseAll(Review $review)
98
-    {
99
-        glsr(GlobalCountsManager::class)->increase($review);
100
-        glsr(PostCountsManager::class)->increase($review);
101
-        glsr(TermCountsManager::class)->increase($review);
102
-    }
94
+	/**
95
+	 * @return void
96
+	 */
97
+	public function increaseAll(Review $review)
98
+	{
99
+		glsr(GlobalCountsManager::class)->increase($review);
100
+		glsr(PostCountsManager::class)->increase($review);
101
+		glsr(TermCountsManager::class)->increase($review);
102
+	}
103 103
 
104
-    /**
105
-     * @param string $type
106
-     * @param int $rating
107
-     * @return array
108
-     */
109
-    public function increaseRating(array $reviewCounts, $type, $rating)
110
-    {
111
-        if (!array_key_exists($type, glsr()->reviewTypes)) {
112
-            return $reviewCounts;
113
-        }
114
-        if (!array_key_exists($type, $reviewCounts)) {
115
-            $reviewCounts[$type] = [];
116
-        }
117
-        $reviewCounts = $this->normalize($reviewCounts);
118
-        $reviewCounts[$type][$rating] = intval($reviewCounts[$type][$rating]) + 1;
119
-        return $reviewCounts;
120
-    }
104
+	/**
105
+	 * @param string $type
106
+	 * @param int $rating
107
+	 * @return array
108
+	 */
109
+	public function increaseRating(array $reviewCounts, $type, $rating)
110
+	{
111
+		if (!array_key_exists($type, glsr()->reviewTypes)) {
112
+			return $reviewCounts;
113
+		}
114
+		if (!array_key_exists($type, $reviewCounts)) {
115
+			$reviewCounts[$type] = [];
116
+		}
117
+		$reviewCounts = $this->normalize($reviewCounts);
118
+		$reviewCounts[$type][$rating] = intval($reviewCounts[$type][$rating]) + 1;
119
+		return $reviewCounts;
120
+	}
121 121
 
122
-    /**
123
-     * @return void
124
-     */
125
-    public function updateAll()
126
-    {
127
-        glsr(GlobalCountsManager::class)->updateAll();
128
-        glsr(PostCountsManager::class)->updateAll();
129
-        glsr(TermCountsManager::class)->updateAll();
130
-        glsr(OptionManager::class)->set('last_review_count', current_time('timestamp'));
131
-    }
122
+	/**
123
+	 * @return void
124
+	 */
125
+	public function updateAll()
126
+	{
127
+		glsr(GlobalCountsManager::class)->updateAll();
128
+		glsr(PostCountsManager::class)->updateAll();
129
+		glsr(TermCountsManager::class)->updateAll();
130
+		glsr(OptionManager::class)->set('last_review_count', current_time('timestamp'));
131
+	}
132 132
 
133
-    /**
134
-     * @return array
135
-     */
136
-    protected function combine(array $results)
137
-    {
138
-        if (!wp_is_numeric_array($results)) {
139
-            return $results;
140
-        }
141
-        $mergedKeys = array_keys(array_merge(...$results));
142
-        $counts = array_fill_keys($mergedKeys, $this->generateEmptyCountsArray());
143
-        foreach ($results as $typeRatings) {
144
-            foreach ($typeRatings as $type => $ratings) {
145
-                foreach ($ratings as $index => $rating) {
146
-                    $counts[$type][$index] = intval($rating) + $counts[$type][$index];
147
-                }
148
-            }
149
-        }
150
-        return $counts;
151
-    }
133
+	/**
134
+	 * @return array
135
+	 */
136
+	protected function combine(array $results)
137
+	{
138
+		if (!wp_is_numeric_array($results)) {
139
+			return $results;
140
+		}
141
+		$mergedKeys = array_keys(array_merge(...$results));
142
+		$counts = array_fill_keys($mergedKeys, $this->generateEmptyCountsArray());
143
+		foreach ($results as $typeRatings) {
144
+			foreach ($typeRatings as $type => $ratings) {
145
+				foreach ($ratings as $index => $rating) {
146
+					$counts[$type][$index] = intval($rating) + $counts[$type][$index];
147
+				}
148
+			}
149
+		}
150
+		return $counts;
151
+	}
152 152
 
153
-    /**
154
-     * @return array
155
-     */
156
-    protected function generateEmptyCountsArray()
157
-    {
158
-        return array_fill_keys(range(0, glsr()->constant('MAX_RATING', Rating::class)), 0);
159
-    }
153
+	/**
154
+	 * @return array
155
+	 */
156
+	protected function generateEmptyCountsArray()
157
+	{
158
+		return array_fill_keys(range(0, glsr()->constant('MAX_RATING', Rating::class)), 0);
159
+	}
160 160
 
161
-    /**
162
-     * @return array
163
-     */
164
-    protected function get($args)
165
-    {
166
-        $results = [];
167
-        foreach ($args['post_ids'] as $postId) {
168
-            $results[] = glsr(PostCountsManager::class)->get($postId);
169
-        }
170
-        foreach ($args['term_ids'] as $termId) {
171
-            $results[] = glsr(TermCountsManager::class)->get($termId);
172
-        }
173
-        if (empty($results)) {
174
-            $results[] = glsr(GlobalCountsManager::class)->get();
175
-        }
176
-        $results[] = ['local' => $this->generateEmptyCountsArray()]; // make sure there is a fallback
177
-        return $this->combine($results);
178
-    }
161
+	/**
162
+	 * @return array
163
+	 */
164
+	protected function get($args)
165
+	{
166
+		$results = [];
167
+		foreach ($args['post_ids'] as $postId) {
168
+			$results[] = glsr(PostCountsManager::class)->get($postId);
169
+		}
170
+		foreach ($args['term_ids'] as $termId) {
171
+			$results[] = glsr(TermCountsManager::class)->get($termId);
172
+		}
173
+		if (empty($results)) {
174
+			$results[] = glsr(GlobalCountsManager::class)->get();
175
+		}
176
+		$results[] = ['local' => $this->generateEmptyCountsArray()]; // make sure there is a fallback
177
+		return $this->combine($results);
178
+	}
179 179
 
180
-    /**
181
-     * @return bool
182
-     */
183
-    protected function hasMixedAssignment(array $args)
184
-    {
185
-        return !empty($args['post_ids']) && !empty($args['term_ids']);
186
-    }
180
+	/**
181
+	 * @return bool
182
+	 */
183
+	protected function hasMixedAssignment(array $args)
184
+	{
185
+		return !empty($args['post_ids']) && !empty($args['term_ids']);
186
+	}
187 187
 
188
-    /**
189
-     * @return array
190
-     */
191
-    protected function normalize(array $reviewCounts)
192
-    {
193
-        foreach ($reviewCounts as &$counts) {
194
-            foreach (array_keys($this->generateEmptyCountsArray()) as $index) {
195
-                if (!isset($counts[$index])) {
196
-                    $counts[$index] = 0;
197
-                }
198
-            }
199
-            ksort($counts);
200
-        }
201
-        return $reviewCounts;
202
-    }
188
+	/**
189
+	 * @return array
190
+	 */
191
+	protected function normalize(array $reviewCounts)
192
+	{
193
+		foreach ($reviewCounts as &$counts) {
194
+			foreach (array_keys($this->generateEmptyCountsArray()) as $index) {
195
+				if (!isset($counts[$index])) {
196
+					$counts[$index] = 0;
197
+				}
198
+			}
199
+			ksort($counts);
200
+		}
201
+		return $reviewCounts;
202
+	}
203 203
 
204
-    /**
205
-     * @return array
206
-     */
207
-    protected function normalizeArgs(array $args)
208
-    {
209
-        $args = wp_parse_args(array_filter($args), [
210
-            'post_ids' => [],
211
-            'term_ids' => [],
212
-            'type' => 'local',
213
-        ]);
214
-        $args['post_ids'] = glsr(Multilingual::class)->getPostIds($args['post_ids']);
215
-        $args['type'] = $this->normalizeType($args['type']);
216
-        return $args;
217
-    }
204
+	/**
205
+	 * @return array
206
+	 */
207
+	protected function normalizeArgs(array $args)
208
+	{
209
+		$args = wp_parse_args(array_filter($args), [
210
+			'post_ids' => [],
211
+			'term_ids' => [],
212
+			'type' => 'local',
213
+		]);
214
+		$args['post_ids'] = glsr(Multilingual::class)->getPostIds($args['post_ids']);
215
+		$args['type'] = $this->normalizeType($args['type']);
216
+		return $args;
217
+	}
218 218
 
219
-    /**
220
-     * @param string $type
221
-     * @return string
222
-     */
223
-    protected function normalizeType($type)
224
-    {
225
-        return empty($type) || !is_string($type)
226
-            ? 'local'
227
-            : $type;
228
-    }
219
+	/**
220
+	 * @param string $type
221
+	 * @return string
222
+	 */
223
+	protected function normalizeType($type)
224
+	{
225
+		return empty($type) || !is_string($type)
226
+			? 'local'
227
+			: $type;
228
+	}
229 229
 
230
-    /**
231
-     * @param object $query
232
-     * @return array
233
-     */
234
-    protected function populateCountsFromQuery($query, array $counts)
235
-    {
236
-        foreach ($query->reviews as $review) {
237
-            $type = $this->normalizeType($review->type);
238
-            if (!array_key_exists($type, $counts)) {
239
-                $counts[$type] = $this->generateEmptyCountsArray();
240
-            }
241
-            ++$counts[$type][$review->rating];
242
-        }
243
-        return $counts;
244
-    }
230
+	/**
231
+	 * @param object $query
232
+	 * @return array
233
+	 */
234
+	protected function populateCountsFromQuery($query, array $counts)
235
+	{
236
+		foreach ($query->reviews as $review) {
237
+			$type = $this->normalizeType($review->type);
238
+			if (!array_key_exists($type, $counts)) {
239
+				$counts[$type] = $this->generateEmptyCountsArray();
240
+			}
241
+			++$counts[$type][$review->rating];
242
+		}
243
+		return $counts;
244
+	}
245 245
 
246
-    /**
247
-     * @param int $lastPostId
248
-     * @return object
249
-     */
250
-    protected function queryReviews(array $args = [], $lastPostId = 0)
251
-    {
252
-        $reviews = glsr(SqlQueries::class)->getReviewCounts($args, $lastPostId, static::LIMIT);
253
-        $hasMore = is_array($reviews)
254
-            ? count($reviews) == static::LIMIT
255
-            : false;
256
-        return (object) [
257
-            'has_more' => $hasMore,
258
-            'reviews' => $reviews,
259
-        ];
260
-    }
246
+	/**
247
+	 * @param int $lastPostId
248
+	 * @return object
249
+	 */
250
+	protected function queryReviews(array $args = [], $lastPostId = 0)
251
+	{
252
+		$reviews = glsr(SqlQueries::class)->getReviewCounts($args, $lastPostId, static::LIMIT);
253
+		$hasMore = is_array($reviews)
254
+			? count($reviews) == static::LIMIT
255
+			: false;
256
+		return (object) [
257
+			'has_more' => $hasMore,
258
+			'reviews' => $reviews,
259
+		];
260
+	}
261 261
 }
Please login to merge, or discard this patch.
helpers.php 1 patch
Indentation   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -9,25 +9,25 @@  discard block
 block discarded – undo
9 9
  * @return mixed
10 10
  */
11 11
 add_filter('plugins_loaded', function () {
12
-    $hooks = array(
13
-        'glsr_calculate_ratings' => 1,
14
-        'glsr_create_review' => 2,
15
-        'glsr_debug' => 10,
16
-        'glsr_get' => 4,
17
-        'glsr_get_option' => 4,
18
-        'glsr_get_options' => 1,
19
-        'glsr_get_review' => 2,
20
-        'glsr_get_reviews' => 2,
21
-        'glsr_log' => 3,
22
-        'glsr_star_rating' => 2,
23
-    );
24
-    foreach ($hooks as $function => $acceptedArgs) {
25
-        add_filter($function, function () use ($function) {
26
-            $args = func_get_args();
27
-            array_shift($args); // remove the fallback value
28
-            return call_user_func_array($function, $args);
29
-        }, 10, $acceptedArgs);
30
-    }
12
+	$hooks = array(
13
+		'glsr_calculate_ratings' => 1,
14
+		'glsr_create_review' => 2,
15
+		'glsr_debug' => 10,
16
+		'glsr_get' => 4,
17
+		'glsr_get_option' => 4,
18
+		'glsr_get_options' => 1,
19
+		'glsr_get_review' => 2,
20
+		'glsr_get_reviews' => 2,
21
+		'glsr_log' => 3,
22
+		'glsr_star_rating' => 2,
23
+	);
24
+	foreach ($hooks as $function => $acceptedArgs) {
25
+		add_filter($function, function () use ($function) {
26
+			$args = func_get_args();
27
+			array_shift($args); // remove the fallback value
28
+			return call_user_func_array($function, $args);
29
+		}, 10, $acceptedArgs);
30
+	}
31 31
 });
32 32
 
33 33
 /**
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function glsr($alias = null)
37 37
 {
38
-    $app = \GeminiLabs\SiteReviews\Application::load();
39
-    return !is_null($alias)
40
-        ? $app->make($alias)
41
-        : $app;
38
+	$app = \GeminiLabs\SiteReviews\Application::load();
39
+	return !is_null($alias)
40
+		? $app->make($alias)
41
+		: $app;
42 42
 }
43 43
 
44 44
 /**
@@ -48,15 +48,15 @@  discard block
 block discarded – undo
48 48
  */
49 49
 function glsr_array_column(array $array, $column)
50 50
 {
51
-    $result = array();
52
-    foreach ($array as $subarray) {
53
-        $subarray = (array) $subarray;
54
-        if (!isset($subarray[$column])) {
55
-            continue;
56
-        }
57
-        $result[] = $subarray[$column];
58
-    }
59
-    return $result;
51
+	$result = array();
52
+	foreach ($array as $subarray) {
53
+		$subarray = (array) $subarray;
54
+		if (!isset($subarray[$column])) {
55
+			continue;
56
+		}
57
+		$result[] = $subarray[$column];
58
+	}
59
+	return $result;
60 60
 }
61 61
 
62 62
 /**
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
  */
65 65
 function glsr_calculate_ratings()
66 66
 {
67
-    glsr('Database\CountsManager')->updateAll();
68
-    glsr_log()->notice(__('Recalculated rating counts.', 'site-reviews'));
67
+	glsr('Database\CountsManager')->updateAll();
68
+	glsr_log()->notice(__('Recalculated rating counts.', 'site-reviews'));
69 69
 }
70 70
 
71 71
 /**
@@ -73,10 +73,10 @@  discard block
 block discarded – undo
73 73
  */
74 74
 function glsr_create_review($reviewValues = array())
75 75
 {
76
-    $review = new \GeminiLabs\SiteReviews\Commands\CreateReview(
77
-        \GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($reviewValues)
78
-    );
79
-    return glsr('Database\ReviewManager')->create($review);
76
+	$review = new \GeminiLabs\SiteReviews\Commands\CreateReview(
77
+		\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($reviewValues)
78
+	);
79
+	return glsr('Database\ReviewManager')->create($review);
80 80
 }
81 81
 
82 82
 /**
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
  */
85 85
 function glsr_current_screen()
86 86
 {
87
-    if (function_exists('get_current_screen')) {
88
-        $screen = get_current_screen();
89
-    }
90
-    return empty($screen)
91
-        ? (object) array_fill_keys(['base', 'id', 'post_type'], null)
92
-        : $screen;
87
+	if (function_exists('get_current_screen')) {
88
+		$screen = get_current_screen();
89
+	}
90
+	return empty($screen)
91
+		? (object) array_fill_keys(['base', 'id', 'post_type'], null)
92
+		: $screen;
93 93
 }
94 94
 
95 95
 /**
@@ -98,16 +98,16 @@  discard block
 block discarded – undo
98 98
  */
99 99
 function glsr_debug(...$vars)
100 100
 {
101
-    if (1 == count($vars)) {
102
-        $value = htmlspecialchars(print_r($vars[0], true), ENT_QUOTES, 'UTF-8');
103
-        printf('<div class="glsr-debug"><pre>%s</pre></div>', $value);
104
-    } else {
105
-        echo '<div class="glsr-debug-group">';
106
-        foreach ($vars as $var) {
107
-            glsr_debug($var);
108
-        }
109
-        echo '</div>';
110
-    }
101
+	if (1 == count($vars)) {
102
+		$value = htmlspecialchars(print_r($vars[0], true), ENT_QUOTES, 'UTF-8');
103
+		printf('<div class="glsr-debug"><pre>%s</pre></div>', $value);
104
+	} else {
105
+		echo '<div class="glsr-debug-group">';
106
+		foreach ($vars as $var) {
107
+			glsr_debug($var);
108
+		}
109
+		echo '</div>';
110
+	}
111 111
 }
112 112
 
113 113
 /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
  */
119 119
 function glsr_get($array, $path = '', $fallback = '')
120 120
 {
121
-    return \GeminiLabs\SiteReviews\Helpers\Arr::get($array, $path, $fallback);
121
+	return \GeminiLabs\SiteReviews\Helpers\Arr::get($array, $path, $fallback);
122 122
 }
123 123
 
124 124
 /**
@@ -129,9 +129,9 @@  discard block
 block discarded – undo
129 129
  */
130 130
 function glsr_get_option($path = '', $fallback = '', $cast = '')
131 131
 {
132
-    return is_string($path)
133
-        ? glsr('Database\OptionManager')->get(\GeminiLabs\SiteReviews\Helpers\Str::prefix('settings.', $path), $fallback, $cast)
134
-        : $fallback;
132
+	return is_string($path)
133
+		? glsr('Database\OptionManager')->get(\GeminiLabs\SiteReviews\Helpers\Str::prefix('settings.', $path), $fallback, $cast)
134
+		: $fallback;
135 135
 }
136 136
 
137 137
 /**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
  */
140 140
 function glsr_get_options()
141 141
 {
142
-    return glsr('Database\OptionManager')->get('settings');
142
+	return glsr('Database\OptionManager')->get('settings');
143 143
 }
144 144
 
145 145
 /**
@@ -148,13 +148,13 @@  discard block
 block discarded – undo
148 148
  */
149 149
 function glsr_get_review($post)
150 150
 {
151
-    if (is_numeric($post)) {
152
-        $post = get_post($post);
153
-    }
154
-    if (!($post instanceof WP_Post)) {
155
-        $post = new WP_Post((object) []);
156
-    }
157
-    return glsr('Database\ReviewManager')->single($post);
151
+	if (is_numeric($post)) {
152
+		$post = get_post($post);
153
+	}
154
+	if (!($post instanceof WP_Post)) {
155
+		$post = new WP_Post((object) []);
156
+	}
157
+	return glsr('Database\ReviewManager')->single($post);
158 158
 }
159 159
 
160 160
 /**
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function glsr_get_reviews($args = array())
164 164
 {
165
-    return glsr('Database\ReviewManager')->get(\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($args));
165
+	return glsr('Database\ReviewManager')->get(\GeminiLabs\SiteReviews\Helpers\Arr::consolidateArray($args));
166 166
 }
167 167
 
168 168
 /**
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
  */
171 171
 function glsr_log()
172 172
 {
173
-    $args = func_get_args();
174
-    $console = glsr('Modules\Console');
175
-    if ($value = \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '0')) {
176
-        return $console->debug($value, \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '1', []));
177
-    }
178
-    return $console;
173
+	$args = func_get_args();
174
+	$console = glsr('Modules\Console');
175
+	if ($value = \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '0')) {
176
+		return $console->debug($value, \GeminiLabs\SiteReviews\Helpers\Arr::get($args, '1', []));
177
+	}
178
+	return $console;
179 179
 }
180 180
 
181 181
 /**
@@ -183,5 +183,5 @@  discard block
 block discarded – undo
183 183
  */
184 184
 function glsr_star_rating($rating)
185 185
 {
186
-    return glsr('Modules\Html\Partial')->build('star-rating', ['rating' => $rating]);
186
+	return glsr('Modules\Html\Partial')->build('star-rating', ['rating' => $rating]);
187 187
 }
Please login to merge, or discard this patch.
plugin/Commands/CreateReview.php 1 patch
Indentation   +133 added lines, -133 removed lines patch added patch discarded remove patch
@@ -6,145 +6,145 @@
 block discarded – undo
6 6
 
7 7
 class CreateReview
8 8
 {
9
-    public $ajax_request;
10
-    public $assigned_to;
11
-    public $author;
12
-    public $avatar;
13
-    public $blacklisted;
14
-    public $category;
15
-    public $content;
16
-    public $custom;
17
-    public $date;
18
-    public $email;
19
-    public $form_id;
20
-    public $ip_address;
21
-    public $post_id;
22
-    public $rating;
23
-    public $referer;
24
-    public $request;
25
-    public $response;
26
-    public $terms;
27
-    public $title;
28
-    public $url;
9
+	public $ajax_request;
10
+	public $assigned_to;
11
+	public $author;
12
+	public $avatar;
13
+	public $blacklisted;
14
+	public $category;
15
+	public $content;
16
+	public $custom;
17
+	public $date;
18
+	public $email;
19
+	public $form_id;
20
+	public $ip_address;
21
+	public $post_id;
22
+	public $rating;
23
+	public $referer;
24
+	public $request;
25
+	public $response;
26
+	public $terms;
27
+	public $title;
28
+	public $url;
29 29
 
30
-    public function __construct($input)
31
-    {
32
-        $this->request = $input;
33
-        $this->ajax_request = isset($input['_ajax_request']);
34
-        $this->assigned_to = $this->getNumeric('assign_to');
35
-        $this->author = sanitize_text_field($this->getUser('name'));
36
-        $this->avatar = $this->getAvatar();
37
-        $this->blacklisted = isset($input['blacklisted']);
38
-        $this->category = $this->getCategory();
39
-        $this->content = sanitize_textarea_field($this->get('content'));
40
-        $this->custom = $this->getCustom();
41
-        $this->date = $this->getDate('date');
42
-        $this->email = sanitize_email($this->getUser('email'));
43
-        $this->form_id = sanitize_key($this->get('form_id'));
44
-        $this->ip_address = $this->get('ip_address');
45
-        $this->post_id = intval($this->get('_post_id'));
46
-        $this->rating = intval($this->get('rating'));
47
-        $this->referer = sanitize_text_field($this->get('_referer'));
48
-        $this->response = sanitize_textarea_field($this->get('response'));
49
-        $this->terms = !empty($input['terms']);
50
-        $this->title = sanitize_text_field($this->get('title'));
51
-        $this->url = esc_url_raw(sanitize_text_field($this->get('url')));
52
-    }
30
+	public function __construct($input)
31
+	{
32
+		$this->request = $input;
33
+		$this->ajax_request = isset($input['_ajax_request']);
34
+		$this->assigned_to = $this->getNumeric('assign_to');
35
+		$this->author = sanitize_text_field($this->getUser('name'));
36
+		$this->avatar = $this->getAvatar();
37
+		$this->blacklisted = isset($input['blacklisted']);
38
+		$this->category = $this->getCategory();
39
+		$this->content = sanitize_textarea_field($this->get('content'));
40
+		$this->custom = $this->getCustom();
41
+		$this->date = $this->getDate('date');
42
+		$this->email = sanitize_email($this->getUser('email'));
43
+		$this->form_id = sanitize_key($this->get('form_id'));
44
+		$this->ip_address = $this->get('ip_address');
45
+		$this->post_id = intval($this->get('_post_id'));
46
+		$this->rating = intval($this->get('rating'));
47
+		$this->referer = sanitize_text_field($this->get('_referer'));
48
+		$this->response = sanitize_textarea_field($this->get('response'));
49
+		$this->terms = !empty($input['terms']);
50
+		$this->title = sanitize_text_field($this->get('title'));
51
+		$this->url = esc_url_raw(sanitize_text_field($this->get('url')));
52
+	}
53 53
 
54
-    /**
55
-     * @param string $key
56
-     * @return string
57
-     */
58
-    protected function get($key)
59
-    {
60
-        return (string) Arr::get($this->request, $key);
61
-    }
54
+	/**
55
+	 * @param string $key
56
+	 * @return string
57
+	 */
58
+	protected function get($key)
59
+	{
60
+		return (string) Arr::get($this->request, $key);
61
+	}
62 62
 
63
-    /**
64
-     * @return string
65
-     */
66
-    protected function getAvatar()
67
-    {
68
-        $avatar = $this->get('avatar');
69
-        return !filter_var($avatar, FILTER_VALIDATE_URL, FILTER_FLAG_PATH_REQUIRED)
70
-            ? (string) get_avatar_url($this->get('email'))
71
-            : $avatar;
72
-    }
63
+	/**
64
+	 * @return string
65
+	 */
66
+	protected function getAvatar()
67
+	{
68
+		$avatar = $this->get('avatar');
69
+		return !filter_var($avatar, FILTER_VALIDATE_URL, FILTER_FLAG_PATH_REQUIRED)
70
+			? (string) get_avatar_url($this->get('email'))
71
+			: $avatar;
72
+	}
73 73
 
74
-    /**
75
-     * @return string
76
-     */
77
-    protected function getCategory()
78
-    {
79
-        $categories = Arr::convertStringToArray($this->get('category'));
80
-        return sanitize_key(Arr::get($categories, 0));
81
-    }
74
+	/**
75
+	 * @return string
76
+	 */
77
+	protected function getCategory()
78
+	{
79
+		$categories = Arr::convertStringToArray($this->get('category'));
80
+		return sanitize_key(Arr::get($categories, 0));
81
+	}
82 82
 
83
-    /**
84
-     * @return array
85
-     */
86
-    protected function getCustom()
87
-    {
88
-        $unset = [
89
-            '_action', '_ajax_request', '_counter', '_nonce', '_post_id', '_recaptcha-token',
90
-            '_referer', 'assign_to', 'category', 'content', 'date', 'email', 'excluded', 'form_id',
91
-            'gotcha', 'ip_address', 'name', 'rating', 'response', 'terms', 'title', 'url',
92
-        ];
93
-        $unset = apply_filters('site-reviews/create/unset-keys-from-custom', $unset);
94
-        $custom = $this->request;
95
-        foreach ($unset as $key) {
96
-            unset($custom[$key]);
97
-        }
98
-        foreach ($custom as $key => $value) {
99
-            if (is_string($value)) {
100
-                $custom[$key] = sanitize_text_field($value);
101
-            }
102
-        }
103
-        return $custom;
104
-    }
83
+	/**
84
+	 * @return array
85
+	 */
86
+	protected function getCustom()
87
+	{
88
+		$unset = [
89
+			'_action', '_ajax_request', '_counter', '_nonce', '_post_id', '_recaptcha-token',
90
+			'_referer', 'assign_to', 'category', 'content', 'date', 'email', 'excluded', 'form_id',
91
+			'gotcha', 'ip_address', 'name', 'rating', 'response', 'terms', 'title', 'url',
92
+		];
93
+		$unset = apply_filters('site-reviews/create/unset-keys-from-custom', $unset);
94
+		$custom = $this->request;
95
+		foreach ($unset as $key) {
96
+			unset($custom[$key]);
97
+		}
98
+		foreach ($custom as $key => $value) {
99
+			if (is_string($value)) {
100
+				$custom[$key] = sanitize_text_field($value);
101
+			}
102
+		}
103
+		return $custom;
104
+	}
105 105
 
106
-    /**
107
-     * @param string $key
108
-     * @return string
109
-     */
110
-    protected function getDate($key)
111
-    {
112
-        $date = strtotime($this->get($key));
113
-        if (false === $date) {
114
-            $date = time();
115
-        }
116
-        return get_date_from_gmt(gmdate('Y-m-d H:i:s', $date));
117
-    }
106
+	/**
107
+	 * @param string $key
108
+	 * @return string
109
+	 */
110
+	protected function getDate($key)
111
+	{
112
+		$date = strtotime($this->get($key));
113
+		if (false === $date) {
114
+			$date = time();
115
+		}
116
+		return get_date_from_gmt(gmdate('Y-m-d H:i:s', $date));
117
+	}
118 118
 
119
-    /**
120
-     * @param string $key
121
-     * @return string
122
-     */
123
-    protected function getUser($key)
124
-    {
125
-        $value = $this->get($key);
126
-        if (empty($value)) {
127
-            $user = wp_get_current_user();
128
-            $userValues = [
129
-                'email' => 'user_email',
130
-                'name' => 'display_name',
131
-            ];
132
-            if ($user->exists() && array_key_exists($key, $userValues)) {
133
-                return $user->{$userValues[$key]};
134
-            }
135
-        }
136
-        return $value;
137
-    }
119
+	/**
120
+	 * @param string $key
121
+	 * @return string
122
+	 */
123
+	protected function getUser($key)
124
+	{
125
+		$value = $this->get($key);
126
+		if (empty($value)) {
127
+			$user = wp_get_current_user();
128
+			$userValues = [
129
+				'email' => 'user_email',
130
+				'name' => 'display_name',
131
+			];
132
+			if ($user->exists() && array_key_exists($key, $userValues)) {
133
+				return $user->{$userValues[$key]};
134
+			}
135
+		}
136
+		return $value;
137
+	}
138 138
 
139
-    /**
140
-     * @param string $key
141
-     * @return string
142
-     */
143
-    protected function getNumeric($key)
144
-    {
145
-        $value = $this->get($key);
146
-        return is_numeric($value)
147
-            ? $value
148
-            : '';
149
-    }
139
+	/**
140
+	 * @param string $key
141
+	 * @return string
142
+	 */
143
+	protected function getNumeric($key)
144
+	{
145
+		$value = $this->get($key);
146
+		return is_numeric($value)
147
+			? $value
148
+			: '';
149
+	}
150 150
 }
Please login to merge, or discard this patch.
plugin/Widgets/Widget.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -7,39 +7,39 @@
 block discarded – undo
7 7
 
8 8
 abstract class Widget extends WP_Widget
9 9
 {
10
-    /**
11
-     * @var array
12
-     */
13
-    protected $widgetArgs;
10
+	/**
11
+	 * @var array
12
+	 */
13
+	protected $widgetArgs;
14 14
 
15
-    /**
16
-     * @param string $tag
17
-     * @return void
18
-     */
19
-    protected function renderField($tag, array $args = [])
20
-    {
21
-        $args = $this->normalizeFieldAttributes($tag, $args);
22
-        $field = glsr(Builder::class)->$tag($args['name'], $args);
23
-        echo glsr(Builder::class)->div($field, [
24
-            'class' => 'glsr-field',
25
-        ]);
26
-    }
15
+	/**
16
+	 * @param string $tag
17
+	 * @return void
18
+	 */
19
+	protected function renderField($tag, array $args = [])
20
+	{
21
+		$args = $this->normalizeFieldAttributes($tag, $args);
22
+		$field = glsr(Builder::class)->$tag($args['name'], $args);
23
+		echo glsr(Builder::class)->div($field, [
24
+			'class' => 'glsr-field',
25
+		]);
26
+	}
27 27
 
28
-    /**
29
-     * @param string $tag
30
-     * @return array
31
-     */
32
-    protected function normalizeFieldAttributes($tag, array $args)
33
-    {
34
-        if (empty($args['value'])) {
35
-            $args['value'] = $this->widgetArgs[$args['name']];
36
-        }
37
-        if (empty($this->widgetArgs['options']) && in_array($tag, ['checkbox', 'radio'])) {
38
-            $args['checked'] = in_array($args['value'], (array) $this->widgetArgs[$args['name']]);
39
-        }
40
-        $args['id'] = $this->get_field_id($args['name']);
41
-        $args['name'] = $this->get_field_name($args['name']);
42
-        $args['is_widget'] = true;
43
-        return $args;
44
-    }
28
+	/**
29
+	 * @param string $tag
30
+	 * @return array
31
+	 */
32
+	protected function normalizeFieldAttributes($tag, array $args)
33
+	{
34
+		if (empty($args['value'])) {
35
+			$args['value'] = $this->widgetArgs[$args['name']];
36
+		}
37
+		if (empty($this->widgetArgs['options']) && in_array($tag, ['checkbox', 'radio'])) {
38
+			$args['checked'] = in_array($args['value'], (array) $this->widgetArgs[$args['name']]);
39
+		}
40
+		$args['id'] = $this->get_field_id($args['name']);
41
+		$args['name'] = $this->get_field_name($args['name']);
42
+		$args['is_widget'] = true;
43
+		return $args;
44
+	}
45 45
 }
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsWidget.php 1 patch
Indentation   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -8,103 +8,103 @@
 block discarded – undo
8 8
 
9 9
 class SiteReviewsWidget extends Widget
10 10
 {
11
-    public function __construct()
12
-    {
13
-        $idBase = Application::ID.'_site-reviews';
14
-        $name = __('Recent Reviews', 'site-reviews');
15
-        $widgetOptions = [
16
-            'class' => 'glsr-widget glsr-widget-site-reviews',
17
-            'description' => __('Site Reviews: Display your recent reviews.', 'site-reviews'),
18
-        ];
19
-        parent::__construct($idBase, $name, $widgetOptions);
20
-    }
11
+	public function __construct()
12
+	{
13
+		$idBase = Application::ID.'_site-reviews';
14
+		$name = __('Recent Reviews', 'site-reviews');
15
+		$widgetOptions = [
16
+			'class' => 'glsr-widget glsr-widget-site-reviews',
17
+			'description' => __('Site Reviews: Display your recent reviews.', 'site-reviews'),
18
+		];
19
+		parent::__construct($idBase, $name, $widgetOptions);
20
+	}
21 21
 
22
-    /**
23
-     * @param array $instance
24
-     * @return void
25
-     */
26
-    public function form($instance)
27
-    {
28
-        $this->widgetArgs = glsr(SiteReviewsShortcode::class)->normalizeAtts($instance);
29
-        $terms = glsr(Database::class)->getTerms();
30
-        $this->renderField('text', [
31
-            'class' => 'widefat',
32
-            'label' => __('Title', 'site-reviews'),
33
-            'name' => 'title',
34
-        ]);
35
-        $this->renderField('number', [
36
-            'class' => 'small-text',
37
-            'default' => 10,
38
-            'label' => __('How many reviews would you like to display?', 'site-reviews'),
39
-            'max' => 100,
40
-            'name' => 'display',
41
-        ]);
42
-        $this->renderField('select', [
43
-            'label' => __('What is the minimum rating to display?', 'site-reviews'),
44
-            'name' => 'rating',
45
-            'options' => [
46
-                '5' => sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5),
47
-                '4' => sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4),
48
-                '3' => sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3),
49
-                '2' => sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2),
50
-                '1' => sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1),
51
-            ],
52
-        ]);
53
-        if (count(glsr()->reviewTypes) > 1) {
54
-            $this->renderField('select', [
55
-                'class' => 'widefat',
56
-                'label' => __('Which type of review would you like to display?', 'site-reviews'),
57
-                'name' => 'type',
58
-                'options' => ['' => __('All Reviews', 'site-reviews')] + glsr()->reviewTypes,
59
-            ]);
60
-        }
61
-        if (!empty($terms)) {
62
-            $this->renderField('select', [
63
-                'class' => 'widefat',
64
-                'label' => __('Limit reviews to this category', 'site-reviews'),
65
-                'name' => 'category',
66
-                'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
67
-            ]);
68
-        }
69
-        $this->renderField('text', [
70
-            'class' => 'widefat',
71
-            'default' => '',
72
-            'description' => sprintf(__("Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews'), '<code>post_id</code>'),
73
-            'label' => __('Limit reviews to those assigned to this page/post ID', 'site-reviews'),
74
-            'name' => 'assigned_to',
75
-        ]);
76
-        $this->renderField('text', [
77
-            'class' => 'widefat',
78
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
79
-            'name' => 'class',
80
-        ]);
81
-        $this->renderField('checkbox', [
82
-            'name' => 'hide',
83
-            'options' => glsr(SiteReviewsShortcode::class)->getHideOptions(),
84
-        ]);
85
-    }
22
+	/**
23
+	 * @param array $instance
24
+	 * @return void
25
+	 */
26
+	public function form($instance)
27
+	{
28
+		$this->widgetArgs = glsr(SiteReviewsShortcode::class)->normalizeAtts($instance);
29
+		$terms = glsr(Database::class)->getTerms();
30
+		$this->renderField('text', [
31
+			'class' => 'widefat',
32
+			'label' => __('Title', 'site-reviews'),
33
+			'name' => 'title',
34
+		]);
35
+		$this->renderField('number', [
36
+			'class' => 'small-text',
37
+			'default' => 10,
38
+			'label' => __('How many reviews would you like to display?', 'site-reviews'),
39
+			'max' => 100,
40
+			'name' => 'display',
41
+		]);
42
+		$this->renderField('select', [
43
+			'label' => __('What is the minimum rating to display?', 'site-reviews'),
44
+			'name' => 'rating',
45
+			'options' => [
46
+				'5' => sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5),
47
+				'4' => sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4),
48
+				'3' => sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3),
49
+				'2' => sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2),
50
+				'1' => sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1),
51
+			],
52
+		]);
53
+		if (count(glsr()->reviewTypes) > 1) {
54
+			$this->renderField('select', [
55
+				'class' => 'widefat',
56
+				'label' => __('Which type of review would you like to display?', 'site-reviews'),
57
+				'name' => 'type',
58
+				'options' => ['' => __('All Reviews', 'site-reviews')] + glsr()->reviewTypes,
59
+			]);
60
+		}
61
+		if (!empty($terms)) {
62
+			$this->renderField('select', [
63
+				'class' => 'widefat',
64
+				'label' => __('Limit reviews to this category', 'site-reviews'),
65
+				'name' => 'category',
66
+				'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
67
+			]);
68
+		}
69
+		$this->renderField('text', [
70
+			'class' => 'widefat',
71
+			'default' => '',
72
+			'description' => sprintf(__("Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews'), '<code>post_id</code>'),
73
+			'label' => __('Limit reviews to those assigned to this page/post ID', 'site-reviews'),
74
+			'name' => 'assigned_to',
75
+		]);
76
+		$this->renderField('text', [
77
+			'class' => 'widefat',
78
+			'label' => __('Enter any custom CSS classes here', 'site-reviews'),
79
+			'name' => 'class',
80
+		]);
81
+		$this->renderField('checkbox', [
82
+			'name' => 'hide',
83
+			'options' => glsr(SiteReviewsShortcode::class)->getHideOptions(),
84
+		]);
85
+	}
86 86
 
87
-    /**
88
-     * @param array $newInstance
89
-     * @param array $oldInstance
90
-     * @return array
91
-     */
92
-    public function update($newInstance, $oldInstance)
93
-    {
94
-        if (!is_numeric($newInstance['display'])) {
95
-            $newInstance['display'] = 10;
96
-        }
97
-        $newInstance['display'] = min(50, max(0, intval($newInstance['display'])));
98
-        return parent::update($newInstance, $oldInstance);
99
-    }
87
+	/**
88
+	 * @param array $newInstance
89
+	 * @param array $oldInstance
90
+	 * @return array
91
+	 */
92
+	public function update($newInstance, $oldInstance)
93
+	{
94
+		if (!is_numeric($newInstance['display'])) {
95
+			$newInstance['display'] = 10;
96
+		}
97
+		$newInstance['display'] = min(50, max(0, intval($newInstance['display'])));
98
+		return parent::update($newInstance, $oldInstance);
99
+	}
100 100
 
101
-    /**
102
-     * @param array $args
103
-     * @param array $instance
104
-     * @return void
105
-     */
106
-    public function widget($args, $instance)
107
-    {
108
-        echo glsr(SiteReviewsShortcode::class)->build($instance, $args, 'widget');
109
-    }
101
+	/**
102
+	 * @param array $args
103
+	 * @param array $instance
104
+	 * @return void
105
+	 */
106
+	public function widget($args, $instance)
107
+	{
108
+		echo glsr(SiteReviewsShortcode::class)->build($instance, $args, 'widget');
109
+	}
110 110
 }
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsFormWidget.php 1 patch
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -8,66 +8,66 @@
 block discarded – undo
8 8
 
9 9
 class SiteReviewsFormWidget extends Widget
10 10
 {
11
-    public function __construct()
12
-    {
13
-        $idBase = Application::ID.'_site-reviews-form';
14
-        $name = __('Submit a Review', 'site-reviews');
15
-        $widgetOptions = [
16
-            'classname' => 'glsr-widget glsr-widget-site-reviews-form',
17
-            'description' => __('Site Reviews: Display a form to submit reviews.', 'site-reviews'),
18
-        ];
19
-        parent::__construct($idBase, $name, $widgetOptions);
20
-    }
11
+	public function __construct()
12
+	{
13
+		$idBase = Application::ID.'_site-reviews-form';
14
+		$name = __('Submit a Review', 'site-reviews');
15
+		$widgetOptions = [
16
+			'classname' => 'glsr-widget glsr-widget-site-reviews-form',
17
+			'description' => __('Site Reviews: Display a form to submit reviews.', 'site-reviews'),
18
+		];
19
+		parent::__construct($idBase, $name, $widgetOptions);
20
+	}
21 21
 
22
-    /**
23
-     * @param array $instance
24
-     * @return void
25
-     */
26
-    public function form($instance)
27
-    {
28
-        $this->widgetArgs = glsr(SiteReviewsFormShortcode::class)->normalizeAtts($instance);
29
-        $terms = glsr(Database::class)->getTerms();
30
-        $this->renderField('text', [
31
-            'class' => 'widefat',
32
-            'label' => __('Title', 'site-reviews'),
33
-            'name' => 'title',
34
-        ]);
35
-        $this->renderField('textarea', [
36
-            'class' => 'widefat',
37
-            'label' => __('Description', 'site-reviews'),
38
-            'name' => 'description',
39
-        ]);
40
-        $this->renderField('select', [
41
-            'class' => 'widefat',
42
-            'label' => __('Automatically assign a category', 'site-reviews'),
43
-            'name' => 'category',
44
-            'options' => ['' => __('Do not assign a category', 'site-reviews')] + $terms,
45
-        ]);
46
-        $this->renderField('text', [
47
-            'class' => 'widefat',
48
-            'default' => '',
49
-            'description' => sprintf(__('You may also enter %s to assign to the current post.', 'site-reviews'), '<code>post_id</code>'),
50
-            'label' => __('Assign reviews to a custom page/post ID', 'site-reviews'),
51
-            'name' => 'assign_to',
52
-        ]);
53
-        $this->renderField('text', [
54
-            'class' => 'widefat',
55
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
56
-            'name' => 'class',
57
-        ]);
58
-        $this->renderField('checkbox', [
59
-            'name' => 'hide',
60
-            'options' => glsr(SiteReviewsFormShortcode::class)->getHideOptions(),
61
-        ]);
62
-    }
22
+	/**
23
+	 * @param array $instance
24
+	 * @return void
25
+	 */
26
+	public function form($instance)
27
+	{
28
+		$this->widgetArgs = glsr(SiteReviewsFormShortcode::class)->normalizeAtts($instance);
29
+		$terms = glsr(Database::class)->getTerms();
30
+		$this->renderField('text', [
31
+			'class' => 'widefat',
32
+			'label' => __('Title', 'site-reviews'),
33
+			'name' => 'title',
34
+		]);
35
+		$this->renderField('textarea', [
36
+			'class' => 'widefat',
37
+			'label' => __('Description', 'site-reviews'),
38
+			'name' => 'description',
39
+		]);
40
+		$this->renderField('select', [
41
+			'class' => 'widefat',
42
+			'label' => __('Automatically assign a category', 'site-reviews'),
43
+			'name' => 'category',
44
+			'options' => ['' => __('Do not assign a category', 'site-reviews')] + $terms,
45
+		]);
46
+		$this->renderField('text', [
47
+			'class' => 'widefat',
48
+			'default' => '',
49
+			'description' => sprintf(__('You may also enter %s to assign to the current post.', 'site-reviews'), '<code>post_id</code>'),
50
+			'label' => __('Assign reviews to a custom page/post ID', 'site-reviews'),
51
+			'name' => 'assign_to',
52
+		]);
53
+		$this->renderField('text', [
54
+			'class' => 'widefat',
55
+			'label' => __('Enter any custom CSS classes here', 'site-reviews'),
56
+			'name' => 'class',
57
+		]);
58
+		$this->renderField('checkbox', [
59
+			'name' => 'hide',
60
+			'options' => glsr(SiteReviewsFormShortcode::class)->getHideOptions(),
61
+		]);
62
+	}
63 63
 
64
-    /**
65
-     * @param array $args
66
-     * @param array $instance
67
-     * @return void
68
-     */
69
-    public function widget($args, $instance)
70
-    {
71
-        echo glsr(SiteReviewsFormShortcode::class)->build($instance, $args, 'widget');
72
-    }
64
+	/**
65
+	 * @param array $args
66
+	 * @param array $instance
67
+	 * @return void
68
+	 */
69
+	public function widget($args, $instance)
70
+	{
71
+		echo glsr(SiteReviewsFormShortcode::class)->build($instance, $args, 'widget');
72
+	}
73 73
 }
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsSummaryWidget.php 1 patch
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -8,71 +8,71 @@
 block discarded – undo
8 8
 
9 9
 class SiteReviewsSummaryWidget extends Widget
10 10
 {
11
-    public function __construct()
12
-    {
13
-        $idBase = Application::ID.'_site-reviews-summary';
14
-        $name = __('Summary of Reviews', 'site-reviews');
15
-        $widgetOptions = [
16
-            'classname' => 'glsr-widget glsr-widget-site-reviews-summary',
17
-            'description' => __('Site Reviews: Display a summary of your reviews.', 'site-reviews'),
18
-        ];
19
-        parent::__construct($idBase, $name, $widgetOptions);
20
-    }
11
+	public function __construct()
12
+	{
13
+		$idBase = Application::ID.'_site-reviews-summary';
14
+		$name = __('Summary of Reviews', 'site-reviews');
15
+		$widgetOptions = [
16
+			'classname' => 'glsr-widget glsr-widget-site-reviews-summary',
17
+			'description' => __('Site Reviews: Display a summary of your reviews.', 'site-reviews'),
18
+		];
19
+		parent::__construct($idBase, $name, $widgetOptions);
20
+	}
21 21
 
22
-    /**
23
-     * @param array $instance
24
-     * @return void
25
-     */
26
-    public function form($instance)
27
-    {
28
-        $this->widgetArgs = glsr(SiteReviewsSummaryShortcode::class)->normalizeAtts($instance);
29
-        $terms = glsr(Database::class)->getTerms();
30
-        $this->renderField('text', [
31
-            'class' => 'widefat',
32
-            'label' => __('Title', 'site-reviews'),
33
-            'name' => 'title',
34
-        ]);
35
-        if (count(glsr()->reviewTypes) > 1) {
36
-            $this->renderField('select', [
37
-                'class' => 'widefat',
38
-                'label' => __('Which type of review would you like to use?', 'site-reviews'),
39
-                'name' => 'type',
40
-                'options' => ['' => __('All review types', 'site-reviews')] + glsr()->reviewTypes,
41
-            ]);
42
-        }
43
-        if (!empty($terms)) {
44
-            $this->renderField('select', [
45
-                'class' => 'widefat',
46
-                'label' => __('Limit summary to this category', 'site-reviews'),
47
-                'name' => 'category',
48
-                'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
49
-            ]);
50
-        }
51
-        $this->renderField('text', [
52
-            'class' => 'widefat',
53
-            'default' => '',
54
-            'description' => sprintf(__("Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews'), '<code>post_id</code>'),
55
-            'label' => __('Limit summary to reviews assigned to a page/post ID', 'site-reviews'),
56
-            'name' => 'assigned_to',
57
-        ]);
58
-        $this->renderField('text', [
59
-            'class' => 'widefat',
60
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
61
-            'name' => 'class',
62
-        ]);
63
-        $this->renderField('checkbox', [
64
-            'name' => 'hide',
65
-            'options' => glsr(SiteReviewsSummaryShortcode::class)->getHideOptions(),
66
-        ]);
67
-    }
22
+	/**
23
+	 * @param array $instance
24
+	 * @return void
25
+	 */
26
+	public function form($instance)
27
+	{
28
+		$this->widgetArgs = glsr(SiteReviewsSummaryShortcode::class)->normalizeAtts($instance);
29
+		$terms = glsr(Database::class)->getTerms();
30
+		$this->renderField('text', [
31
+			'class' => 'widefat',
32
+			'label' => __('Title', 'site-reviews'),
33
+			'name' => 'title',
34
+		]);
35
+		if (count(glsr()->reviewTypes) > 1) {
36
+			$this->renderField('select', [
37
+				'class' => 'widefat',
38
+				'label' => __('Which type of review would you like to use?', 'site-reviews'),
39
+				'name' => 'type',
40
+				'options' => ['' => __('All review types', 'site-reviews')] + glsr()->reviewTypes,
41
+			]);
42
+		}
43
+		if (!empty($terms)) {
44
+			$this->renderField('select', [
45
+				'class' => 'widefat',
46
+				'label' => __('Limit summary to this category', 'site-reviews'),
47
+				'name' => 'category',
48
+				'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
49
+			]);
50
+		}
51
+		$this->renderField('text', [
52
+			'class' => 'widefat',
53
+			'default' => '',
54
+			'description' => sprintf(__("Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews'), '<code>post_id</code>'),
55
+			'label' => __('Limit summary to reviews assigned to a page/post ID', 'site-reviews'),
56
+			'name' => 'assigned_to',
57
+		]);
58
+		$this->renderField('text', [
59
+			'class' => 'widefat',
60
+			'label' => __('Enter any custom CSS classes here', 'site-reviews'),
61
+			'name' => 'class',
62
+		]);
63
+		$this->renderField('checkbox', [
64
+			'name' => 'hide',
65
+			'options' => glsr(SiteReviewsSummaryShortcode::class)->getHideOptions(),
66
+		]);
67
+	}
68 68
 
69
-    /**
70
-     * @param array $args
71
-     * @param array $instance
72
-     * @return void
73
-     */
74
-    public function widget($args, $instance)
75
-    {
76
-        echo glsr(SiteReviewsSummaryShortcode::class)->build($instance, $args, 'widget');
77
-    }
69
+	/**
70
+	 * @param array $args
71
+	 * @param array $instance
72
+	 * @return void
73
+	 */
74
+	public function widget($args, $instance)
75
+	{
76
+		echo glsr(SiteReviewsSummaryShortcode::class)->build($instance, $args, 'widget');
77
+	}
78 78
 }
Please login to merge, or discard this patch.