Passed
Push — master ( e0a59a...75b6ac )
by Paul
06:30 queued 02:41
created
config/styles/materialize.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    'fields' => [
5
-        'select' => 'browser-default',
6
-        'textarea' => 'materialize-textarea',
7
-    ],
8
-    'pagination' => [
9
-        'type' => 'list',
10
-    ],
11
-    'validation' => [
12
-        'error_tag' => 'span',
13
-        'input_error_class' => 'wpcf7-not-valid',
14
-        'error_tag_class' => 'wpcf7-not-valid-tip',
15
-        'input_error_class' => 'wpcf7-not-valid',
16
-        'message_tag_class' => 'wpcf7-response-output',
17
-    ],
4
+	'fields' => [
5
+		'select' => 'browser-default',
6
+		'textarea' => 'materialize-textarea',
7
+	],
8
+	'pagination' => [
9
+		'type' => 'list',
10
+	],
11
+	'validation' => [
12
+		'error_tag' => 'span',
13
+		'input_error_class' => 'wpcf7-not-valid',
14
+		'error_tag_class' => 'wpcf7-not-valid-tip',
15
+		'input_error_class' => 'wpcf7-not-valid',
16
+		'message_tag_class' => 'wpcf7-response-output',
17
+	],
18 18
 ];
Please login to merge, or discard this patch.
config/styles/bootstrap_4.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    'fields' => [
5
-        'input' => 'form-control',
6
-        'input_checkbox' => 'form-check-input',
7
-        'input_radio' => 'form-check-input',
8
-        'label_checkbox' => 'form-check-label',
9
-        'label_radio' => 'form-check-label',
10
-        'select' => 'form-control',
11
-        'textarea' => 'form-control',
12
-    ],
13
-    'validation' => [
14
-        'error_tag' => 'div',
15
-        'error_tag_class' => 'invalid-feedback',
16
-        'field_class' => 'form-group',
17
-        'input_error_class' => 'is-invalid',
18
-    ],
4
+	'fields' => [
5
+		'input' => 'form-control',
6
+		'input_checkbox' => 'form-check-input',
7
+		'input_radio' => 'form-check-input',
8
+		'label_checkbox' => 'form-check-label',
9
+		'label_radio' => 'form-check-label',
10
+		'select' => 'form-control',
11
+		'textarea' => 'form-control',
12
+	],
13
+	'validation' => [
14
+		'error_tag' => 'div',
15
+		'error_tag_class' => 'invalid-feedback',
16
+		'field_class' => 'form-group',
17
+		'input_error_class' => 'is-invalid',
18
+	],
19 19
 ];
Please login to merge, or discard this patch.
config/inline-styles.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    ':star-empty' => glsr()->url('assets/images/star-empty.svg'),
5
-    ':star-error' => glsr()->url('assets/images/star-error.svg'),
6
-    ':star-full' => glsr()->url('assets/images/star-full.svg'),
7
-    ':star-half' => glsr()->url('assets/images/star-half.svg'),
4
+	':star-empty' => glsr()->url('assets/images/star-empty.svg'),
5
+	':star-error' => glsr()->url('assets/images/star-error.svg'),
6
+	':star-full' => glsr()->url('assets/images/star-full.svg'),
7
+	':star-half' => glsr()->url('assets/images/star-half.svg'),
8 8
 ];
Please login to merge, or discard this patch.
activate.php 1 patch
Indentation   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -8,137 +8,137 @@
 block discarded – undo
8 8
  */
9 9
 class GL_Plugin_Check_v3
10 10
 {
11
-    const MIN_PHP_VERSION = '5.6.0';
12
-    const MIN_WORDPRESS_VERSION = '4.7.0';
11
+	const MIN_PHP_VERSION = '5.6.0';
12
+	const MIN_WORDPRESS_VERSION = '4.7.0';
13 13
 
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $file;
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $file;
18 18
 
19
-    /**
20
-     * @var array
21
-     */
22
-    protected $versions;
19
+	/**
20
+	 * @var array
21
+	 */
22
+	protected $versions;
23 23
 
24
-    /**
25
-     * @param string $file
26
-     */
27
-    public function __construct($file, array $versions = array())
28
-    {
29
-        $this->file = realpath($file);
30
-        $this->versions = wp_parse_args($versions, array(
31
-            'php' => static::MIN_PHP_VERSION,
32
-            'wordpress' => static::MIN_WORDPRESS_VERSION,
33
-        ));
34
-    }
24
+	/**
25
+	 * @param string $file
26
+	 */
27
+	public function __construct($file, array $versions = array())
28
+	{
29
+		$this->file = realpath($file);
30
+		$this->versions = wp_parse_args($versions, array(
31
+			'php' => static::MIN_PHP_VERSION,
32
+			'wordpress' => static::MIN_WORDPRESS_VERSION,
33
+		));
34
+	}
35 35
 
36
-    /**
37
-     * @return bool
38
-     */
39
-    public function canProceed()
40
-    {
41
-        if ($this->isValid()) {
42
-            return true;
43
-        }
44
-        add_action('activated_plugin', array($this, 'deactivate'));
45
-        add_action('admin_notices', array($this, 'deactivate'));
46
-        return false;
47
-    }
36
+	/**
37
+	 * @return bool
38
+	 */
39
+	public function canProceed()
40
+	{
41
+		if ($this->isValid()) {
42
+			return true;
43
+		}
44
+		add_action('activated_plugin', array($this, 'deactivate'));
45
+		add_action('admin_notices', array($this, 'deactivate'));
46
+		return false;
47
+	}
48 48
 
49
-    /**
50
-     * @return bool
51
-     */
52
-    public function isPhpValid()
53
-    {
54
-        return !version_compare(PHP_VERSION, $this->versions['php'], '<');
55
-    }
49
+	/**
50
+	 * @return bool
51
+	 */
52
+	public function isPhpValid()
53
+	{
54
+		return !version_compare(PHP_VERSION, $this->versions['php'], '<');
55
+	}
56 56
 
57
-    /**
58
-     * @return bool
59
-     */
60
-    public function isValid()
61
-    {
62
-        return $this->isPhpValid() && $this->isWpValid();
63
-    }
57
+	/**
58
+	 * @return bool
59
+	 */
60
+	public function isValid()
61
+	{
62
+		return $this->isPhpValid() && $this->isWpValid();
63
+	}
64 64
 
65
-    /**
66
-     * @return bool
67
-     */
68
-    public function isWpValid()
69
-    {
70
-        global $wp_version;
71
-        return !version_compare($wp_version, $this->versions['wordpress'], '<');
72
-    }
65
+	/**
66
+	 * @return bool
67
+	 */
68
+	public function isWpValid()
69
+	{
70
+		global $wp_version;
71
+		return !version_compare($wp_version, $this->versions['wordpress'], '<');
72
+	}
73 73
 
74
-    /**
75
-     * @param string $plugin
76
-     * @return void
77
-     */
78
-    public function deactivate($plugin)
79
-    {
80
-        if ($this->isValid()) {
81
-            return;
82
-        }
83
-        $pluginSlug = plugin_basename($this->file);
84
-        if ($plugin == $pluginSlug) {
85
-            $this->redirect(); //exit
86
-        }
87
-        $pluginData = get_file_data($this->file, array('name' => 'Plugin Name'), 'plugin');
88
-        deactivate_plugins($pluginSlug);
89
-        $this->printNotice($pluginData['name']);
90
-    }
74
+	/**
75
+	 * @param string $plugin
76
+	 * @return void
77
+	 */
78
+	public function deactivate($plugin)
79
+	{
80
+		if ($this->isValid()) {
81
+			return;
82
+		}
83
+		$pluginSlug = plugin_basename($this->file);
84
+		if ($plugin == $pluginSlug) {
85
+			$this->redirect(); //exit
86
+		}
87
+		$pluginData = get_file_data($this->file, array('name' => 'Plugin Name'), 'plugin');
88
+		deactivate_plugins($pluginSlug);
89
+		$this->printNotice($pluginData['name']);
90
+	}
91 91
 
92
-    /**
93
-     * @return array
94
-     */
95
-    protected function getMessages()
96
-    {
97
-        return array(
98
-            __('The %s plugin was deactivated.', 'site-reviews'),
99
-            __('This plugin requires %s or greater in order to work properly.', 'site-reviews'),
100
-            __('Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'site-reviews'),
101
-            __('PHP version', 'site-reviews'),
102
-            __('WordPress version', 'site-reviews'),
103
-            __('Update WordPress', 'site-reviews'),
104
-            __('You can use the %s plugin to restore %s to the previous version.', 'site-reviews'),
105
-        );
106
-    }
92
+	/**
93
+	 * @return array
94
+	 */
95
+	protected function getMessages()
96
+	{
97
+		return array(
98
+			__('The %s plugin was deactivated.', 'site-reviews'),
99
+			__('This plugin requires %s or greater in order to work properly.', 'site-reviews'),
100
+			__('Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'site-reviews'),
101
+			__('PHP version', 'site-reviews'),
102
+			__('WordPress version', 'site-reviews'),
103
+			__('Update WordPress', 'site-reviews'),
104
+			__('You can use the %s plugin to restore %s to the previous version.', 'site-reviews'),
105
+		);
106
+	}
107 107
 
108
-    /**
109
-     * @param string $pluginName
110
-     * @return void
111
-     */
112
-    protected function printNotice($pluginName)
113
-    {
114
-        $noticeTemplate = '<div id="message" class="notice notice-error error is-dismissible"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>';
115
-        $messages = $this->getMessages();
116
-        $rollbackMessage = sprintf('<strong>'.$messages[6].'</strong>', '<a href="https://wordpress.org/plugins/wp-rollback/">WP Rollback</a>', $pluginName);
117
-        if (!$this->isPhpValid()) {
118
-            printf($noticeTemplate,
119
-                sprintf($messages[0], $pluginName),
120
-                sprintf($messages[1], $messages[3].' '.$this->versions['php']),
121
-                sprintf($messages[2], PHP_VERSION).'</p><p>'.$rollbackMessage
122
-            );
123
-        } elseif (!$this->isWpValid()) {
124
-            printf($noticeTemplate,
125
-                sprintf($messages[0], $pluginName),
126
-                sprintf($messages[1], $messages[4].' '.$this->versions['wordpress']),
127
-                $rollbackMessage.'</p><p>'.sprintf('<a href="%s">%s</a>', admin_url('update-core.php'), $messages[5])
128
-            );
129
-        }
130
-    }
108
+	/**
109
+	 * @param string $pluginName
110
+	 * @return void
111
+	 */
112
+	protected function printNotice($pluginName)
113
+	{
114
+		$noticeTemplate = '<div id="message" class="notice notice-error error is-dismissible"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>';
115
+		$messages = $this->getMessages();
116
+		$rollbackMessage = sprintf('<strong>'.$messages[6].'</strong>', '<a href="https://wordpress.org/plugins/wp-rollback/">WP Rollback</a>', $pluginName);
117
+		if (!$this->isPhpValid()) {
118
+			printf($noticeTemplate,
119
+				sprintf($messages[0], $pluginName),
120
+				sprintf($messages[1], $messages[3].' '.$this->versions['php']),
121
+				sprintf($messages[2], PHP_VERSION).'</p><p>'.$rollbackMessage
122
+			);
123
+		} elseif (!$this->isWpValid()) {
124
+			printf($noticeTemplate,
125
+				sprintf($messages[0], $pluginName),
126
+				sprintf($messages[1], $messages[4].' '.$this->versions['wordpress']),
127
+				$rollbackMessage.'</p><p>'.sprintf('<a href="%s">%s</a>', admin_url('update-core.php'), $messages[5])
128
+			);
129
+		}
130
+	}
131 131
 
132
-    /**
133
-     * @return void
134
-     */
135
-    protected function redirect()
136
-    {
137
-        wp_safe_redirect(self_admin_url(sprintf('plugins.php?plugin_status=%s&paged=%s&s=%s',
138
-            filter_input(INPUT_GET, 'plugin_status'),
139
-            filter_input(INPUT_GET, 'paged'),
140
-            filter_input(INPUT_GET, 's')
141
-        )));
142
-        exit;
143
-    }
132
+	/**
133
+	 * @return void
134
+	 */
135
+	protected function redirect()
136
+	{
137
+		wp_safe_redirect(self_admin_url(sprintf('plugins.php?plugin_status=%s&paged=%s&s=%s',
138
+			filter_input(INPUT_GET, 'plugin_status'),
139
+			filter_input(INPUT_GET, 'paged'),
140
+			filter_input(INPUT_GET, 's')
141
+		)));
142
+		exit;
143
+	}
144 144
 }
Please login to merge, or discard this patch.
plugin/Handlers/EnqueuePublicAssets.php 1 patch
Indentation   +136 added lines, -136 removed lines patch added patch discarded remove patch
@@ -9,148 +9,148 @@
 block discarded – undo
9 9
 
10 10
 class EnqueuePublicAssets
11 11
 {
12
-    /**
13
-     * @return void
14
-     */
15
-    public function handle()
16
-    {
17
-        $this->enqueueAssets();
18
-        $this->enqueuePolyfillService();
19
-        $this->enqueueRecaptchaScript();
20
-        $this->inlineScript();
21
-        $this->inlineStyles();
22
-    }
12
+	/**
13
+	 * @return void
14
+	 */
15
+	public function handle()
16
+	{
17
+		$this->enqueueAssets();
18
+		$this->enqueuePolyfillService();
19
+		$this->enqueueRecaptchaScript();
20
+		$this->inlineScript();
21
+		$this->inlineStyles();
22
+	}
23 23
 
24
-    /**
25
-     * @return void
26
-     */
27
-    public function enqueueAssets()
28
-    {
29
-        if (apply_filters('site-reviews/assets/css', true)) {
30
-            wp_enqueue_style(
31
-                Application::ID,
32
-                $this->getStylesheet(),
33
-                [],
34
-                glsr()->version
35
-            );
36
-        }
37
-        if (apply_filters('site-reviews/assets/js', true)) {
38
-            $dependencies = apply_filters('site-reviews/assets/polyfill', true)
39
-                ? [Application::ID.'/polyfill']
40
-                : [];
41
-            $dependencies = apply_filters('site-reviews/enqueue/public/dependencies', $dependencies);
42
-            wp_enqueue_script(
43
-                Application::ID,
44
-                glsr()->url('assets/scripts/'.Application::ID.'.js'),
45
-                $dependencies,
46
-                glsr()->version,
47
-                true
48
-            );
49
-        }
50
-    }
24
+	/**
25
+	 * @return void
26
+	 */
27
+	public function enqueueAssets()
28
+	{
29
+		if (apply_filters('site-reviews/assets/css', true)) {
30
+			wp_enqueue_style(
31
+				Application::ID,
32
+				$this->getStylesheet(),
33
+				[],
34
+				glsr()->version
35
+			);
36
+		}
37
+		if (apply_filters('site-reviews/assets/js', true)) {
38
+			$dependencies = apply_filters('site-reviews/assets/polyfill', true)
39
+				? [Application::ID.'/polyfill']
40
+				: [];
41
+			$dependencies = apply_filters('site-reviews/enqueue/public/dependencies', $dependencies);
42
+			wp_enqueue_script(
43
+				Application::ID,
44
+				glsr()->url('assets/scripts/'.Application::ID.'.js'),
45
+				$dependencies,
46
+				glsr()->version,
47
+				true
48
+			);
49
+		}
50
+	}
51 51
 
52
-    /**
53
-     * @return void
54
-     */
55
-    public function enqueuePolyfillService()
56
-    {
57
-        if (!apply_filters('site-reviews/assets/polyfill', true)) {
58
-            return;
59
-        }
60
-        wp_enqueue_script(Application::ID.'/polyfill', add_query_arg([
61
-            'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,XMLHttpRequest,MutationObserver',
62
-            'flags' => 'gated',
63
-        ], 'https://polyfill.io/v3/polyfill.min.js'));
64
-    }
52
+	/**
53
+	 * @return void
54
+	 */
55
+	public function enqueuePolyfillService()
56
+	{
57
+		if (!apply_filters('site-reviews/assets/polyfill', true)) {
58
+			return;
59
+		}
60
+		wp_enqueue_script(Application::ID.'/polyfill', add_query_arg([
61
+			'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,XMLHttpRequest,MutationObserver',
62
+			'flags' => 'gated',
63
+		], 'https://polyfill.io/v3/polyfill.min.js'));
64
+	}
65 65
 
66
-    /**
67
-     * @return void
68
-     */
69
-    public function enqueueRecaptchaScript()
70
-    {
71
-        // wpforms-recaptcha
72
-        // google-recaptcha
73
-        // nf-google-recaptcha
74
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
75
-            return;
76
-        }
77
-        $language = apply_filters('site-reviews/recaptcha/language', get_locale());
78
-        wp_enqueue_script(Application::ID.'/google-recaptcha', add_query_arg([
79
-            'hl' => $language,
80
-            'render' => 'explicit',
81
-        ], 'https://www.google.com/recaptcha/api.js'));
82
-    }
66
+	/**
67
+	 * @return void
68
+	 */
69
+	public function enqueueRecaptchaScript()
70
+	{
71
+		// wpforms-recaptcha
72
+		// google-recaptcha
73
+		// nf-google-recaptcha
74
+		if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
75
+			return;
76
+		}
77
+		$language = apply_filters('site-reviews/recaptcha/language', get_locale());
78
+		wp_enqueue_script(Application::ID.'/google-recaptcha', add_query_arg([
79
+			'hl' => $language,
80
+			'render' => 'explicit',
81
+		], 'https://www.google.com/recaptcha/api.js'));
82
+	}
83 83
 
84
-    /**
85
-     * @return void
86
-     */
87
-    public function inlineScript()
88
-    {
89
-        $variables = [
90
-            'action' => Application::PREFIX.'action',
91
-            'ajaxpagination' => $this->getFixedSelectorsForPagination(),
92
-            'ajaxurl' => admin_url('admin-ajax.php'),
93
-            'nameprefix' => Application::ID,
94
-            'validationconfig' => glsr(Style::class)->validation,
95
-            'validationstrings' => glsr(ValidationStringsDefaults::class)->defaults(),
96
-        ];
97
-        $variables = apply_filters('site-reviews/enqueue/public/localize', $variables);
98
-        wp_add_inline_script(Application::ID, $this->buildInlineScript($variables), 'before');
99
-    }
84
+	/**
85
+	 * @return void
86
+	 */
87
+	public function inlineScript()
88
+	{
89
+		$variables = [
90
+			'action' => Application::PREFIX.'action',
91
+			'ajaxpagination' => $this->getFixedSelectorsForPagination(),
92
+			'ajaxurl' => admin_url('admin-ajax.php'),
93
+			'nameprefix' => Application::ID,
94
+			'validationconfig' => glsr(Style::class)->validation,
95
+			'validationstrings' => glsr(ValidationStringsDefaults::class)->defaults(),
96
+		];
97
+		$variables = apply_filters('site-reviews/enqueue/public/localize', $variables);
98
+		wp_add_inline_script(Application::ID, $this->buildInlineScript($variables), 'before');
99
+	}
100 100
 
101
-    /**
102
-     * @return void
103
-     */
104
-    public function inlineStyles()
105
-    {
106
-        $inlineStylesheetPath = glsr()->path('assets/styles/inline-styles.css');
107
-        if (!apply_filters('site-reviews/assets/css', true)) {
108
-            return;
109
-        }
110
-        if (!file_exists($inlineStylesheetPath)) {
111
-            glsr_log()->error('Inline stylesheet is missing: '.$inlineStylesheetPath);
112
-            return;
113
-        }
114
-        $inlineStylesheetValues = glsr()->config('inline-styles');
115
-        $stylesheet = str_replace(
116
-            array_keys($inlineStylesheetValues),
117
-            array_values($inlineStylesheetValues),
118
-            file_get_contents($inlineStylesheetPath)
119
-        );
120
-        wp_add_inline_style(Application::ID, $stylesheet);
121
-    }
101
+	/**
102
+	 * @return void
103
+	 */
104
+	public function inlineStyles()
105
+	{
106
+		$inlineStylesheetPath = glsr()->path('assets/styles/inline-styles.css');
107
+		if (!apply_filters('site-reviews/assets/css', true)) {
108
+			return;
109
+		}
110
+		if (!file_exists($inlineStylesheetPath)) {
111
+			glsr_log()->error('Inline stylesheet is missing: '.$inlineStylesheetPath);
112
+			return;
113
+		}
114
+		$inlineStylesheetValues = glsr()->config('inline-styles');
115
+		$stylesheet = str_replace(
116
+			array_keys($inlineStylesheetValues),
117
+			array_values($inlineStylesheetValues),
118
+			file_get_contents($inlineStylesheetPath)
119
+		);
120
+		wp_add_inline_style(Application::ID, $stylesheet);
121
+	}
122 122
 
123
-    /**
124
-     * @return string
125
-     */
126
-    protected function buildInlineScript(array $variables)
127
-    {
128
-        $script = 'window.hasOwnProperty("GLSR")||(window.GLSR={});';
129
-        foreach ($variables as $key => $value) {
130
-            $script.= sprintf('GLSR.%s=%s;', $key, json_encode($value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
131
-        }
132
-        $pattern = '/\"([^ \-\"]+)\"(:[{\[\"])/'; // removes unnecessary quotes surrounding object keys
133
-        $optimizedScript = preg_replace($pattern, '$1$2', $script);
134
-        return apply_filters('site-reviews/enqueue/public/inline-script', $optimizedScript, $script, $variables);
135
-    }
123
+	/**
124
+	 * @return string
125
+	 */
126
+	protected function buildInlineScript(array $variables)
127
+	{
128
+		$script = 'window.hasOwnProperty("GLSR")||(window.GLSR={});';
129
+		foreach ($variables as $key => $value) {
130
+			$script.= sprintf('GLSR.%s=%s;', $key, json_encode($value, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
131
+		}
132
+		$pattern = '/\"([^ \-\"]+)\"(:[{\[\"])/'; // removes unnecessary quotes surrounding object keys
133
+		$optimizedScript = preg_replace($pattern, '$1$2', $script);
134
+		return apply_filters('site-reviews/enqueue/public/inline-script', $optimizedScript, $script, $variables);
135
+	}
136 136
 
137
-    /**
138
-     * @return array
139
-     */
140
-    protected function getFixedSelectorsForPagination()
141
-    {
142
-        $selectors = ['#wpadminbar', '.site-navigation-fixed'];
143
-        return apply_filters('site-reviews/enqueue/public/localize/ajax-pagination', $selectors);
144
-    }
137
+	/**
138
+	 * @return array
139
+	 */
140
+	protected function getFixedSelectorsForPagination()
141
+	{
142
+		$selectors = ['#wpadminbar', '.site-navigation-fixed'];
143
+		return apply_filters('site-reviews/enqueue/public/localize/ajax-pagination', $selectors);
144
+	}
145 145
 
146
-    /**
147
-     * @return string
148
-     */
149
-    protected function getStylesheet()
150
-    {
151
-        $currentStyle = glsr(Style::class)->style;
152
-        return file_exists(glsr()->path('assets/styles/custom/'.$currentStyle.'.css'))
153
-            ? glsr()->url('assets/styles/custom/'.$currentStyle.'.css')
154
-            : glsr()->url('assets/styles/'.Application::ID.'.css');
155
-    }
146
+	/**
147
+	 * @return string
148
+	 */
149
+	protected function getStylesheet()
150
+	{
151
+		$currentStyle = glsr(Style::class)->style;
152
+		return file_exists(glsr()->path('assets/styles/custom/'.$currentStyle.'.css'))
153
+			? glsr()->url('assets/styles/custom/'.$currentStyle.'.css')
154
+			: glsr()->url('assets/styles/'.Application::ID.'.css');
155
+	}
156 156
 }
Please login to merge, or discard this patch.
plugin/Controllers/RestReviewController.php 1 patch
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -12,58 +12,58 @@
 block discarded – undo
12 12
 
13 13
 class RestReviewController extends RestController
14 14
 {
15
-    public function __construct()
16
-    {
17
-        $this->meta = new WP_REST_Post_Meta_Fields(Application::POST_TYPE);
18
-        $this->namespace = Application::ID.'/v1';
19
-        $this->post_type = Application::POST_TYPE;
20
-        $this->rest_base = 'reviews';
21
-    }
15
+	public function __construct()
16
+	{
17
+		$this->meta = new WP_REST_Post_Meta_Fields(Application::POST_TYPE);
18
+		$this->namespace = Application::ID.'/v1';
19
+		$this->post_type = Application::POST_TYPE;
20
+		$this->rest_base = 'reviews';
21
+	}
22 22
 
23
-    /**
24
-     * @return void
25
-     */
26
-    public function register_routes()
27
-    {
28
-        // register_rest_route($this->namespace, '/'.$this->rest_base, [
29
-        //  ['callback' => [$this, 'createReview'], 'methods' => Server::CREATABLE],
30
-        //  ['callback' => [$this, 'getReviews'], 'methods' => Server::READABLE],
31
-        // ]);
32
-        register_rest_route($this->namespace, '/types', [
33
-            ['callback' => [$this, 'getReviewTypes'], 'methods' => Server::READABLE],
34
-        ]);
35
-    }
23
+	/**
24
+	 * @return void
25
+	 */
26
+	public function register_routes()
27
+	{
28
+		// register_rest_route($this->namespace, '/'.$this->rest_base, [
29
+		//  ['callback' => [$this, 'createReview'], 'methods' => Server::CREATABLE],
30
+		//  ['callback' => [$this, 'getReviews'], 'methods' => Server::READABLE],
31
+		// ]);
32
+		register_rest_route($this->namespace, '/types', [
33
+			['callback' => [$this, 'getReviewTypes'], 'methods' => Server::READABLE],
34
+		]);
35
+	}
36 36
 
37
-    /**
38
-     * @return WP_Error|Response|mixed
39
-     */
40
-    public function createReview()
41
-    {
42
-        $response = [];
43
-        return rest_ensure_response($response);
44
-    }
37
+	/**
38
+	 * @return WP_Error|Response|mixed
39
+	 */
40
+	public function createReview()
41
+	{
42
+		$response = [];
43
+		return rest_ensure_response($response);
44
+	}
45 45
 
46
-    /**
47
-     * @return WP_Error|Response|mixed
48
-     */
49
-    public function getReviews()
50
-    {
51
-        $response = [];
52
-        return rest_ensure_response($response);
53
-    }
46
+	/**
47
+	 * @return WP_Error|Response|mixed
48
+	 */
49
+	public function getReviews()
50
+	{
51
+		$response = [];
52
+		return rest_ensure_response($response);
53
+	}
54 54
 
55
-    /**
56
-     * @return WP_Error|Response|mixed
57
-     */
58
-    public function getReviewTypes()
59
-    {
60
-        $response = [];
61
-        foreach (glsr()->reviewTypes as $slug => $name) {
62
-            $response[] = [
63
-                'name' => $name,
64
-                'slug' => $slug,
65
-            ];
66
-        }
67
-        return rest_ensure_response($response);
68
-    }
55
+	/**
56
+	 * @return WP_Error|Response|mixed
57
+	 */
58
+	public function getReviewTypes()
59
+	{
60
+		$response = [];
61
+		foreach (glsr()->reviewTypes as $slug => $name) {
62
+			$response[] = [
63
+				'name' => $name,
64
+				'slug' => $slug,
65
+			];
66
+		}
67
+		return rest_ensure_response($response);
68
+	}
69 69
 }
Please login to merge, or discard this patch.
autoload.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -5,23 +5,23 @@
 block discarded – undo
5 5
 require_once ABSPATH.WPINC.'/class-phpass.php';
6 6
 
7 7
 spl_autoload_register(function ($className) {
8
-    $namespaces = [
9
-        'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/',
10
-        'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/',
11
-        'GeminiLabs\\Sepia\\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/',
12
-        'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/',
13
-        'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/',
14
-    ];
15
-    foreach ($namespaces as $prefix => $baseDir) {
16
-        $len = strlen($prefix);
17
-        if (0 !== strncmp($prefix, $className, $len)) {
18
-            continue;
19
-        }
20
-        $file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php';
21
-        if (!file_exists($file)) {
22
-            continue;
23
-        }
24
-        require $file;
25
-        break;
26
-    }
8
+	$namespaces = [
9
+		'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/',
10
+		'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/',
11
+		'GeminiLabs\\Sepia\\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/',
12
+		'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/',
13
+		'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/',
14
+	];
15
+	foreach ($namespaces as $prefix => $baseDir) {
16
+		$len = strlen($prefix);
17
+		if (0 !== strncmp($prefix, $className, $len)) {
18
+			continue;
19
+		}
20
+		$file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php';
21
+		if (!file_exists($file)) {
22
+			continue;
23
+		}
24
+		require $file;
25
+		break;
26
+	}
27 27
 });
Please login to merge, or discard this patch.
compatibility.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
8 8
  * @see https://www.elegantthemes.com/gallery/divi/
9 9
  */
10 10
 add_action('site-reviews/customize/divi', function ($instance) {
11
-    if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) {
12
-        return;
13
-    }
14
-    $instance->args['text'] = '<i></i>'.$instance->args['text'];
11
+	if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) {
12
+		return;
13
+	}
14
+	$instance->args['text'] = '<i></i>'.$instance->args['text'];
15 15
 });
16 16
 
17 17
 /*
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
  * @see https://wordpress.org/plugins/wp-super-cache/
23 23
  */
24 24
 add_action('site-reviews/review/created', function ($review, $request) {
25
-    if (!function_exists('wp_cache_post_change')) {
26
-        return;
27
-    }
28
-    wp_cache_post_change($request->post_id);
29
-    if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) {
30
-        return;
31
-    }
32
-    wp_cache_post_change($review->assigned_to);
25
+	if (!function_exists('wp_cache_post_change')) {
26
+		return;
27
+	}
28
+	wp_cache_post_change($request->post_id);
29
+	if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) {
30
+		return;
31
+	}
32
+	wp_cache_post_change($review->assigned_to);
33 33
 }, 10, 2);
34 34
 
35 35
 /*
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
  * @see https://wordpress.org/plugins/speed-booster-pack/
39 39
  */
40 40
 add_filter('sbp_exclude_defer_scripts', function ($scriptHandles) {
41
-    $scriptHandles[] = 'site-reviews/google-recaptcha';
42
-    return array_keys(array_flip($scriptHandles));
41
+	$scriptHandles[] = 'site-reviews/google-recaptcha';
42
+	return array_keys(array_flip($scriptHandles));
43 43
 });
44 44
 
45 45
 /*
@@ -49,13 +49,13 @@  discard block
 block discarded – undo
49 49
  * @see https://searchandfilter.com/
50 50
  */
51 51
 add_filter('sf_edit_query_args', function ($query) {
52
-    if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) {
53
-        unset($query['meta_key']);
54
-        $query['meta_query'] = [
55
-            'relation' => 'OR',
56
-            ['key' => '_glsr_ranking', 'compare' => 'NOT EXISTS'], // this comes first!
57
-            ['key' => '_glsr_ranking', 'compare' => 'EXISTS'],
58
-        ];
59
-    }
60
-    return $query;
52
+	if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) {
53
+		unset($query['meta_key']);
54
+		$query['meta_query'] = [
55
+			'relation' => 'OR',
56
+			['key' => '_glsr_ranking', 'compare' => 'NOT EXISTS'], // this comes first!
57
+			['key' => '_glsr_ranking', 'compare' => 'EXISTS'],
58
+		];
59
+	}
60
+	return $query;
61 61
 }, 20);
Please login to merge, or discard this patch.
plugin/Modules/Html/Partials/SiteReviewsForm.php 1 patch
Indentation   +272 added lines, -272 removed lines patch added patch discarded remove patch
@@ -12,297 +12,297 @@
 block discarded – undo
12 12
 
13 13
 class SiteReviewsForm
14 14
 {
15
-    /**
16
-     * @var array
17
-     */
18
-    protected $args;
15
+	/**
16
+	 * @var array
17
+	 */
18
+	protected $args;
19 19
 
20
-    /**
21
-     * @var array
22
-     */
23
-    protected $errors;
20
+	/**
21
+	 * @var array
22
+	 */
23
+	protected $errors;
24 24
 
25
-    /**
26
-     * @var string
27
-     */
28
-    protected $message;
25
+	/**
26
+	 * @var string
27
+	 */
28
+	protected $message;
29 29
 
30
-    /**
31
-     * @var array
32
-     */
33
-    protected $required;
30
+	/**
31
+	 * @var array
32
+	 */
33
+	protected $required;
34 34
 
35
-    /**
36
-     * @var array
37
-     */
38
-    protected $values;
35
+	/**
36
+	 * @var array
37
+	 */
38
+	protected $values;
39 39
 
40
-    /**
41
-     * @return void|string
42
-     */
43
-    public function build(array $args = [])
44
-    {
45
-        $this->args = $args;
46
-        if (!is_user_logged_in() && glsr(OptionManager::class)->getBool('settings.general.require.login')) {
47
-            return $this->buildLoginRegister();
48
-        }
49
-        $this->errors = glsr()->sessionGet($args['id'].'errors', []);
50
-        $this->message = glsr()->sessionGet($args['id'].'message', '');
51
-        $this->required = glsr(OptionManager::class)->get('settings.submissions.required', []);
52
-        $this->values = glsr()->sessionGet($args['id'].'values', []);
53
-        $fields = array_reduce($this->getFields(), function ($carry, $field) {
54
-            return $carry.$field;
55
-        });
56
-        return glsr(Template::class)->build('templates/reviews-form', [
57
-            'args' => $args,
58
-            'context' => [
59
-                'class' => $this->getClass(),
60
-                'fields' => $fields,
61
-                'id' => $this->args['id'],
62
-                'response' => $this->buildResponse(),
63
-                'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(),
64
-            ],
65
-        ]);
66
-    }
40
+	/**
41
+	 * @return void|string
42
+	 */
43
+	public function build(array $args = [])
44
+	{
45
+		$this->args = $args;
46
+		if (!is_user_logged_in() && glsr(OptionManager::class)->getBool('settings.general.require.login')) {
47
+			return $this->buildLoginRegister();
48
+		}
49
+		$this->errors = glsr()->sessionGet($args['id'].'errors', []);
50
+		$this->message = glsr()->sessionGet($args['id'].'message', '');
51
+		$this->required = glsr(OptionManager::class)->get('settings.submissions.required', []);
52
+		$this->values = glsr()->sessionGet($args['id'].'values', []);
53
+		$fields = array_reduce($this->getFields(), function ($carry, $field) {
54
+			return $carry.$field;
55
+		});
56
+		return glsr(Template::class)->build('templates/reviews-form', [
57
+			'args' => $args,
58
+			'context' => [
59
+				'class' => $this->getClass(),
60
+				'fields' => $fields,
61
+				'id' => $this->args['id'],
62
+				'response' => $this->buildResponse(),
63
+				'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(),
64
+			],
65
+		]);
66
+	}
67 67
 
68
-    /**
69
-     * @return string
70
-     */
71
-    protected function buildLoginRegister()
72
-    {
73
-        return glsr(Template::class)->build('templates/login-register', [
74
-            'context' => [
75
-                'text' => trim($this->getLoginText().' '.$this->getRegisterText()),
76
-            ],
77
-        ]);
78
-    }
68
+	/**
69
+	 * @return string
70
+	 */
71
+	protected function buildLoginRegister()
72
+	{
73
+		return glsr(Template::class)->build('templates/login-register', [
74
+			'context' => [
75
+				'text' => trim($this->getLoginText().' '.$this->getRegisterText()),
76
+			],
77
+		]);
78
+	}
79 79
 
80
-    /**
81
-     * @return void|string
82
-     */
83
-    protected function buildRecaptcha()
84
-    {
85
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
86
-            return;
87
-        }
88
-        return glsr(Builder::class)->div([
89
-            'class' => 'glsr-recaptcha-holder',
90
-            'data-badge' => glsr(OptionManager::class)->get('settings.submissions.recaptcha.position'),
91
-            'data-sitekey' => sanitize_text_field(glsr(OptionManager::class)->get('settings.submissions.recaptcha.key')),
92
-            'data-size' => 'invisible',
93
-        ]);
94
-    }
80
+	/**
81
+	 * @return void|string
82
+	 */
83
+	protected function buildRecaptcha()
84
+	{
85
+		if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
86
+			return;
87
+		}
88
+		return glsr(Builder::class)->div([
89
+			'class' => 'glsr-recaptcha-holder',
90
+			'data-badge' => glsr(OptionManager::class)->get('settings.submissions.recaptcha.position'),
91
+			'data-sitekey' => sanitize_text_field(glsr(OptionManager::class)->get('settings.submissions.recaptcha.key')),
92
+			'data-size' => 'invisible',
93
+		]);
94
+	}
95 95
 
96
-    /**
97
-     * @return string
98
-     */
99
-    protected function buildResponse()
100
-    {
101
-        $classes = !empty($this->errors)
102
-            ? glsr(StyleValidationDefaults::class)->defaults()['message_error_class']
103
-            : '';
104
-        return glsr(Template::class)->build('templates/form/response', [
105
-            'context' => [
106
-                'class' => $classes,
107
-                'message' => wpautop($this->message),
108
-            ],
109
-            'has_errors' => !empty($this->errors),
110
-        ]);
111
-    }
96
+	/**
97
+	 * @return string
98
+	 */
99
+	protected function buildResponse()
100
+	{
101
+		$classes = !empty($this->errors)
102
+			? glsr(StyleValidationDefaults::class)->defaults()['message_error_class']
103
+			: '';
104
+		return glsr(Template::class)->build('templates/form/response', [
105
+			'context' => [
106
+				'class' => $classes,
107
+				'message' => wpautop($this->message),
108
+			],
109
+			'has_errors' => !empty($this->errors),
110
+		]);
111
+	}
112 112
 
113
-    /**
114
-     * @return string
115
-     */
116
-    protected function buildSubmitButton()
117
-    {
118
-        return glsr(Template::class)->build('templates/form/submit-button', [
119
-            'context' => [
120
-                'text' => __('Submit your review', 'site-reviews'),
121
-            ],
122
-        ]);
123
-    }
113
+	/**
114
+	 * @return string
115
+	 */
116
+	protected function buildSubmitButton()
117
+	{
118
+		return glsr(Template::class)->build('templates/form/submit-button', [
119
+			'context' => [
120
+				'text' => __('Submit your review', 'site-reviews'),
121
+			],
122
+		]);
123
+	}
124 124
 
125
-    /**
126
-     * @return string
127
-     */
128
-    protected function getClass()
129
-    {
130
-        return trim('glsr-form glsr-'.glsr(Style::class)->get().' '.$this->args['class']);
131
-    }
125
+	/**
126
+	 * @return string
127
+	 */
128
+	protected function getClass()
129
+	{
130
+		return trim('glsr-form glsr-'.glsr(Style::class)->get().' '.$this->args['class']);
131
+	}
132 132
 
133
-    /**
134
-     * @return array
135
-     */
136
-    protected function getFields()
137
-    {
138
-        $hiddenFields = $this->getHiddenFields();
139
-        $hiddenFields[] = $this->getHoneypotField();
140
-        $fields = $this->normalizeFields(glsr(Form::class)->getFields('submission-form'));
141
-        $paths = array_map(function ($obj) {
142
-            return $obj->field['path'];
143
-        }, $hiddenFields);
144
-        foreach ($fields as $field) {
145
-            $index = array_search($field->field['path'], $paths);
146
-            if (false === $index) {
147
-                continue;
148
-            }
149
-            unset($hiddenFields[$index]);
150
-        }
151
-        return array_merge($hiddenFields, $fields);
152
-    }
133
+	/**
134
+	 * @return array
135
+	 */
136
+	protected function getFields()
137
+	{
138
+		$hiddenFields = $this->getHiddenFields();
139
+		$hiddenFields[] = $this->getHoneypotField();
140
+		$fields = $this->normalizeFields(glsr(Form::class)->getFields('submission-form'));
141
+		$paths = array_map(function ($obj) {
142
+			return $obj->field['path'];
143
+		}, $hiddenFields);
144
+		foreach ($fields as $field) {
145
+			$index = array_search($field->field['path'], $paths);
146
+			if (false === $index) {
147
+				continue;
148
+			}
149
+			unset($hiddenFields[$index]);
150
+		}
151
+		return array_merge($hiddenFields, $fields);
152
+	}
153 153
 
154
-    /**
155
-     * @return string
156
-     */
157
-    protected function getLoginText()
158
-    {
159
-        $loginLink = glsr(Builder::class)->a([
160
-            'href' => wp_login_url(strval(get_permalink())),
161
-            'text' => __('logged in', 'site-reviews'),
162
-        ]);
163
-        return sprintf(__('You must be %s to submit a review.', 'site-reviews'), $loginLink);
164
-    }
154
+	/**
155
+	 * @return string
156
+	 */
157
+	protected function getLoginText()
158
+	{
159
+		$loginLink = glsr(Builder::class)->a([
160
+			'href' => wp_login_url(strval(get_permalink())),
161
+			'text' => __('logged in', 'site-reviews'),
162
+		]);
163
+		return sprintf(__('You must be %s to submit a review.', 'site-reviews'), $loginLink);
164
+	}
165 165
 
166
-    /**
167
-     * @return void|string
168
-     */
169
-    protected function getRegisterText()
170
-    {
171
-        if (!get_option('users_can_register') || !glsr(OptionManager::class)->getBool('settings.general.require.login')) {
172
-            return;
173
-        }
174
-        $registerLink = glsr(Builder::class)->a([
175
-            'href' => wp_registration_url(),
176
-            'text' => __('register', 'site-reviews'),
177
-        ]);
178
-        return sprintf(__('You may also %s for an account.', 'site-reviews'), $registerLink);
179
-    }
166
+	/**
167
+	 * @return void|string
168
+	 */
169
+	protected function getRegisterText()
170
+	{
171
+		if (!get_option('users_can_register') || !glsr(OptionManager::class)->getBool('settings.general.require.login')) {
172
+			return;
173
+		}
174
+		$registerLink = glsr(Builder::class)->a([
175
+			'href' => wp_registration_url(),
176
+			'text' => __('register', 'site-reviews'),
177
+		]);
178
+		return sprintf(__('You may also %s for an account.', 'site-reviews'), $registerLink);
179
+	}
180 180
 
181
-    /**
182
-     * @return array
183
-     */
184
-    protected function getHiddenFields()
185
-    {
186
-        $fields = [[
187
-            'name' => '_action',
188
-            'value' => 'submit-review',
189
-        ], [
190
-            'name' => '_counter',
191
-        ], [
192
-            'name' => '_nonce',
193
-            'value' => wp_create_nonce('submit-review'),
194
-        ], [
195
-            'name' => '_post_id',
196
-            'value' => get_the_ID(),
197
-        ], [
198
-            'name' => '_referer',
199
-            'value' => wp_unslash(filter_input(INPUT_SERVER, 'REQUEST_URI')),
200
-        ], [
201
-            'name' => 'assign_to',
202
-            'value' => $this->args['assign_to'],
203
-        ], [
204
-            'name' => 'category',
205
-            'value' => $this->args['category'],
206
-        ], [
207
-            'name' => 'excluded',
208
-            'value' => $this->args['hide'],
209
-        ], [
210
-            'name' => 'form_id',
211
-            'value' => $this->args['id'],
212
-        ]];
213
-        return array_map(function ($field) {
214
-            return new Field(wp_parse_args($field, ['type' => 'hidden']));
215
-        }, $fields);
216
-    }
181
+	/**
182
+	 * @return array
183
+	 */
184
+	protected function getHiddenFields()
185
+	{
186
+		$fields = [[
187
+			'name' => '_action',
188
+			'value' => 'submit-review',
189
+		], [
190
+			'name' => '_counter',
191
+		], [
192
+			'name' => '_nonce',
193
+			'value' => wp_create_nonce('submit-review'),
194
+		], [
195
+			'name' => '_post_id',
196
+			'value' => get_the_ID(),
197
+		], [
198
+			'name' => '_referer',
199
+			'value' => wp_unslash(filter_input(INPUT_SERVER, 'REQUEST_URI')),
200
+		], [
201
+			'name' => 'assign_to',
202
+			'value' => $this->args['assign_to'],
203
+		], [
204
+			'name' => 'category',
205
+			'value' => $this->args['category'],
206
+		], [
207
+			'name' => 'excluded',
208
+			'value' => $this->args['hide'],
209
+		], [
210
+			'name' => 'form_id',
211
+			'value' => $this->args['id'],
212
+		]];
213
+		return array_map(function ($field) {
214
+			return new Field(wp_parse_args($field, ['type' => 'hidden']));
215
+		}, $fields);
216
+	}
217 217
 
218
-    /**
219
-     * @return Field
220
-     */
221
-    protected function getHoneypotField()
222
-    {
223
-        return new Field([
224
-            'name' => 'gotcha',
225
-            'type' => 'honeypot',
226
-        ]);
227
-    }
218
+	/**
219
+	 * @return Field
220
+	 */
221
+	protected function getHoneypotField()
222
+	{
223
+		return new Field([
224
+			'name' => 'gotcha',
225
+			'type' => 'honeypot',
226
+		]);
227
+	}
228 228
 
229
-    /**
230
-     * @return void
231
-     */
232
-    protected function normalizeFieldId(Field &$field)
233
-    {
234
-        if (empty($this->args['id']) || empty($field->field['id'])) {
235
-            return;
236
-        }
237
-        $field->field['id'].= '-'.$this->args['id'];
238
-    }
229
+	/**
230
+	 * @return void
231
+	 */
232
+	protected function normalizeFieldId(Field &$field)
233
+	{
234
+		if (empty($this->args['id']) || empty($field->field['id'])) {
235
+			return;
236
+		}
237
+		$field->field['id'].= '-'.$this->args['id'];
238
+	}
239 239
 
240
-    /**
241
-     * @return void
242
-     */
243
-    protected function normalizeFieldClass(Field &$field)
244
-    {
245
-        if (!isset($field->field['class'])) {
246
-            $field->field['class'] = '';
247
-        }
248
-        $field->field['class'] = trim($field->field['class'].' glsr-field-control');
249
-    }
240
+	/**
241
+	 * @return void
242
+	 */
243
+	protected function normalizeFieldClass(Field &$field)
244
+	{
245
+		if (!isset($field->field['class'])) {
246
+			$field->field['class'] = '';
247
+		}
248
+		$field->field['class'] = trim($field->field['class'].' glsr-field-control');
249
+	}
250 250
 
251
-    /**
252
-     * @return void
253
-     */
254
-    protected function normalizeFieldErrors(Field &$field)
255
-    {
256
-        if (!array_key_exists($field->field['path'], $this->errors)) {
257
-            return;
258
-        }
259
-        $field->field['errors'] = $this->errors[$field->field['path']];
260
-    }
251
+	/**
252
+	 * @return void
253
+	 */
254
+	protected function normalizeFieldErrors(Field &$field)
255
+	{
256
+		if (!array_key_exists($field->field['path'], $this->errors)) {
257
+			return;
258
+		}
259
+		$field->field['errors'] = $this->errors[$field->field['path']];
260
+	}
261 261
 
262
-    /**
263
-     * @return void
264
-     */
265
-    protected function normalizeFieldRequired(Field &$field)
266
-    {
267
-        if (!in_array($field->field['path'], $this->required)) {
268
-            return;
269
-        }
270
-        $field->field['required'] = true;
271
-    }
262
+	/**
263
+	 * @return void
264
+	 */
265
+	protected function normalizeFieldRequired(Field &$field)
266
+	{
267
+		if (!in_array($field->field['path'], $this->required)) {
268
+			return;
269
+		}
270
+		$field->field['required'] = true;
271
+	}
272 272
 
273
-    /**
274
-     * @return array
275
-     */
276
-    protected function normalizeFields($fields)
277
-    {
278
-        $normalizedFields = [];
279
-        foreach ($fields as $field) {
280
-            if (in_array($field->field['path'], $this->args['hide'])) {
281
-                continue;
282
-            }
283
-            $field->field['is_public'] = true;
284
-            $this->normalizeFieldClass($field);
285
-            $this->normalizeFieldErrors($field);
286
-            $this->normalizeFieldRequired($field);
287
-            $this->normalizeFieldValue($field);
288
-            $this->normalizeFieldId($field);
289
-            $normalizedFields[] = $field;
290
-        }
291
-        return $normalizedFields;
292
-    }
273
+	/**
274
+	 * @return array
275
+	 */
276
+	protected function normalizeFields($fields)
277
+	{
278
+		$normalizedFields = [];
279
+		foreach ($fields as $field) {
280
+			if (in_array($field->field['path'], $this->args['hide'])) {
281
+				continue;
282
+			}
283
+			$field->field['is_public'] = true;
284
+			$this->normalizeFieldClass($field);
285
+			$this->normalizeFieldErrors($field);
286
+			$this->normalizeFieldRequired($field);
287
+			$this->normalizeFieldValue($field);
288
+			$this->normalizeFieldId($field);
289
+			$normalizedFields[] = $field;
290
+		}
291
+		return $normalizedFields;
292
+	}
293 293
 
294
-    /**
295
-     * @return void
296
-     */
297
-    protected function normalizeFieldValue(Field &$field)
298
-    {
299
-        if (!array_key_exists($field->field['path'], $this->values)) {
300
-            return;
301
-        }
302
-        if (in_array($field->field['type'], ['radio', 'checkbox'])) {
303
-            $field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']];
304
-        } else {
305
-            $field->field['value'] = $this->values[$field->field['path']];
306
-        }
307
-    }
294
+	/**
295
+	 * @return void
296
+	 */
297
+	protected function normalizeFieldValue(Field &$field)
298
+	{
299
+		if (!array_key_exists($field->field['path'], $this->values)) {
300
+			return;
301
+		}
302
+		if (in_array($field->field['type'], ['radio', 'checkbox'])) {
303
+			$field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']];
304
+		} else {
305
+			$field->field['value'] = $this->values[$field->field['path']];
306
+		}
307
+	}
308 308
 }
Please login to merge, or discard this patch.