Passed
Push — feature/rebusify ( 495106...67b08f )
by Paul
06:10 queued 02:03
created
plugin/Controllers/AjaxController.php 2 patches
Indentation   +141 added lines, -141 removed lines patch added patch discarded remove patch
@@ -12,154 +12,154 @@
 block discarded – undo
12 12
 
13 13
 class AjaxController extends Controller
14 14
 {
15
-    /**
16
-     * @return void
17
-     */
18
-    public function routerChangeStatus(array $request)
19
-    {
20
-        wp_send_json_success($this->execute(new ChangeStatus($request)));
21
-    }
15
+	/**
16
+	 * @return void
17
+	 */
18
+	public function routerChangeStatus(array $request)
19
+	{
20
+		wp_send_json_success($this->execute(new ChangeStatus($request)));
21
+	}
22 22
 
23
-    /**
24
-     * @return void
25
-     */
26
-    public function routerClearConsole()
27
-    {
28
-        glsr(AdminController::class)->routerClearConsole();
29
-        wp_send_json_success([
30
-            'console' => glsr(Console::class)->get(),
31
-            'notices' => glsr(Notice::class)->get(),
32
-        ]);
33
-    }
23
+	/**
24
+	 * @return void
25
+	 */
26
+	public function routerClearConsole()
27
+	{
28
+		glsr(AdminController::class)->routerClearConsole();
29
+		wp_send_json_success([
30
+			'console' => glsr(Console::class)->get(),
31
+			'notices' => glsr(Notice::class)->get(),
32
+		]);
33
+	}
34 34
 
35
-    /**
36
-     * @return void
37
-     */
38
-    public function routerCountReviews()
39
-    {
40
-        glsr(AdminController::class)->routerCountReviews();
41
-        wp_send_json_success([
42
-            'notices' => glsr(Notice::class)->get(),
43
-        ]);
44
-    }
35
+	/**
36
+	 * @return void
37
+	 */
38
+	public function routerCountReviews()
39
+	{
40
+		glsr(AdminController::class)->routerCountReviews();
41
+		wp_send_json_success([
42
+			'notices' => glsr(Notice::class)->get(),
43
+		]);
44
+	}
45 45
 
46
-    /**
47
-     * @return void
48
-     */
49
-    public function routerMceShortcode(array $request)
50
-    {
51
-        $shortcode = $request['shortcode'];
52
-        $response = false;
53
-        if (array_key_exists($shortcode, glsr()->mceShortcodes)) {
54
-            $data = glsr()->mceShortcodes[$shortcode];
55
-            if (!empty($data['errors'])) {
56
-                $data['btn_okay'] = [esc_html__('Okay', 'site-reviews')];
57
-            }
58
-            $response = [
59
-                'body' => $data['fields'],
60
-                'close' => $data['btn_close'],
61
-                'ok' => $data['btn_okay'],
62
-                'shortcode' => $shortcode,
63
-                'title' => $data['title'],
64
-            ];
65
-        }
66
-        wp_send_json_success($response);
67
-    }
46
+	/**
47
+	 * @return void
48
+	 */
49
+	public function routerMceShortcode(array $request)
50
+	{
51
+		$shortcode = $request['shortcode'];
52
+		$response = false;
53
+		if (array_key_exists($shortcode, glsr()->mceShortcodes)) {
54
+			$data = glsr()->mceShortcodes[$shortcode];
55
+			if (!empty($data['errors'])) {
56
+				$data['btn_okay'] = [esc_html__('Okay', 'site-reviews')];
57
+			}
58
+			$response = [
59
+				'body' => $data['fields'],
60
+				'close' => $data['btn_close'],
61
+				'ok' => $data['btn_okay'],
62
+				'shortcode' => $shortcode,
63
+				'title' => $data['title'],
64
+			];
65
+		}
66
+		wp_send_json_success($response);
67
+	}
68 68
 
69
-    /**
70
-     * @return void
71
-     */
72
-    public function routerFetchConsole()
73
-    {
74
-        glsr(AdminController::class)->routerFetchConsole();
75
-        wp_send_json_success([
76
-            'console' => glsr(Console::class)->get(),
77
-            'notices' => glsr(Notice::class)->get(),
78
-        ]);
79
-    }
69
+	/**
70
+	 * @return void
71
+	 */
72
+	public function routerFetchConsole()
73
+	{
74
+		glsr(AdminController::class)->routerFetchConsole();
75
+		wp_send_json_success([
76
+			'console' => glsr(Console::class)->get(),
77
+			'notices' => glsr(Notice::class)->get(),
78
+		]);
79
+	}
80 80
 
81
-    /**
82
-     * @return void
83
-     */
84
-    public function routerSearchPosts(array $request)
85
-    {
86
-        $results = glsr(Database::class)->searchPosts($request['search']);
87
-        wp_send_json_success([
88
-            'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>',
89
-            'items' => $results,
90
-        ]);
91
-    }
81
+	/**
82
+	 * @return void
83
+	 */
84
+	public function routerSearchPosts(array $request)
85
+	{
86
+		$results = glsr(Database::class)->searchPosts($request['search']);
87
+		wp_send_json_success([
88
+			'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>',
89
+			'items' => $results,
90
+		]);
91
+	}
92 92
 
93
-    /**
94
-     * @return void
95
-     */
96
-    public function routerSearchTranslations(array $request)
97
-    {
98
-        if (empty($request['exclude'])) {
99
-            $request['exclude'] = [];
100
-        }
101
-        $results = glsr(Translation::class)
102
-            ->search($request['search'])
103
-            ->exclude()
104
-            ->exclude($request['exclude'])
105
-            ->renderResults();
106
-        wp_send_json_success([
107
-            'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>',
108
-            'items' => $results,
109
-        ]);
110
-    }
93
+	/**
94
+	 * @return void
95
+	 */
96
+	public function routerSearchTranslations(array $request)
97
+	{
98
+		if (empty($request['exclude'])) {
99
+			$request['exclude'] = [];
100
+		}
101
+		$results = glsr(Translation::class)
102
+			->search($request['search'])
103
+			->exclude()
104
+			->exclude($request['exclude'])
105
+			->renderResults();
106
+		wp_send_json_success([
107
+			'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>',
108
+			'items' => $results,
109
+		]);
110
+	}
111 111
 
112
-    /**
113
-     * @return void
114
-     */
115
-    public function routerSubmitReview(array $request)
116
-    {
117
-        $command = glsr(PublicController::class)->routerSubmitReview($request);
118
-        $redirect = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
119
-        $redirect = apply_filters('site-reviews/review/redirect', $redirect, $command);
120
-        $data = [
121
-            'errors' => glsr()->sessionGet($command->form_id.'errors', false),
122
-            'message' => glsr()->sessionGet($command->form_id.'message', ''),
123
-            'recaptcha' => glsr()->sessionGet($command->form_id.'recaptcha', false),
124
-            'redirect' => $redirect,
125
-        ];
126
-        if (false === $data['errors']) {
127
-            glsr()->sessionClear();
128
-            wp_send_json_success($data);
129
-        }
130
-        wp_send_json_error($data);
131
-    }
112
+	/**
113
+	 * @return void
114
+	 */
115
+	public function routerSubmitReview(array $request)
116
+	{
117
+		$command = glsr(PublicController::class)->routerSubmitReview($request);
118
+		$redirect = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
119
+		$redirect = apply_filters('site-reviews/review/redirect', $redirect, $command);
120
+		$data = [
121
+			'errors' => glsr()->sessionGet($command->form_id.'errors', false),
122
+			'message' => glsr()->sessionGet($command->form_id.'message', ''),
123
+			'recaptcha' => glsr()->sessionGet($command->form_id.'recaptcha', false),
124
+			'redirect' => $redirect,
125
+		];
126
+		if (false === $data['errors']) {
127
+			glsr()->sessionClear();
128
+			wp_send_json_success($data);
129
+		}
130
+		wp_send_json_error($data);
131
+	}
132 132
 
133
-    /**
134
-     * @return void
135
-     */
136
-    public function routerFetchPagedReviews(array $request)
137
-    {
138
-        $urlQuery = [];
139
-        parse_str(parse_url(glsr_get($request, 'url'), PHP_URL_QUERY), $urlQuery);
140
-        $args = [
141
-            'paged' => glsr_get($urlQuery, glsr()->constant('PAGED_QUERY_VAR'), 1),
142
-            'pagedUrl' => home_url(parse_url(glsr_get($request, 'url'), PHP_URL_PATH)),
143
-            'pagination' => 'ajax',
144
-            'schema' => false,
145
-        ];
146
-        $atts = (array) json_decode(glsr_get($request, 'atts'));
147
-        $html = glsr(SiteReviews::class)->build(wp_parse_args($args, $atts));
148
-        return wp_send_json_success([
149
-            'pagination' => $html->getPagination(),
150
-            'reviews' => $html->getReviews(),
151
-        ]);
152
-    }
133
+	/**
134
+	 * @return void
135
+	 */
136
+	public function routerFetchPagedReviews(array $request)
137
+	{
138
+		$urlQuery = [];
139
+		parse_str(parse_url(glsr_get($request, 'url'), PHP_URL_QUERY), $urlQuery);
140
+		$args = [
141
+			'paged' => glsr_get($urlQuery, glsr()->constant('PAGED_QUERY_VAR'), 1),
142
+			'pagedUrl' => home_url(parse_url(glsr_get($request, 'url'), PHP_URL_PATH)),
143
+			'pagination' => 'ajax',
144
+			'schema' => false,
145
+		];
146
+		$atts = (array) json_decode(glsr_get($request, 'atts'));
147
+		$html = glsr(SiteReviews::class)->build(wp_parse_args($args, $atts));
148
+		return wp_send_json_success([
149
+			'pagination' => $html->getPagination(),
150
+			'reviews' => $html->getReviews(),
151
+		]);
152
+	}
153 153
 
154
-    /**
155
-     * @return void
156
-     */
157
-    public function routerTogglePinned(array $request)
158
-    {
159
-        $isPinned = $this->execute(new TogglePinned($request));
160
-        wp_send_json_success([
161
-            'notices' => glsr(Notice::class)->get(),
162
-            'pinned' => $isPinned,
163
-        ]);
164
-    }
154
+	/**
155
+	 * @return void
156
+	 */
157
+	public function routerTogglePinned(array $request)
158
+	{
159
+		$isPinned = $this->execute(new TogglePinned($request));
160
+		wp_send_json_success([
161
+			'notices' => glsr(Notice::class)->get(),
162
+			'pinned' => $isPinned,
163
+		]);
164
+	}
165 165
 }
Please login to merge, or discard this patch.
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * @return void
17 17
      */
18
-    public function routerChangeStatus(array $request)
18
+    public function routerChangeStatus( array $request )
19 19
     {
20
-        wp_send_json_success($this->execute(new ChangeStatus($request)));
20
+        wp_send_json_success( $this->execute( new ChangeStatus( $request ) ) );
21 21
     }
22 22
 
23 23
     /**
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function routerClearConsole()
27 27
     {
28
-        glsr(AdminController::class)->routerClearConsole();
29
-        wp_send_json_success([
30
-            'console' => glsr(Console::class)->get(),
31
-            'notices' => glsr(Notice::class)->get(),
32
-        ]);
28
+        glsr( AdminController::class )->routerClearConsole();
29
+        wp_send_json_success( [
30
+            'console' => glsr( Console::class )->get(),
31
+            'notices' => glsr( Notice::class )->get(),
32
+        ] );
33 33
     }
34 34
 
35 35
     /**
@@ -37,23 +37,23 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function routerCountReviews()
39 39
     {
40
-        glsr(AdminController::class)->routerCountReviews();
41
-        wp_send_json_success([
42
-            'notices' => glsr(Notice::class)->get(),
43
-        ]);
40
+        glsr( AdminController::class )->routerCountReviews();
41
+        wp_send_json_success( [
42
+            'notices' => glsr( Notice::class )->get(),
43
+        ] );
44 44
     }
45 45
 
46 46
     /**
47 47
      * @return void
48 48
      */
49
-    public function routerMceShortcode(array $request)
49
+    public function routerMceShortcode( array $request )
50 50
     {
51 51
         $shortcode = $request['shortcode'];
52 52
         $response = false;
53
-        if (array_key_exists($shortcode, glsr()->mceShortcodes)) {
53
+        if( array_key_exists( $shortcode, glsr()->mceShortcodes ) ) {
54 54
             $data = glsr()->mceShortcodes[$shortcode];
55
-            if (!empty($data['errors'])) {
56
-                $data['btn_okay'] = [esc_html__('Okay', 'site-reviews')];
55
+            if( !empty($data['errors']) ) {
56
+                $data['btn_okay'] = [esc_html__( 'Okay', 'site-reviews' )];
57 57
             }
58 58
             $response = [
59 59
                 'body' => $data['fields'],
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
                 'title' => $data['title'],
64 64
             ];
65 65
         }
66
-        wp_send_json_success($response);
66
+        wp_send_json_success( $response );
67 67
     }
68 68
 
69 69
     /**
@@ -71,95 +71,95 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function routerFetchConsole()
73 73
     {
74
-        glsr(AdminController::class)->routerFetchConsole();
75
-        wp_send_json_success([
76
-            'console' => glsr(Console::class)->get(),
77
-            'notices' => glsr(Notice::class)->get(),
78
-        ]);
74
+        glsr( AdminController::class )->routerFetchConsole();
75
+        wp_send_json_success( [
76
+            'console' => glsr( Console::class )->get(),
77
+            'notices' => glsr( Notice::class )->get(),
78
+        ] );
79 79
     }
80 80
 
81 81
     /**
82 82
      * @return void
83 83
      */
84
-    public function routerSearchPosts(array $request)
84
+    public function routerSearchPosts( array $request )
85 85
     {
86
-        $results = glsr(Database::class)->searchPosts($request['search']);
87
-        wp_send_json_success([
88
-            'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>',
86
+        $results = glsr( Database::class )->searchPosts( $request['search'] );
87
+        wp_send_json_success( [
88
+            'empty' => '<div>'.__( 'Nothing found.', 'site-reviews' ).'</div>',
89 89
             'items' => $results,
90
-        ]);
90
+        ] );
91 91
     }
92 92
 
93 93
     /**
94 94
      * @return void
95 95
      */
96
-    public function routerSearchTranslations(array $request)
96
+    public function routerSearchTranslations( array $request )
97 97
     {
98
-        if (empty($request['exclude'])) {
98
+        if( empty($request['exclude']) ) {
99 99
             $request['exclude'] = [];
100 100
         }
101
-        $results = glsr(Translation::class)
102
-            ->search($request['search'])
101
+        $results = glsr( Translation::class )
102
+            ->search( $request['search'] )
103 103
             ->exclude()
104
-            ->exclude($request['exclude'])
104
+            ->exclude( $request['exclude'] )
105 105
             ->renderResults();
106
-        wp_send_json_success([
107
-            'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>',
106
+        wp_send_json_success( [
107
+            'empty' => '<div>'.__( 'Nothing found.', 'site-reviews' ).'</div>',
108 108
             'items' => $results,
109
-        ]);
109
+        ] );
110 110
     }
111 111
 
112 112
     /**
113 113
      * @return void
114 114
      */
115
-    public function routerSubmitReview(array $request)
115
+    public function routerSubmitReview( array $request )
116 116
     {
117
-        $command = glsr(PublicController::class)->routerSubmitReview($request);
118
-        $redirect = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
119
-        $redirect = apply_filters('site-reviews/review/redirect', $redirect, $command);
117
+        $command = glsr( PublicController::class )->routerSubmitReview( $request );
118
+        $redirect = trim( strval( get_post_meta( $command->post_id, 'redirect_to', true ) ) );
119
+        $redirect = apply_filters( 'site-reviews/review/redirect', $redirect, $command );
120 120
         $data = [
121
-            'errors' => glsr()->sessionGet($command->form_id.'errors', false),
122
-            'message' => glsr()->sessionGet($command->form_id.'message', ''),
123
-            'recaptcha' => glsr()->sessionGet($command->form_id.'recaptcha', false),
121
+            'errors' => glsr()->sessionGet( $command->form_id.'errors', false ),
122
+            'message' => glsr()->sessionGet( $command->form_id.'message', '' ),
123
+            'recaptcha' => glsr()->sessionGet( $command->form_id.'recaptcha', false ),
124 124
             'redirect' => $redirect,
125 125
         ];
126
-        if (false === $data['errors']) {
126
+        if( false === $data['errors'] ) {
127 127
             glsr()->sessionClear();
128
-            wp_send_json_success($data);
128
+            wp_send_json_success( $data );
129 129
         }
130
-        wp_send_json_error($data);
130
+        wp_send_json_error( $data );
131 131
     }
132 132
 
133 133
     /**
134 134
      * @return void
135 135
      */
136
-    public function routerFetchPagedReviews(array $request)
136
+    public function routerFetchPagedReviews( array $request )
137 137
     {
138 138
         $urlQuery = [];
139
-        parse_str(parse_url(glsr_get($request, 'url'), PHP_URL_QUERY), $urlQuery);
139
+        parse_str( parse_url( glsr_get( $request, 'url' ), PHP_URL_QUERY ), $urlQuery );
140 140
         $args = [
141
-            'paged' => glsr_get($urlQuery, glsr()->constant('PAGED_QUERY_VAR'), 1),
142
-            'pagedUrl' => home_url(parse_url(glsr_get($request, 'url'), PHP_URL_PATH)),
141
+            'paged' => glsr_get( $urlQuery, glsr()->constant( 'PAGED_QUERY_VAR' ), 1 ),
142
+            'pagedUrl' => home_url( parse_url( glsr_get( $request, 'url' ), PHP_URL_PATH ) ),
143 143
             'pagination' => 'ajax',
144 144
             'schema' => false,
145 145
         ];
146
-        $atts = (array) json_decode(glsr_get($request, 'atts'));
147
-        $html = glsr(SiteReviews::class)->build(wp_parse_args($args, $atts));
148
-        return wp_send_json_success([
146
+        $atts = (array)json_decode( glsr_get( $request, 'atts' ) );
147
+        $html = glsr( SiteReviews::class )->build( wp_parse_args( $args, $atts ) );
148
+        return wp_send_json_success( [
149 149
             'pagination' => $html->getPagination(),
150 150
             'reviews' => $html->getReviews(),
151
-        ]);
151
+        ] );
152 152
     }
153 153
 
154 154
     /**
155 155
      * @return void
156 156
      */
157
-    public function routerTogglePinned(array $request)
157
+    public function routerTogglePinned( array $request )
158 158
     {
159
-        $isPinned = $this->execute(new TogglePinned($request));
160
-        wp_send_json_success([
161
-            'notices' => glsr(Notice::class)->get(),
159
+        $isPinned = $this->execute( new TogglePinned( $request ) );
160
+        wp_send_json_success( [
161
+            'notices' => glsr( Notice::class )->get(),
162 162
             'pinned' => $isPinned,
163
-        ]);
163
+        ] );
164 164
     }
165 165
 }
Please login to merge, or discard this patch.
plugin/Modules/Upgrader.php 3 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,8 @@
 block discarded – undo
49 49
         if ($this->currentVersion !== glsr()->version) {
50 50
             $this->setReviewCounts();
51 51
             $this->updateVersionFrom($this->currentVersion);
52
-        } elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
52
+        }
53
+        elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
53 54
             $this->setReviewCounts();
54 55
         }
55 56
     }
Please login to merge, or discard this patch.
Indentation   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -7,84 +7,84 @@
 block discarded – undo
7 7
 
8 8
 class Upgrader
9 9
 {
10
-    /**
11
-     * @return string
12
-     */
13
-    public $currentVersion;
10
+	/**
11
+	 * @return string
12
+	 */
13
+	public $currentVersion;
14 14
 
15
-    /**
16
-     * @return void
17
-     */
18
-    public function run()
19
-    {
20
-        $filenames = [];
21
-        $iterator = new DirectoryIterator(dirname(__FILE__).'/Upgrader');
22
-        foreach ($iterator as $fileinfo) {
23
-            if ($fileinfo->isFile()) {
24
-                $filenames[] = $fileinfo->getFilename();
25
-            }
26
-        }
27
-        natsort($filenames);
28
-        $this->currentVersion = $this->currentVersion();
29
-        array_walk($filenames, function ($file) {
30
-            $className = str_replace('.php', '', $file);
31
-            $upgradeFromVersion = str_replace(['Upgrade_', '_'], ['', '.'], $className);
32
-            $suffix = preg_replace('/[\d.]+(.+)?/', '${1}', glsr()->version); // allow alpha/beta versions
33
-            if ('0.0.0' == $this->currentVersion
34
-                || version_compare($this->currentVersion, $upgradeFromVersion.$suffix, '>=')) {
35
-                return;
36
-            }
37
-            glsr('Modules\\Upgrader\\'.$className);
38
-            glsr_log()->notice('Completed Upgrade for v'.$upgradeFromVersion.$suffix);
39
-        });
40
-        $this->finish();
41
-    }
15
+	/**
16
+	 * @return void
17
+	 */
18
+	public function run()
19
+	{
20
+		$filenames = [];
21
+		$iterator = new DirectoryIterator(dirname(__FILE__).'/Upgrader');
22
+		foreach ($iterator as $fileinfo) {
23
+			if ($fileinfo->isFile()) {
24
+				$filenames[] = $fileinfo->getFilename();
25
+			}
26
+		}
27
+		natsort($filenames);
28
+		$this->currentVersion = $this->currentVersion();
29
+		array_walk($filenames, function ($file) {
30
+			$className = str_replace('.php', '', $file);
31
+			$upgradeFromVersion = str_replace(['Upgrade_', '_'], ['', '.'], $className);
32
+			$suffix = preg_replace('/[\d.]+(.+)?/', '${1}', glsr()->version); // allow alpha/beta versions
33
+			if ('0.0.0' == $this->currentVersion
34
+				|| version_compare($this->currentVersion, $upgradeFromVersion.$suffix, '>=')) {
35
+				return;
36
+			}
37
+			glsr('Modules\\Upgrader\\'.$className);
38
+			glsr_log()->notice('Completed Upgrade for v'.$upgradeFromVersion.$suffix);
39
+		});
40
+		$this->finish();
41
+	}
42 42
 
43
-    /**
44
-     * @return void
45
-     */
46
-    public function finish()
47
-    {
48
-        if ($this->currentVersion !== glsr()->version) {
49
-            $this->setReviewCounts();
50
-            $this->updateVersionFrom($this->currentVersion);
51
-        } elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
52
-            $this->setReviewCounts();
53
-        }
54
-    }
43
+	/**
44
+	 * @return void
45
+	 */
46
+	public function finish()
47
+	{
48
+		if ($this->currentVersion !== glsr()->version) {
49
+			$this->setReviewCounts();
50
+			$this->updateVersionFrom($this->currentVersion);
51
+		} elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
52
+			$this->setReviewCounts();
53
+		}
54
+	}
55 55
 
56
-    /**
57
-     * @return string
58
-     */
59
-    protected function currentVersion()
60
-    {
61
-        $fallback = '0.0.0';
62
-        $majorVersions = [4, 3, 2];
63
-        foreach ($majorVersions as $majorVersion) {
64
-            $settings = get_option(OptionManager::databaseKey($majorVersion));
65
-            $version = glsr_get($settings, 'version', $fallback);
66
-            if (version_compare($version, $fallback, '>')) {
67
-                return $version;
68
-            }
69
-        }
70
-        return $fallback;
71
-    }
56
+	/**
57
+	 * @return string
58
+	 */
59
+	protected function currentVersion()
60
+	{
61
+		$fallback = '0.0.0';
62
+		$majorVersions = [4, 3, 2];
63
+		foreach ($majorVersions as $majorVersion) {
64
+			$settings = get_option(OptionManager::databaseKey($majorVersion));
65
+			$version = glsr_get($settings, 'version', $fallback);
66
+			if (version_compare($version, $fallback, '>')) {
67
+				return $version;
68
+			}
69
+		}
70
+		return $fallback;
71
+	}
72 72
 
73
-    /**
74
-     * @return void
75
-     */
76
-    protected function setReviewCounts()
77
-    {
78
-        add_action('admin_init', 'glsr_calculate_ratings');
79
-    }
73
+	/**
74
+	 * @return void
75
+	 */
76
+	protected function setReviewCounts()
77
+	{
78
+		add_action('admin_init', 'glsr_calculate_ratings');
79
+	}
80 80
 
81
-    /**
82
-     * @param string $previousVersion
83
-     * @return void
84
-     */
85
-    protected function updateVersionFrom($previousVersion)
86
-    {
87
-        glsr(OptionManager::class)->set('version', glsr()->version);
88
-        glsr(OptionManager::class)->set('version_upgraded_from', $previousVersion);
89
-    }
81
+	/**
82
+	 * @param string $previousVersion
83
+	 * @return void
84
+	 */
85
+	protected function updateVersionFrom($previousVersion)
86
+	{
87
+		glsr(OptionManager::class)->set('version', glsr()->version);
88
+		glsr(OptionManager::class)->set('version_upgraded_from', $previousVersion);
89
+	}
90 90
 }
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -18,24 +18,24 @@  discard block
 block discarded – undo
18 18
     public function run()
19 19
     {
20 20
         $filenames = [];
21
-        $iterator = new DirectoryIterator(dirname(__FILE__).'/Upgrader');
22
-        foreach ($iterator as $fileinfo) {
23
-            if ($fileinfo->isFile()) {
21
+        $iterator = new DirectoryIterator( dirname( __FILE__ ).'/Upgrader' );
22
+        foreach( $iterator as $fileinfo ) {
23
+            if( $fileinfo->isFile() ) {
24 24
                 $filenames[] = $fileinfo->getFilename();
25 25
             }
26 26
         }
27
-        natsort($filenames);
27
+        natsort( $filenames );
28 28
         $this->currentVersion = $this->currentVersion();
29
-        array_walk($filenames, function ($file) {
30
-            $className = str_replace('.php', '', $file);
31
-            $upgradeFromVersion = str_replace(['Upgrade_', '_'], ['', '.'], $className);
32
-            $suffix = preg_replace('/[\d.]+(.+)?/', '${1}', glsr()->version); // allow alpha/beta versions
33
-            if ('0.0.0' == $this->currentVersion
34
-                || version_compare($this->currentVersion, $upgradeFromVersion.$suffix, '>=')) {
29
+        array_walk( $filenames, function( $file ) {
30
+            $className = str_replace( '.php', '', $file );
31
+            $upgradeFromVersion = str_replace( ['Upgrade_', '_'], ['', '.'], $className );
32
+            $suffix = preg_replace( '/[\d.]+(.+)?/', '${1}', glsr()->version ); // allow alpha/beta versions
33
+            if( '0.0.0' == $this->currentVersion
34
+                || version_compare( $this->currentVersion, $upgradeFromVersion.$suffix, '>=' ) ) {
35 35
                 return;
36 36
             }
37
-            glsr('Modules\\Upgrader\\'.$className);
38
-            glsr_log()->notice('Completed Upgrade for v'.$upgradeFromVersion.$suffix);
37
+            glsr( 'Modules\\Upgrader\\'.$className );
38
+            glsr_log()->notice( 'Completed Upgrade for v'.$upgradeFromVersion.$suffix );
39 39
         });
40 40
         $this->finish();
41 41
     }
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function finish()
47 47
     {
48
-        if ($this->currentVersion !== glsr()->version) {
48
+        if( $this->currentVersion !== glsr()->version ) {
49 49
             $this->setReviewCounts();
50
-            $this->updateVersionFrom($this->currentVersion);
51
-        } elseif (!glsr(OptionManager::class)->get('last_review_count', false)) {
50
+            $this->updateVersionFrom( $this->currentVersion );
51
+        } elseif( !glsr( OptionManager::class )->get( 'last_review_count', false ) ) {
52 52
             $this->setReviewCounts();
53 53
         }
54 54
     }
@@ -60,10 +60,10 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $fallback = '0.0.0';
62 62
         $majorVersions = [4, 3, 2];
63
-        foreach ($majorVersions as $majorVersion) {
64
-            $settings = get_option(OptionManager::databaseKey($majorVersion));
65
-            $version = glsr_get($settings, 'version', $fallback);
66
-            if (version_compare($version, $fallback, '>')) {
63
+        foreach( $majorVersions as $majorVersion ) {
64
+            $settings = get_option( OptionManager::databaseKey( $majorVersion ) );
65
+            $version = glsr_get( $settings, 'version', $fallback );
66
+            if( version_compare( $version, $fallback, '>' ) ) {
67 67
                 return $version;
68 68
             }
69 69
         }
@@ -75,16 +75,16 @@  discard block
 block discarded – undo
75 75
      */
76 76
     protected function setReviewCounts()
77 77
     {
78
-        add_action('admin_init', 'glsr_calculate_ratings');
78
+        add_action( 'admin_init', 'glsr_calculate_ratings' );
79 79
     }
80 80
 
81 81
     /**
82 82
      * @param string $previousVersion
83 83
      * @return void
84 84
      */
85
-    protected function updateVersionFrom($previousVersion)
85
+    protected function updateVersionFrom( $previousVersion )
86 86
     {
87
-        glsr(OptionManager::class)->set('version', glsr()->version);
88
-        glsr(OptionManager::class)->set('version_upgraded_from', $previousVersion);
87
+        glsr( OptionManager::class )->set( 'version', glsr()->version );
88
+        glsr( OptionManager::class )->set( 'version_upgraded_from', $previousVersion );
89 89
     }
90 90
 }
Please login to merge, or discard this patch.
plugin/Modules/Validator/ValidateReview.php 2 patches
Indentation   +241 added lines, -241 removed lines patch added patch discarded remove patch
@@ -11,265 +11,265 @@
 block discarded – undo
11 11
 
12 12
 class ValidateReview
13 13
 {
14
-    const RECAPTCHA_ENDPOINT = 'https://www.google.com/recaptcha/api/siteverify';
14
+	const RECAPTCHA_ENDPOINT = 'https://www.google.com/recaptcha/api/siteverify';
15 15
 
16
-    const RECAPTCHA_DISABLED = 0;
17
-    const RECAPTCHA_EMPTY = 1;
18
-    const RECAPTCHA_FAILED = 2;
19
-    const RECAPTCHA_INVALID = 3;
20
-    const RECAPTCHA_VALID = 4;
16
+	const RECAPTCHA_DISABLED = 0;
17
+	const RECAPTCHA_EMPTY = 1;
18
+	const RECAPTCHA_FAILED = 2;
19
+	const RECAPTCHA_INVALID = 3;
20
+	const RECAPTCHA_VALID = 4;
21 21
 
22
-    const VALIDATION_RULES = [
23
-        'content' => 'required',
24
-        'email' => 'required|email',
25
-        'name' => 'required',
26
-        'rating' => 'required|number|between:1,5',
27
-        'terms' => 'accepted',
28
-        'title' => 'required',
29
-    ];
22
+	const VALIDATION_RULES = [
23
+		'content' => 'required',
24
+		'email' => 'required|email',
25
+		'name' => 'required',
26
+		'rating' => 'required|number|between:1,5',
27
+		'terms' => 'accepted',
28
+		'title' => 'required',
29
+	];
30 30
 
31
-    /**
32
-     * @var string|void
33
-     */
34
-    public $error;
31
+	/**
32
+	 * @var string|void
33
+	 */
34
+	public $error;
35 35
 
36
-    /**
37
-     * @var string
38
-     */
39
-    public $form_id;
36
+	/**
37
+	 * @var string
38
+	 */
39
+	public $form_id;
40 40
 
41
-    /**
42
-     * @var bool
43
-     */
44
-    public $recaptchaIsUnset = false;
41
+	/**
42
+	 * @var bool
43
+	 */
44
+	public $recaptchaIsUnset = false;
45 45
 
46
-    /**
47
-     * @var array
48
-     */
49
-    public $request;
46
+	/**
47
+	 * @var array
48
+	 */
49
+	public $request;
50 50
 
51
-    /**
52
-     * @var array
53
-     */
54
-    protected $options;
51
+	/**
52
+	 * @var array
53
+	 */
54
+	protected $options;
55 55
 
56
-    /**
57
-     * @return static
58
-     */
59
-    public function validate(array $request)
60
-    {
61
-        $this->form_id = $request['form_id'];
62
-        $this->options = glsr(OptionManager::class)->all();
63
-        $this->request = $this->validateRequest($request);
64
-        $this->validateCustom();
65
-        $this->validateHoneyPot();
66
-        $this->validateBlacklist();
67
-        $this->validateAkismet();
68
-        $this->validateRecaptcha();
69
-        if (!empty($this->error)) {
70
-            $this->setSessionValues('message', $this->error);
71
-        }
72
-        return $this;
73
-    }
56
+	/**
57
+	 * @return static
58
+	 */
59
+	public function validate(array $request)
60
+	{
61
+		$this->form_id = $request['form_id'];
62
+		$this->options = glsr(OptionManager::class)->all();
63
+		$this->request = $this->validateRequest($request);
64
+		$this->validateCustom();
65
+		$this->validateHoneyPot();
66
+		$this->validateBlacklist();
67
+		$this->validateAkismet();
68
+		$this->validateRecaptcha();
69
+		if (!empty($this->error)) {
70
+			$this->setSessionValues('message', $this->error);
71
+		}
72
+		return $this;
73
+	}
74 74
 
75
-    /**
76
-     * @param string $path
77
-     * @param mixed $fallback
78
-     * @return mixed
79
-     */
80
-    protected function getOption($path, $fallback = '')
81
-    {
82
-        return glsr(Helper::class)->dataGet($this->options, $path, $fallback);
83
-    }
75
+	/**
76
+	 * @param string $path
77
+	 * @param mixed $fallback
78
+	 * @return mixed
79
+	 */
80
+	protected function getOption($path, $fallback = '')
81
+	{
82
+		return glsr(Helper::class)->dataGet($this->options, $path, $fallback);
83
+	}
84 84
 
85
-    /**
86
-     * @return int
87
-     */
88
-    protected function getRecaptchaStatus()
89
-    {
90
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
91
-            return static::RECAPTCHA_DISABLED;
92
-        }
93
-        if (empty($this->request['_recaptcha-token'])) {
94
-            return $this->request['_counter'] < intval(apply_filters('site-reviews/recaptcha/timeout', 5))
95
-                ? static::RECAPTCHA_EMPTY
96
-                : static::RECAPTCHA_FAILED;
97
-        }
98
-        return $this->getRecaptchaTokenStatus();
99
-    }
85
+	/**
86
+	 * @return int
87
+	 */
88
+	protected function getRecaptchaStatus()
89
+	{
90
+		if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
91
+			return static::RECAPTCHA_DISABLED;
92
+		}
93
+		if (empty($this->request['_recaptcha-token'])) {
94
+			return $this->request['_counter'] < intval(apply_filters('site-reviews/recaptcha/timeout', 5))
95
+				? static::RECAPTCHA_EMPTY
96
+				: static::RECAPTCHA_FAILED;
97
+		}
98
+		return $this->getRecaptchaTokenStatus();
99
+	}
100 100
 
101
-    /**
102
-     * @return int
103
-     */
104
-    protected function getRecaptchaTokenStatus()
105
-    {
106
-        $endpoint = add_query_arg([
107
-            'remoteip' => glsr(Helper::class)->getIpAddress(),
108
-            'response' => $this->request['_recaptcha-token'],
109
-            'secret' => $this->getOption('settings.submissions.recaptcha.secret'),
110
-        ], static::RECAPTCHA_ENDPOINT);
111
-        if (is_wp_error($response = wp_remote_get($endpoint))) {
112
-            glsr_log()->error($response->get_error_message());
113
-            return static::RECAPTCHA_FAILED;
114
-        }
115
-        $response = json_decode(wp_remote_retrieve_body($response));
116
-        if (!empty($response->success)) {
117
-            return boolval($response->success)
118
-                ? static::RECAPTCHA_VALID
119
-                : static::RECAPTCHA_INVALID;
120
-        }
121
-        foreach ($response->{'error-codes'} as $error) {
122
-            glsr_log()->error('reCAPTCHA error: '.$error);
123
-        }
124
-        return static::RECAPTCHA_INVALID;
125
-    }
101
+	/**
102
+	 * @return int
103
+	 */
104
+	protected function getRecaptchaTokenStatus()
105
+	{
106
+		$endpoint = add_query_arg([
107
+			'remoteip' => glsr(Helper::class)->getIpAddress(),
108
+			'response' => $this->request['_recaptcha-token'],
109
+			'secret' => $this->getOption('settings.submissions.recaptcha.secret'),
110
+		], static::RECAPTCHA_ENDPOINT);
111
+		if (is_wp_error($response = wp_remote_get($endpoint))) {
112
+			glsr_log()->error($response->get_error_message());
113
+			return static::RECAPTCHA_FAILED;
114
+		}
115
+		$response = json_decode(wp_remote_retrieve_body($response));
116
+		if (!empty($response->success)) {
117
+			return boolval($response->success)
118
+				? static::RECAPTCHA_VALID
119
+				: static::RECAPTCHA_INVALID;
120
+		}
121
+		foreach ($response->{'error-codes'} as $error) {
122
+			glsr_log()->error('reCAPTCHA error: '.$error);
123
+		}
124
+		return static::RECAPTCHA_INVALID;
125
+	}
126 126
 
127
-    /**
128
-     * @return array
129
-     */
130
-    protected function getValidationRules(array $request)
131
-    {
132
-        $rules = array_intersect_key(
133
-            apply_filters('site-reviews/validation/rules', static::VALIDATION_RULES, $request),
134
-            array_flip($this->getOption('settings.submissions.required', []))
135
-        );
136
-        $excluded = explode(',', glsr_get($request, 'excluded'));
137
-        return array_diff_key($rules, array_flip($excluded));
138
-    }
127
+	/**
128
+	 * @return array
129
+	 */
130
+	protected function getValidationRules(array $request)
131
+	{
132
+		$rules = array_intersect_key(
133
+			apply_filters('site-reviews/validation/rules', static::VALIDATION_RULES, $request),
134
+			array_flip($this->getOption('settings.submissions.required', []))
135
+		);
136
+		$excluded = explode(',', glsr_get($request, 'excluded'));
137
+		return array_diff_key($rules, array_flip($excluded));
138
+	}
139 139
 
140
-    /**
141
-     * @return bool
142
-     */
143
-    protected function isRequestValid(array $request)
144
-    {
145
-        $rules = $this->getValidationRules($request);
146
-        $errors = glsr(Validator::class)->validate($request, $rules);
147
-        if (empty($errors)) {
148
-            return true;
149
-        }
150
-        $this->setSessionValues('errors', $errors);
151
-        $this->setSessionValues('values', $request);
152
-        return false;
153
-    }
140
+	/**
141
+	 * @return bool
142
+	 */
143
+	protected function isRequestValid(array $request)
144
+	{
145
+		$rules = $this->getValidationRules($request);
146
+		$errors = glsr(Validator::class)->validate($request, $rules);
147
+		if (empty($errors)) {
148
+			return true;
149
+		}
150
+		$this->setSessionValues('errors', $errors);
151
+		$this->setSessionValues('values', $request);
152
+		return false;
153
+	}
154 154
 
155
-    /**
156
-     * @param string $type
157
-     * @param mixed $value
158
-     * @param string $loggedMessage
159
-     * @return void
160
-     */
161
-    protected function setSessionValues($type, $value, $loggedMessage = '')
162
-    {
163
-        glsr()->sessionSet($this->form_id.$type, $value);
164
-        if (!empty($loggedMessage)) {
165
-            glsr_log()->warning($loggedMessage)->debug($this->request);
166
-        }
167
-    }
155
+	/**
156
+	 * @param string $type
157
+	 * @param mixed $value
158
+	 * @param string $loggedMessage
159
+	 * @return void
160
+	 */
161
+	protected function setSessionValues($type, $value, $loggedMessage = '')
162
+	{
163
+		glsr()->sessionSet($this->form_id.$type, $value);
164
+		if (!empty($loggedMessage)) {
165
+			glsr_log()->warning($loggedMessage)->debug($this->request);
166
+		}
167
+	}
168 168
 
169
-    /**
170
-     * @return void
171
-     */
172
-    protected function validateAkismet()
173
-    {
174
-        if (!empty($this->error)) {
175
-            return;
176
-        }
177
-        if (!glsr(Akismet::class)->isSpam($this->request)) {
178
-            return;
179
-        }
180
-        $this->setSessionValues('errors', [], 'Akismet caught a spam submission (consider adding the IP address to the blacklist):');
181
-        $this->error = __('This review has been flagged as possible spam and cannot be submitted.', 'site-reviews');
182
-    }
169
+	/**
170
+	 * @return void
171
+	 */
172
+	protected function validateAkismet()
173
+	{
174
+		if (!empty($this->error)) {
175
+			return;
176
+		}
177
+		if (!glsr(Akismet::class)->isSpam($this->request)) {
178
+			return;
179
+		}
180
+		$this->setSessionValues('errors', [], 'Akismet caught a spam submission (consider adding the IP address to the blacklist):');
181
+		$this->error = __('This review has been flagged as possible spam and cannot be submitted.', 'site-reviews');
182
+	}
183 183
 
184
-    /**
185
-     * @return void
186
-     */
187
-    protected function validateBlacklist()
188
-    {
189
-        if (!empty($this->error)) {
190
-            return;
191
-        }
192
-        if (!glsr(Blacklist::class)->isBlacklisted($this->request)) {
193
-            return;
194
-        }
195
-        $blacklistAction = $this->getOption('settings.submissions.blacklist.action');
196
-        if ('reject' == $blacklistAction) {
197
-            $this->setSessionValues('errors', [], 'Blacklisted submission detected:');
198
-            $this->error = __('Your review cannot be submitted at this time.', 'site-reviews');
199
-            return;
200
-        }
201
-        $this->request['blacklisted'] = true;
202
-    }
184
+	/**
185
+	 * @return void
186
+	 */
187
+	protected function validateBlacklist()
188
+	{
189
+		if (!empty($this->error)) {
190
+			return;
191
+		}
192
+		if (!glsr(Blacklist::class)->isBlacklisted($this->request)) {
193
+			return;
194
+		}
195
+		$blacklistAction = $this->getOption('settings.submissions.blacklist.action');
196
+		if ('reject' == $blacklistAction) {
197
+			$this->setSessionValues('errors', [], 'Blacklisted submission detected:');
198
+			$this->error = __('Your review cannot be submitted at this time.', 'site-reviews');
199
+			return;
200
+		}
201
+		$this->request['blacklisted'] = true;
202
+	}
203 203
 
204
-    /**
205
-     * @return void
206
-     */
207
-    protected function validateCustom()
208
-    {
209
-        if (!empty($this->error)) {
210
-            return;
211
-        }
212
-        $validated = apply_filters('site-reviews/validate/custom', true, $this->request);
213
-        if (true === $validated) {
214
-            return;
215
-        }
216
-        $this->setSessionValues('errors', []);
217
-        $this->setSessionValues('values', $this->request);
218
-        $this->error = is_string($validated)
219
-            ? $validated
220
-            : __('The review submission failed. Please notify the site administrator.', 'site-reviews');
221
-    }
204
+	/**
205
+	 * @return void
206
+	 */
207
+	protected function validateCustom()
208
+	{
209
+		if (!empty($this->error)) {
210
+			return;
211
+		}
212
+		$validated = apply_filters('site-reviews/validate/custom', true, $this->request);
213
+		if (true === $validated) {
214
+			return;
215
+		}
216
+		$this->setSessionValues('errors', []);
217
+		$this->setSessionValues('values', $this->request);
218
+		$this->error = is_string($validated)
219
+			? $validated
220
+			: __('The review submission failed. Please notify the site administrator.', 'site-reviews');
221
+	}
222 222
 
223
-    /**
224
-     * @return void
225
-     */
226
-    protected function validateHoneyPot()
227
-    {
228
-        if (!empty($this->error)) {
229
-            return;
230
-        }
231
-        if (empty($this->request['gotcha'])) {
232
-            return;
233
-        }
234
-        $this->setSessionValues('errors', [], 'The Honeypot caught a bad submission:');
235
-        $this->error = __('The review submission failed. Please notify the site administrator.', 'site-reviews');
236
-    }
223
+	/**
224
+	 * @return void
225
+	 */
226
+	protected function validateHoneyPot()
227
+	{
228
+		if (!empty($this->error)) {
229
+			return;
230
+		}
231
+		if (empty($this->request['gotcha'])) {
232
+			return;
233
+		}
234
+		$this->setSessionValues('errors', [], 'The Honeypot caught a bad submission:');
235
+		$this->error = __('The review submission failed. Please notify the site administrator.', 'site-reviews');
236
+	}
237 237
 
238
-    /**
239
-     * @return void
240
-     */
241
-    protected function validateRecaptcha()
242
-    {
243
-        if (!empty($this->error)) {
244
-            return;
245
-        }
246
-        $status = $this->getRecaptchaStatus();
247
-        if (in_array($status, [static::RECAPTCHA_DISABLED, static::RECAPTCHA_VALID])) {
248
-            return;
249
-        }
250
-        if ($status == static::RECAPTCHA_EMPTY) {
251
-            $this->setSessionValues('recaptcha', 'unset');
252
-            $this->recaptchaIsUnset = true;
253
-            return;
254
-        }
255
-        $this->setSessionValues('errors', []);
256
-        $this->setSessionValues('recaptcha', 'reset');
257
-        $errors = [
258
-            static::RECAPTCHA_FAILED => __('The reCAPTCHA failed to load, please refresh the page and try again.', 'site-reviews'),
259
-            static::RECAPTCHA_INVALID => __('The reCAPTCHA verification failed, please try again.', 'site-reviews'),
260
-        ];
261
-        $this->error = $errors[$status];
262
-    }
238
+	/**
239
+	 * @return void
240
+	 */
241
+	protected function validateRecaptcha()
242
+	{
243
+		if (!empty($this->error)) {
244
+			return;
245
+		}
246
+		$status = $this->getRecaptchaStatus();
247
+		if (in_array($status, [static::RECAPTCHA_DISABLED, static::RECAPTCHA_VALID])) {
248
+			return;
249
+		}
250
+		if ($status == static::RECAPTCHA_EMPTY) {
251
+			$this->setSessionValues('recaptcha', 'unset');
252
+			$this->recaptchaIsUnset = true;
253
+			return;
254
+		}
255
+		$this->setSessionValues('errors', []);
256
+		$this->setSessionValues('recaptcha', 'reset');
257
+		$errors = [
258
+			static::RECAPTCHA_FAILED => __('The reCAPTCHA failed to load, please refresh the page and try again.', 'site-reviews'),
259
+			static::RECAPTCHA_INVALID => __('The reCAPTCHA verification failed, please try again.', 'site-reviews'),
260
+		];
261
+		$this->error = $errors[$status];
262
+	}
263 263
 
264
-    /**
265
-     * @return array
266
-     */
267
-    protected function validateRequest(array $request)
268
-    {
269
-        if (!$this->isRequestValid($request)) {
270
-            $this->error = __('Please fix the submission errors.', 'site-reviews');
271
-            return $request;
272
-        }
273
-        return array_merge(glsr(ValidateReviewDefaults::class)->defaults(), $request);
274
-    }
264
+	/**
265
+	 * @return array
266
+	 */
267
+	protected function validateRequest(array $request)
268
+	{
269
+		if (!$this->isRequestValid($request)) {
270
+			$this->error = __('Please fix the submission errors.', 'site-reviews');
271
+			return $request;
272
+		}
273
+		return array_merge(glsr(ValidateReviewDefaults::class)->defaults(), $request);
274
+	}
275 275
 }
Please login to merge, or discard this patch.
Spacing   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -56,18 +56,18 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * @return static
58 58
      */
59
-    public function validate(array $request)
59
+    public function validate( array $request )
60 60
     {
61 61
         $this->form_id = $request['form_id'];
62
-        $this->options = glsr(OptionManager::class)->all();
63
-        $this->request = $this->validateRequest($request);
62
+        $this->options = glsr( OptionManager::class )->all();
63
+        $this->request = $this->validateRequest( $request );
64 64
         $this->validateCustom();
65 65
         $this->validateHoneyPot();
66 66
         $this->validateBlacklist();
67 67
         $this->validateAkismet();
68 68
         $this->validateRecaptcha();
69
-        if (!empty($this->error)) {
70
-            $this->setSessionValues('message', $this->error);
69
+        if( !empty($this->error) ) {
70
+            $this->setSessionValues( 'message', $this->error );
71 71
         }
72 72
         return $this;
73 73
     }
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
      * @param mixed $fallback
78 78
      * @return mixed
79 79
      */
80
-    protected function getOption($path, $fallback = '')
80
+    protected function getOption( $path, $fallback = '' )
81 81
     {
82
-        return glsr(Helper::class)->dataGet($this->options, $path, $fallback);
82
+        return glsr( Helper::class )->dataGet( $this->options, $path, $fallback );
83 83
     }
84 84
 
85 85
     /**
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
      */
88 88
     protected function getRecaptchaStatus()
89 89
     {
90
-        if (!glsr(OptionManager::class)->isRecaptchaEnabled()) {
90
+        if( !glsr( OptionManager::class )->isRecaptchaEnabled() ) {
91 91
             return static::RECAPTCHA_DISABLED;
92 92
         }
93
-        if (empty($this->request['_recaptcha-token'])) {
94
-            return $this->request['_counter'] < intval(apply_filters('site-reviews/recaptcha/timeout', 5))
93
+        if( empty($this->request['_recaptcha-token']) ) {
94
+            return $this->request['_counter'] < intval( apply_filters( 'site-reviews/recaptcha/timeout', 5 ) )
95 95
                 ? static::RECAPTCHA_EMPTY
96 96
                 : static::RECAPTCHA_FAILED;
97 97
         }
@@ -103,23 +103,23 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected function getRecaptchaTokenStatus()
105 105
     {
106
-        $endpoint = add_query_arg([
107
-            'remoteip' => glsr(Helper::class)->getIpAddress(),
106
+        $endpoint = add_query_arg( [
107
+            'remoteip' => glsr( Helper::class )->getIpAddress(),
108 108
             'response' => $this->request['_recaptcha-token'],
109
-            'secret' => $this->getOption('settings.submissions.recaptcha.secret'),
110
-        ], static::RECAPTCHA_ENDPOINT);
111
-        if (is_wp_error($response = wp_remote_get($endpoint))) {
112
-            glsr_log()->error($response->get_error_message());
109
+            'secret' => $this->getOption( 'settings.submissions.recaptcha.secret' ),
110
+        ], static::RECAPTCHA_ENDPOINT );
111
+        if( is_wp_error( $response = wp_remote_get( $endpoint ) ) ) {
112
+            glsr_log()->error( $response->get_error_message() );
113 113
             return static::RECAPTCHA_FAILED;
114 114
         }
115
-        $response = json_decode(wp_remote_retrieve_body($response));
116
-        if (!empty($response->success)) {
117
-            return boolval($response->success)
115
+        $response = json_decode( wp_remote_retrieve_body( $response ) );
116
+        if( !empty($response->success) ) {
117
+            return boolval( $response->success )
118 118
                 ? static::RECAPTCHA_VALID
119 119
                 : static::RECAPTCHA_INVALID;
120 120
         }
121
-        foreach ($response->{'error-codes'} as $error) {
122
-            glsr_log()->error('reCAPTCHA error: '.$error);
121
+        foreach( $response->{'error-codes'} as $error ) {
122
+            glsr_log()->error( 'reCAPTCHA error: '.$error );
123 123
         }
124 124
         return static::RECAPTCHA_INVALID;
125 125
     }
@@ -127,28 +127,28 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * @return array
129 129
      */
130
-    protected function getValidationRules(array $request)
130
+    protected function getValidationRules( array $request )
131 131
     {
132 132
         $rules = array_intersect_key(
133
-            apply_filters('site-reviews/validation/rules', static::VALIDATION_RULES, $request),
134
-            array_flip($this->getOption('settings.submissions.required', []))
133
+            apply_filters( 'site-reviews/validation/rules', static::VALIDATION_RULES, $request ),
134
+            array_flip( $this->getOption( 'settings.submissions.required', [] ) )
135 135
         );
136
-        $excluded = explode(',', glsr_get($request, 'excluded'));
137
-        return array_diff_key($rules, array_flip($excluded));
136
+        $excluded = explode( ',', glsr_get( $request, 'excluded' ) );
137
+        return array_diff_key( $rules, array_flip( $excluded ) );
138 138
     }
139 139
 
140 140
     /**
141 141
      * @return bool
142 142
      */
143
-    protected function isRequestValid(array $request)
143
+    protected function isRequestValid( array $request )
144 144
     {
145
-        $rules = $this->getValidationRules($request);
146
-        $errors = glsr(Validator::class)->validate($request, $rules);
147
-        if (empty($errors)) {
145
+        $rules = $this->getValidationRules( $request );
146
+        $errors = glsr( Validator::class )->validate( $request, $rules );
147
+        if( empty($errors) ) {
148 148
             return true;
149 149
         }
150
-        $this->setSessionValues('errors', $errors);
151
-        $this->setSessionValues('values', $request);
150
+        $this->setSessionValues( 'errors', $errors );
151
+        $this->setSessionValues( 'values', $request );
152 152
         return false;
153 153
     }
154 154
 
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
      * @param string $loggedMessage
159 159
      * @return void
160 160
      */
161
-    protected function setSessionValues($type, $value, $loggedMessage = '')
161
+    protected function setSessionValues( $type, $value, $loggedMessage = '' )
162 162
     {
163
-        glsr()->sessionSet($this->form_id.$type, $value);
164
-        if (!empty($loggedMessage)) {
165
-            glsr_log()->warning($loggedMessage)->debug($this->request);
163
+        glsr()->sessionSet( $this->form_id.$type, $value );
164
+        if( !empty($loggedMessage) ) {
165
+            glsr_log()->warning( $loggedMessage )->debug( $this->request );
166 166
         }
167 167
     }
168 168
 
@@ -171,14 +171,14 @@  discard block
 block discarded – undo
171 171
      */
172 172
     protected function validateAkismet()
173 173
     {
174
-        if (!empty($this->error)) {
174
+        if( !empty($this->error) ) {
175 175
             return;
176 176
         }
177
-        if (!glsr(Akismet::class)->isSpam($this->request)) {
177
+        if( !glsr( Akismet::class )->isSpam( $this->request ) ) {
178 178
             return;
179 179
         }
180
-        $this->setSessionValues('errors', [], 'Akismet caught a spam submission (consider adding the IP address to the blacklist):');
181
-        $this->error = __('This review has been flagged as possible spam and cannot be submitted.', 'site-reviews');
180
+        $this->setSessionValues( 'errors', [], 'Akismet caught a spam submission (consider adding the IP address to the blacklist):' );
181
+        $this->error = __( 'This review has been flagged as possible spam and cannot be submitted.', 'site-reviews' );
182 182
     }
183 183
 
184 184
     /**
@@ -186,16 +186,16 @@  discard block
 block discarded – undo
186 186
      */
187 187
     protected function validateBlacklist()
188 188
     {
189
-        if (!empty($this->error)) {
189
+        if( !empty($this->error) ) {
190 190
             return;
191 191
         }
192
-        if (!glsr(Blacklist::class)->isBlacklisted($this->request)) {
192
+        if( !glsr( Blacklist::class )->isBlacklisted( $this->request ) ) {
193 193
             return;
194 194
         }
195
-        $blacklistAction = $this->getOption('settings.submissions.blacklist.action');
196
-        if ('reject' == $blacklistAction) {
197
-            $this->setSessionValues('errors', [], 'Blacklisted submission detected:');
198
-            $this->error = __('Your review cannot be submitted at this time.', 'site-reviews');
195
+        $blacklistAction = $this->getOption( 'settings.submissions.blacklist.action' );
196
+        if( 'reject' == $blacklistAction ) {
197
+            $this->setSessionValues( 'errors', [], 'Blacklisted submission detected:' );
198
+            $this->error = __( 'Your review cannot be submitted at this time.', 'site-reviews' );
199 199
             return;
200 200
         }
201 201
         $this->request['blacklisted'] = true;
@@ -206,18 +206,18 @@  discard block
 block discarded – undo
206 206
      */
207 207
     protected function validateCustom()
208 208
     {
209
-        if (!empty($this->error)) {
209
+        if( !empty($this->error) ) {
210 210
             return;
211 211
         }
212
-        $validated = apply_filters('site-reviews/validate/custom', true, $this->request);
213
-        if (true === $validated) {
212
+        $validated = apply_filters( 'site-reviews/validate/custom', true, $this->request );
213
+        if( true === $validated ) {
214 214
             return;
215 215
         }
216
-        $this->setSessionValues('errors', []);
217
-        $this->setSessionValues('values', $this->request);
218
-        $this->error = is_string($validated)
216
+        $this->setSessionValues( 'errors', [] );
217
+        $this->setSessionValues( 'values', $this->request );
218
+        $this->error = is_string( $validated )
219 219
             ? $validated
220
-            : __('The review submission failed. Please notify the site administrator.', 'site-reviews');
220
+            : __( 'The review submission failed. Please notify the site administrator.', 'site-reviews' );
221 221
     }
222 222
 
223 223
     /**
@@ -225,14 +225,14 @@  discard block
 block discarded – undo
225 225
      */
226 226
     protected function validateHoneyPot()
227 227
     {
228
-        if (!empty($this->error)) {
228
+        if( !empty($this->error) ) {
229 229
             return;
230 230
         }
231
-        if (empty($this->request['gotcha'])) {
231
+        if( empty($this->request['gotcha']) ) {
232 232
             return;
233 233
         }
234
-        $this->setSessionValues('errors', [], 'The Honeypot caught a bad submission:');
235
-        $this->error = __('The review submission failed. Please notify the site administrator.', 'site-reviews');
234
+        $this->setSessionValues( 'errors', [], 'The Honeypot caught a bad submission:' );
235
+        $this->error = __( 'The review submission failed. Please notify the site administrator.', 'site-reviews' );
236 236
     }
237 237
 
238 238
     /**
@@ -240,23 +240,23 @@  discard block
 block discarded – undo
240 240
      */
241 241
     protected function validateRecaptcha()
242 242
     {
243
-        if (!empty($this->error)) {
243
+        if( !empty($this->error) ) {
244 244
             return;
245 245
         }
246 246
         $status = $this->getRecaptchaStatus();
247
-        if (in_array($status, [static::RECAPTCHA_DISABLED, static::RECAPTCHA_VALID])) {
247
+        if( in_array( $status, [static::RECAPTCHA_DISABLED, static::RECAPTCHA_VALID] ) ) {
248 248
             return;
249 249
         }
250
-        if ($status == static::RECAPTCHA_EMPTY) {
251
-            $this->setSessionValues('recaptcha', 'unset');
250
+        if( $status == static::RECAPTCHA_EMPTY ) {
251
+            $this->setSessionValues( 'recaptcha', 'unset' );
252 252
             $this->recaptchaIsUnset = true;
253 253
             return;
254 254
         }
255
-        $this->setSessionValues('errors', []);
256
-        $this->setSessionValues('recaptcha', 'reset');
255
+        $this->setSessionValues( 'errors', [] );
256
+        $this->setSessionValues( 'recaptcha', 'reset' );
257 257
         $errors = [
258
-            static::RECAPTCHA_FAILED => __('The reCAPTCHA failed to load, please refresh the page and try again.', 'site-reviews'),
259
-            static::RECAPTCHA_INVALID => __('The reCAPTCHA verification failed, please try again.', 'site-reviews'),
258
+            static::RECAPTCHA_FAILED => __( 'The reCAPTCHA failed to load, please refresh the page and try again.', 'site-reviews' ),
259
+            static::RECAPTCHA_INVALID => __( 'The reCAPTCHA verification failed, please try again.', 'site-reviews' ),
260 260
         ];
261 261
         $this->error = $errors[$status];
262 262
     }
@@ -264,12 +264,12 @@  discard block
 block discarded – undo
264 264
     /**
265 265
      * @return array
266 266
      */
267
-    protected function validateRequest(array $request)
267
+    protected function validateRequest( array $request )
268 268
     {
269
-        if (!$this->isRequestValid($request)) {
270
-            $this->error = __('Please fix the submission errors.', 'site-reviews');
269
+        if( !$this->isRequestValid( $request ) ) {
270
+            $this->error = __( 'Please fix the submission errors.', 'site-reviews' );
271 271
             return $request;
272 272
         }
273
-        return array_merge(glsr(ValidateReviewDefaults::class)->defaults(), $request);
273
+        return array_merge( glsr( ValidateReviewDefaults::class )->defaults(), $request );
274 274
     }
275 275
 }
Please login to merge, or discard this patch.
plugin/Provider.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@
 block discarded – undo
10 10
 
11 11
 class Provider implements ProviderContract
12 12
 {
13
-    /**
14
-     * @return void
15
-     */
16
-    public function register(Application $app)
17
-    {
18
-        $app->bind(Application::class, $app);
19
-        $app->singleton(Actions::class, Actions::class);
20
-        $app->singleton(Filters::class, Filters::class);
21
-        $app->singleton(OptionManager::class, OptionManager::class);
22
-        $app->singleton(Translator::class, Translator::class);
23
-        $app->singleton(Translation::class, Translation::class);
24
-        $app->singleton(MainController::class, MainController::class); // this goes last
25
-    }
13
+	/**
14
+	 * @return void
15
+	 */
16
+	public function register(Application $app)
17
+	{
18
+		$app->bind(Application::class, $app);
19
+		$app->singleton(Actions::class, Actions::class);
20
+		$app->singleton(Filters::class, Filters::class);
21
+		$app->singleton(OptionManager::class, OptionManager::class);
22
+		$app->singleton(Translator::class, Translator::class);
23
+		$app->singleton(Translation::class, Translation::class);
24
+		$app->singleton(MainController::class, MainController::class); // this goes last
25
+	}
26 26
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
     /**
14 14
      * @return void
15 15
      */
16
-    public function register(Application $app)
16
+    public function register( Application $app )
17 17
     {
18
-        $app->bind(Application::class, $app);
19
-        $app->singleton(Actions::class, Actions::class);
20
-        $app->singleton(Filters::class, Filters::class);
21
-        $app->singleton(OptionManager::class, OptionManager::class);
22
-        $app->singleton(Translator::class, Translator::class);
23
-        $app->singleton(Translation::class, Translation::class);
24
-        $app->singleton(MainController::class, MainController::class); // this goes last
18
+        $app->bind( Application::class, $app );
19
+        $app->singleton( Actions::class, Actions::class );
20
+        $app->singleton( Filters::class, Filters::class );
21
+        $app->singleton( OptionManager::class, OptionManager::class );
22
+        $app->singleton( Translator::class, Translator::class );
23
+        $app->singleton( Translation::class, Translation::class );
24
+        $app->singleton( MainController::class, MainController::class ); // this goes last
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
plugin/Handlers/ChangeStatus.php 2 patches
Indentation   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -8,70 +8,70 @@
 block discarded – undo
8 8
 
9 9
 class ChangeStatus
10 10
 {
11
-    /**
12
-     * @return array
13
-     */
14
-    public function handle(Command $command)
15
-    {
16
-        $postId = wp_update_post([
17
-            'ID' => $command->id,
18
-            'post_status' => $command->status,
19
-        ]);
20
-        if (is_wp_error($postId)) {
21
-            glsr_log()->error($postId->get_error_message());
22
-            return [];
23
-        }
24
-        return [
25
-            'class' => 'status-'.$command->status,
26
-            'counts' => $this->getStatusLinks(),
27
-            'link' => $this->getPostLink($postId).$this->getPostState($postId),
28
-            'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending,
29
-        ];
30
-    }
11
+	/**
12
+	 * @return array
13
+	 */
14
+	public function handle(Command $command)
15
+	{
16
+		$postId = wp_update_post([
17
+			'ID' => $command->id,
18
+			'post_status' => $command->status,
19
+		]);
20
+		if (is_wp_error($postId)) {
21
+			glsr_log()->error($postId->get_error_message());
22
+			return [];
23
+		}
24
+		return [
25
+			'class' => 'status-'.$command->status,
26
+			'counts' => $this->getStatusLinks(),
27
+			'link' => $this->getPostLink($postId).$this->getPostState($postId),
28
+			'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending,
29
+		];
30
+	}
31 31
 
32
-    /**
33
-     * @param int $postId
34
-     * @return string
35
-     */
36
-    protected function getPostLink($postId)
37
-    {
38
-        $title = _draft_or_post_title($postId);
39
-        return glsr(Builder::class)->a($title, [
40
-            'aria-label' => '&#8220;'.esc_attr($title).'&#8221; ('.__('Edit', 'site-reviews').')',
41
-            'class' => 'row-title',
42
-            'href' => get_edit_post_link($postId),
43
-        ]);
44
-    }
32
+	/**
33
+	 * @param int $postId
34
+	 * @return string
35
+	 */
36
+	protected function getPostLink($postId)
37
+	{
38
+		$title = _draft_or_post_title($postId);
39
+		return glsr(Builder::class)->a($title, [
40
+			'aria-label' => '&#8220;'.esc_attr($title).'&#8221; ('.__('Edit', 'site-reviews').')',
41
+			'class' => 'row-title',
42
+			'href' => get_edit_post_link($postId),
43
+		]);
44
+	}
45 45
 
46
-    /**
47
-     * @param int $postId
48
-     * @return string
49
-     */
50
-    protected function getPostState($postId)
51
-    {
52
-        ob_start();
53
-        _post_states(get_post($postId));
54
-        return ob_get_clean();
55
-    }
46
+	/**
47
+	 * @param int $postId
48
+	 * @return string
49
+	 */
50
+	protected function getPostState($postId)
51
+	{
52
+		ob_start();
53
+		_post_states(get_post($postId));
54
+		return ob_get_clean();
55
+	}
56 56
 
57
-    /**
58
-     * @return void|string
59
-     */
60
-    protected function getStatusLinks()
61
-    {
62
-        global $avail_post_stati;
63
-        require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php';
64
-        $hookName = 'edit-'.Application::POST_TYPE;
65
-        set_current_screen($hookName);
66
-        $avail_post_stati = get_available_post_statuses(Application::POST_TYPE);
67
-        $table = new \WP_Posts_List_Table(['screen' => $hookName]);
68
-        $views = apply_filters('views_'.$hookName, $table->get_views()); // uses compat get_views()
69
-        if (empty($views)) {
70
-            return;
71
-        }
72
-        foreach ($views as $class => $view) {
73
-            $views[$class] = "\t<li class='$class'>$view";
74
-        }
75
-        return implode(' |</li>', $views).'</li>';
76
-    }
57
+	/**
58
+	 * @return void|string
59
+	 */
60
+	protected function getStatusLinks()
61
+	{
62
+		global $avail_post_stati;
63
+		require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php';
64
+		$hookName = 'edit-'.Application::POST_TYPE;
65
+		set_current_screen($hookName);
66
+		$avail_post_stati = get_available_post_statuses(Application::POST_TYPE);
67
+		$table = new \WP_Posts_List_Table(['screen' => $hookName]);
68
+		$views = apply_filters('views_'.$hookName, $table->get_views()); // uses compat get_views()
69
+		if (empty($views)) {
70
+			return;
71
+		}
72
+		foreach ($views as $class => $view) {
73
+			$views[$class] = "\t<li class='$class'>$view";
74
+		}
75
+		return implode(' |</li>', $views).'</li>';
76
+	}
77 77
 }
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -11,21 +11,21 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @return array
13 13
      */
14
-    public function handle(Command $command)
14
+    public function handle( Command $command )
15 15
     {
16
-        $postId = wp_update_post([
16
+        $postId = wp_update_post( [
17 17
             'ID' => $command->id,
18 18
             'post_status' => $command->status,
19
-        ]);
20
-        if (is_wp_error($postId)) {
21
-            glsr_log()->error($postId->get_error_message());
19
+        ] );
20
+        if( is_wp_error( $postId ) ) {
21
+            glsr_log()->error( $postId->get_error_message() );
22 22
             return [];
23 23
         }
24 24
         return [
25 25
             'class' => 'status-'.$command->status,
26 26
             'counts' => $this->getStatusLinks(),
27
-            'link' => $this->getPostLink($postId).$this->getPostState($postId),
28
-            'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending,
27
+            'link' => $this->getPostLink( $postId ).$this->getPostState( $postId ),
28
+            'pending' => wp_count_posts( Application::POST_TYPE, 'readable' )->pending,
29 29
         ];
30 30
     }
31 31
 
@@ -33,24 +33,24 @@  discard block
 block discarded – undo
33 33
      * @param int $postId
34 34
      * @return string
35 35
      */
36
-    protected function getPostLink($postId)
36
+    protected function getPostLink( $postId )
37 37
     {
38
-        $title = _draft_or_post_title($postId);
39
-        return glsr(Builder::class)->a($title, [
40
-            'aria-label' => '&#8220;'.esc_attr($title).'&#8221; ('.__('Edit', 'site-reviews').')',
38
+        $title = _draft_or_post_title( $postId );
39
+        return glsr( Builder::class )->a( $title, [
40
+            'aria-label' => '&#8220;'.esc_attr( $title ).'&#8221; ('.__( 'Edit', 'site-reviews' ).')',
41 41
             'class' => 'row-title',
42
-            'href' => get_edit_post_link($postId),
43
-        ]);
42
+            'href' => get_edit_post_link( $postId ),
43
+        ] );
44 44
     }
45 45
 
46 46
     /**
47 47
      * @param int $postId
48 48
      * @return string
49 49
      */
50
-    protected function getPostState($postId)
50
+    protected function getPostState( $postId )
51 51
     {
52 52
         ob_start();
53
-        _post_states(get_post($postId));
53
+        _post_states( get_post( $postId ) );
54 54
         return ob_get_clean();
55 55
     }
56 56
 
@@ -62,16 +62,16 @@  discard block
 block discarded – undo
62 62
         global $avail_post_stati;
63 63
         require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php';
64 64
         $hookName = 'edit-'.Application::POST_TYPE;
65
-        set_current_screen($hookName);
66
-        $avail_post_stati = get_available_post_statuses(Application::POST_TYPE);
67
-        $table = new \WP_Posts_List_Table(['screen' => $hookName]);
68
-        $views = apply_filters('views_'.$hookName, $table->get_views()); // uses compat get_views()
69
-        if (empty($views)) {
65
+        set_current_screen( $hookName );
66
+        $avail_post_stati = get_available_post_statuses( Application::POST_TYPE );
67
+        $table = new \WP_Posts_List_Table( ['screen' => $hookName] );
68
+        $views = apply_filters( 'views_'.$hookName, $table->get_views() ); // uses compat get_views()
69
+        if( empty($views) ) {
70 70
             return;
71 71
         }
72
-        foreach ($views as $class => $view) {
72
+        foreach( $views as $class => $view ) {
73 73
             $views[$class] = "\t<li class='$class'>$view";
74 74
         }
75
-        return implode(' |</li>', $views).'</li>';
75
+        return implode( ' |</li>', $views ).'</li>';
76 76
     }
77 77
 }
Please login to merge, or discard this patch.
plugin/Handlers/CreateReview.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -8,40 +8,40 @@
 block discarded – undo
8 8
 
9 9
 class CreateReview
10 10
 {
11
-    /**
12
-     * @return void|string
13
-     */
14
-    public function handle(Command $command)
15
-    {
16
-        $review = glsr(ReviewManager::class)->create($command);
17
-        if (!$review) {
18
-            glsr()->sessionSet($command->form_id.'errors', []);
19
-            glsr()->sessionSet($command->form_id.'message', __('Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews'));
20
-            return;
21
-        }
22
-        glsr()->sessionSet($command->form_id.'message', __('Your review has been submitted!', 'site-reviews'));
23
-        glsr(Notification::class)->send($review);
24
-        if ($command->ajax_request) {
25
-            return;
26
-        }
27
-        wp_safe_redirect($this->getReferer($command));
28
-        exit;
29
-    }
11
+	/**
12
+	 * @return void|string
13
+	 */
14
+	public function handle(Command $command)
15
+	{
16
+		$review = glsr(ReviewManager::class)->create($command);
17
+		if (!$review) {
18
+			glsr()->sessionSet($command->form_id.'errors', []);
19
+			glsr()->sessionSet($command->form_id.'message', __('Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews'));
20
+			return;
21
+		}
22
+		glsr()->sessionSet($command->form_id.'message', __('Your review has been submitted!', 'site-reviews'));
23
+		glsr(Notification::class)->send($review);
24
+		if ($command->ajax_request) {
25
+			return;
26
+		}
27
+		wp_safe_redirect($this->getReferer($command));
28
+		exit;
29
+	}
30 30
 
31
-    /**
32
-     * @return string
33
-     */
34
-    protected function getReferer(Command $command)
35
-    {
36
-        $referer = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
37
-        $referer = apply_filters('site-reviews/review/redirect', $referer, $command);
38
-        if (empty($referer)) {
39
-            $referer = $command->referer;
40
-        }
41
-        if (empty($referer)) {
42
-            glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command);
43
-            $referer = home_url();
44
-        }
45
-        return $referer;
46
-    }
31
+	/**
32
+	 * @return string
33
+	 */
34
+	protected function getReferer(Command $command)
35
+	{
36
+		$referer = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
37
+		$referer = apply_filters('site-reviews/review/redirect', $referer, $command);
38
+		if (empty($referer)) {
39
+			$referer = $command->referer;
40
+		}
41
+		if (empty($referer)) {
42
+			glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command);
43
+			$referer = home_url();
44
+		}
45
+		return $referer;
46
+	}
47 47
 }
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -11,35 +11,35 @@
 block discarded – undo
11 11
     /**
12 12
      * @return void|string
13 13
      */
14
-    public function handle(Command $command)
14
+    public function handle( Command $command )
15 15
     {
16
-        $review = glsr(ReviewManager::class)->create($command);
17
-        if (!$review) {
18
-            glsr()->sessionSet($command->form_id.'errors', []);
19
-            glsr()->sessionSet($command->form_id.'message', __('Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews'));
16
+        $review = glsr( ReviewManager::class )->create( $command );
17
+        if( !$review ) {
18
+            glsr()->sessionSet( $command->form_id.'errors', [] );
19
+            glsr()->sessionSet( $command->form_id.'message', __( 'Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews' ) );
20 20
             return;
21 21
         }
22
-        glsr()->sessionSet($command->form_id.'message', __('Your review has been submitted!', 'site-reviews'));
23
-        glsr(Notification::class)->send($review);
24
-        if ($command->ajax_request) {
22
+        glsr()->sessionSet( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' ) );
23
+        glsr( Notification::class )->send( $review );
24
+        if( $command->ajax_request ) {
25 25
             return;
26 26
         }
27
-        wp_safe_redirect($this->getReferer($command));
27
+        wp_safe_redirect( $this->getReferer( $command ) );
28 28
         exit;
29 29
     }
30 30
 
31 31
     /**
32 32
      * @return string
33 33
      */
34
-    protected function getReferer(Command $command)
34
+    protected function getReferer( Command $command )
35 35
     {
36
-        $referer = trim(strval(get_post_meta($command->post_id, 'redirect_to', true)));
37
-        $referer = apply_filters('site-reviews/review/redirect', $referer, $command);
38
-        if (empty($referer)) {
36
+        $referer = trim( strval( get_post_meta( $command->post_id, 'redirect_to', true ) ) );
37
+        $referer = apply_filters( 'site-reviews/review/redirect', $referer, $command );
38
+        if( empty($referer) ) {
39 39
             $referer = $command->referer;
40 40
         }
41
-        if (empty($referer)) {
42
-            glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command);
41
+        if( empty($referer) ) {
42
+            glsr_log()->warning( 'The form referer ($_SERVER[REQUEST_URI]) was empty.' )->debug( $command );
43 43
             $referer = home_url();
44 44
         }
45 45
         return $referer;
Please login to merge, or discard this patch.
deprecated.php 2 patches
Indentation   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -4,131 +4,131 @@
 block discarded – undo
4 4
 
5 5
 // Unprotected review meta has been deprecated
6 6
 add_filter('get_post_metadata', function ($check, $postId, $metaKey, $single) {
7
-    $metaKeys = array_keys(glsr('Defaults\CreateReviewDefaults')->defaults());
8
-    if (!in_array($metaKey, $metaKeys) || glsr()->post_type != get_post_type($postId)) {
9
-        return $check;
10
-    }
11
-    glsr()->deprecated[] = sprintf(
12
-        'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.',
13
-        $metaKey
14
-    );
15
-    return get_post_meta($postId, '_'.$metaKey, $single);
7
+	$metaKeys = array_keys(glsr('Defaults\CreateReviewDefaults')->defaults());
8
+	if (!in_array($metaKey, $metaKeys) || glsr()->post_type != get_post_type($postId)) {
9
+		return $check;
10
+	}
11
+	glsr()->deprecated[] = sprintf(
12
+		'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.',
13
+		$metaKey
14
+	);
15
+	return get_post_meta($postId, '_'.$metaKey, $single);
16 16
 }, 10, 4);
17 17
 
18 18
 // Modules/Html/Template.php
19 19
 add_filter('site-reviews/interpolate/reviews', function ($context, $template) {
20
-    $search = '{{ navigation }}';
21
-    if (false !== strpos($template, $search)) {
22
-        $context['navigation'] = $context['pagination'];
23
-        glsr()->deprecated[] = 'The {{ navigation }} template key in "YOUR_THEME/site-reviews/reviews.php" has been deprecated. Please use the {{ pagination }} template key instead.';
24
-    }
25
-    return $context;
20
+	$search = '{{ navigation }}';
21
+	if (false !== strpos($template, $search)) {
22
+		$context['navigation'] = $context['pagination'];
23
+		glsr()->deprecated[] = 'The {{ navigation }} template key in "YOUR_THEME/site-reviews/reviews.php" has been deprecated. Please use the {{ pagination }} template key instead.';
24
+	}
25
+	return $context;
26 26
 }, 10, 2);
27 27
 
28 28
 // Database/ReviewManager.php
29 29
 add_action('site-reviews/review/created', function ($review) {
30
-    if (has_action('site-reviews/local/review/create')) {
31
-        glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.';
32
-        do_action('site-reviews/local/review/create', (array) get_post($review->ID), (array) $review, $review->ID);
33
-    }
30
+	if (has_action('site-reviews/local/review/create')) {
31
+		glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.';
32
+		do_action('site-reviews/local/review/create', (array) get_post($review->ID), (array) $review, $review->ID);
33
+	}
34 34
 }, 9);
35 35
 
36 36
 // Handlers/CreateReview.php
37 37
 add_action('site-reviews/review/submitted', function ($review) {
38
-    if (has_action('site-reviews/local/review/submitted')) {
39
-        glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.';
40
-        do_action('site-reviews/local/review/submitted', null, $review);
41
-    }
42
-    if (has_filter('site-reviews/local/review/submitted/message')) {
43
-        glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
44
-    }
38
+	if (has_action('site-reviews/local/review/submitted')) {
39
+		glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.';
40
+		do_action('site-reviews/local/review/submitted', null, $review);
41
+	}
42
+	if (has_filter('site-reviews/local/review/submitted/message')) {
43
+		glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
44
+	}
45 45
 }, 9);
46 46
 
47 47
 // Database/ReviewManager.php
48 48
 add_filter('site-reviews/create/review-values', function ($values, $command) {
49
-    if (has_filter('site-reviews/local/review')) {
50
-        glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.';
51
-        return apply_filters('site-reviews/local/review', $values, $command);
52
-    }
53
-    return $values;
49
+	if (has_filter('site-reviews/local/review')) {
50
+		glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.';
51
+		return apply_filters('site-reviews/local/review', $values, $command);
52
+	}
53
+	return $values;
54 54
 }, 9, 2);
55 55
 
56 56
 // Handlers/EnqueuePublicAssets.php
57 57
 add_filter('site-reviews/enqueue/public/localize', function ($variables) {
58
-    if (has_filter('site-reviews/enqueue/localize')) {
59
-        glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.';
60
-        return apply_filters('site-reviews/enqueue/localize', $variables);
61
-    }
62
-    return $variables;
58
+	if (has_filter('site-reviews/enqueue/localize')) {
59
+		glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.';
60
+		return apply_filters('site-reviews/enqueue/localize', $variables);
61
+	}
62
+	return $variables;
63 63
 }, 9);
64 64
 
65 65
 // Modules/Rating.php
66 66
 add_filter('site-reviews/rating/average', function ($average) {
67
-    if (has_filter('site-reviews/average/rating')) {
68
-        glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
69
-    }
70
-    return $average;
67
+	if (has_filter('site-reviews/average/rating')) {
68
+		glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
69
+	}
70
+	return $average;
71 71
 }, 9);
72 72
 
73 73
 // Modules/Rating.php
74 74
 add_filter('site-reviews/rating/ranking', function ($ranking) {
75
-    if (has_filter('site-reviews/bayesian/ranking')) {
76
-        glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
77
-    }
78
-    return $ranking;
75
+	if (has_filter('site-reviews/bayesian/ranking')) {
76
+		glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
77
+	}
78
+	return $ranking;
79 79
 }, 9);
80 80
 
81 81
 // Modules/Html/Partials/SiteReviews.php
82 82
 add_filter('site-reviews/review/build/after', function ($renderedFields) {
83
-    if (has_filter('site-reviews/reviews/review/text')) {
84
-        glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
85
-    }
86
-    if (has_filter('site-reviews/reviews/review/title')) {
87
-        glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
88
-    }
89
-    return $renderedFields;
83
+	if (has_filter('site-reviews/reviews/review/text')) {
84
+		glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
85
+	}
86
+	if (has_filter('site-reviews/reviews/review/title')) {
87
+		glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
88
+	}
89
+	return $renderedFields;
90 90
 }, 9);
91 91
 
92 92
 // Modules/Html/Partials/SiteReviews.php
93 93
 add_filter('site-reviews/review/build/before', function ($review) {
94
-    if (has_filter('site-reviews/rendered/review')) {
95
-        glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.';
96
-    }
97
-    if (has_filter('site-reviews/rendered/review/meta/order')) {
98
-        glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
99
-    }
100
-    if (has_filter('site-reviews/rendered/review/order')) {
101
-        glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
102
-    }
103
-    if (has_filter('site-reviews/rendered/review-form/login-register')) {
104
-        glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).';
105
-    }
106
-    if (has_filter('site-reviews/reviews/navigation_links')) {
107
-        glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).';
108
-    }
109
-    return $review;
94
+	if (has_filter('site-reviews/rendered/review')) {
95
+		glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.';
96
+	}
97
+	if (has_filter('site-reviews/rendered/review/meta/order')) {
98
+		glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
99
+	}
100
+	if (has_filter('site-reviews/rendered/review/order')) {
101
+		glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
102
+	}
103
+	if (has_filter('site-reviews/rendered/review-form/login-register')) {
104
+		glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).';
105
+	}
106
+	if (has_filter('site-reviews/reviews/navigation_links')) {
107
+		glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).';
108
+	}
109
+	return $review;
110 110
 }, 9);
111 111
 
112 112
 add_filter('site-reviews/validate/custom', function ($result, $request) {
113
-    if (has_filter('site-reviews/validate/review/submission')) {
114
-        glsr_log()->warning('The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.');
115
-        return apply_filters('site-reviews/validate/review/submission', $result, $request);
116
-    }
117
-    return $result;
113
+	if (has_filter('site-reviews/validate/review/submission')) {
114
+		glsr_log()->warning('The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.');
115
+		return apply_filters('site-reviews/validate/review/submission', $result, $request);
116
+	}
117
+	return $result;
118 118
 }, 9, 2);
119 119
 
120 120
 add_filter('site-reviews/views/file', function ($file, $view, $data) {
121
-    if (has_filter('site-reviews/addon/views/file')) {
122
-        glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.';
123
-        $file = apply_filters('site-reviews/addon/views/file', $file, $view, $data);
124
-    }
125
-    return $file;
121
+	if (has_filter('site-reviews/addon/views/file')) {
122
+		glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.';
123
+		$file = apply_filters('site-reviews/addon/views/file', $file, $view, $data);
124
+	}
125
+	return $file;
126 126
 }, 9, 3);
127 127
 
128 128
 add_action('wp_footer', function () {
129
-    $notices = array_keys(array_flip(glsr()->deprecated));
130
-    natsort($notices);
131
-    foreach ($notices as $notice) {
132
-        glsr_log()->warning($notice);
133
-    }
129
+	$notices = array_keys(array_flip(glsr()->deprecated));
130
+	natsort($notices);
131
+	foreach ($notices as $notice) {
132
+		glsr_log()->warning($notice);
133
+	}
134 134
 });
Please login to merge, or discard this patch.
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -1,134 +1,134 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-defined('WPINC') || die;
3
+defined( 'WPINC' ) || die;
4 4
 
5 5
 // Unprotected review meta has been deprecated
6
-add_filter('get_post_metadata', function ($check, $postId, $metaKey, $single) {
7
-    $metaKeys = array_keys(glsr('Defaults\CreateReviewDefaults')->defaults());
8
-    if (!in_array($metaKey, $metaKeys) || glsr()->post_type != get_post_type($postId)) {
6
+add_filter( 'get_post_metadata', function( $check, $postId, $metaKey, $single ) {
7
+    $metaKeys = array_keys( glsr( 'Defaults\CreateReviewDefaults' )->defaults() );
8
+    if( !in_array( $metaKey, $metaKeys ) || glsr()->post_type != get_post_type( $postId ) ) {
9 9
         return $check;
10 10
     }
11 11
     glsr()->deprecated[] = sprintf(
12 12
         'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.',
13 13
         $metaKey
14 14
     );
15
-    return get_post_meta($postId, '_'.$metaKey, $single);
16
-}, 10, 4);
15
+    return get_post_meta( $postId, '_'.$metaKey, $single );
16
+}, 10, 4 );
17 17
 
18 18
 // Modules/Html/Template.php
19
-add_filter('site-reviews/interpolate/reviews', function ($context, $template) {
19
+add_filter( 'site-reviews/interpolate/reviews', function( $context, $template ) {
20 20
     $search = '{{ navigation }}';
21
-    if (false !== strpos($template, $search)) {
21
+    if( false !== strpos( $template, $search ) ) {
22 22
         $context['navigation'] = $context['pagination'];
23 23
         glsr()->deprecated[] = 'The {{ navigation }} template key in "YOUR_THEME/site-reviews/reviews.php" has been deprecated. Please use the {{ pagination }} template key instead.';
24 24
     }
25 25
     return $context;
26
-}, 10, 2);
26
+}, 10, 2 );
27 27
 
28 28
 // Database/ReviewManager.php
29
-add_action('site-reviews/review/created', function ($review) {
30
-    if (has_action('site-reviews/local/review/create')) {
29
+add_action( 'site-reviews/review/created', function( $review ) {
30
+    if( has_action( 'site-reviews/local/review/create' ) ) {
31 31
         glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.';
32
-        do_action('site-reviews/local/review/create', (array) get_post($review->ID), (array) $review, $review->ID);
32
+        do_action( 'site-reviews/local/review/create', (array)get_post( $review->ID ), (array)$review, $review->ID );
33 33
     }
34
-}, 9);
34
+}, 9 );
35 35
 
36 36
 // Handlers/CreateReview.php
37
-add_action('site-reviews/review/submitted', function ($review) {
38
-    if (has_action('site-reviews/local/review/submitted')) {
37
+add_action( 'site-reviews/review/submitted', function( $review ) {
38
+    if( has_action( 'site-reviews/local/review/submitted' ) ) {
39 39
         glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.';
40
-        do_action('site-reviews/local/review/submitted', null, $review);
40
+        do_action( 'site-reviews/local/review/submitted', null, $review );
41 41
     }
42
-    if (has_filter('site-reviews/local/review/submitted/message')) {
42
+    if( has_filter( 'site-reviews/local/review/submitted/message' ) ) {
43 43
         glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
44 44
     }
45
-}, 9);
45
+}, 9 );
46 46
 
47 47
 // Database/ReviewManager.php
48
-add_filter('site-reviews/create/review-values', function ($values, $command) {
49
-    if (has_filter('site-reviews/local/review')) {
48
+add_filter( 'site-reviews/create/review-values', function( $values, $command ) {
49
+    if( has_filter( 'site-reviews/local/review' ) ) {
50 50
         glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.';
51
-        return apply_filters('site-reviews/local/review', $values, $command);
51
+        return apply_filters( 'site-reviews/local/review', $values, $command );
52 52
     }
53 53
     return $values;
54
-}, 9, 2);
54
+}, 9, 2 );
55 55
 
56 56
 // Handlers/EnqueuePublicAssets.php
57
-add_filter('site-reviews/enqueue/public/localize', function ($variables) {
58
-    if (has_filter('site-reviews/enqueue/localize')) {
57
+add_filter( 'site-reviews/enqueue/public/localize', function( $variables ) {
58
+    if( has_filter( 'site-reviews/enqueue/localize' ) ) {
59 59
         glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.';
60
-        return apply_filters('site-reviews/enqueue/localize', $variables);
60
+        return apply_filters( 'site-reviews/enqueue/localize', $variables );
61 61
     }
62 62
     return $variables;
63
-}, 9);
63
+}, 9 );
64 64
 
65 65
 // Modules/Rating.php
66
-add_filter('site-reviews/rating/average', function ($average) {
67
-    if (has_filter('site-reviews/average/rating')) {
66
+add_filter( 'site-reviews/rating/average', function( $average ) {
67
+    if( has_filter( 'site-reviews/average/rating' ) ) {
68 68
         glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
69 69
     }
70 70
     return $average;
71
-}, 9);
71
+}, 9 );
72 72
 
73 73
 // Modules/Rating.php
74
-add_filter('site-reviews/rating/ranking', function ($ranking) {
75
-    if (has_filter('site-reviews/bayesian/ranking')) {
74
+add_filter( 'site-reviews/rating/ranking', function( $ranking ) {
75
+    if( has_filter( 'site-reviews/bayesian/ranking' ) ) {
76 76
         glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
77 77
     }
78 78
     return $ranking;
79
-}, 9);
79
+}, 9 );
80 80
 
81 81
 // Modules/Html/Partials/SiteReviews.php
82
-add_filter('site-reviews/review/build/after', function ($renderedFields) {
83
-    if (has_filter('site-reviews/reviews/review/text')) {
82
+add_filter( 'site-reviews/review/build/after', function( $renderedFields ) {
83
+    if( has_filter( 'site-reviews/reviews/review/text' ) ) {
84 84
         glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
85 85
     }
86
-    if (has_filter('site-reviews/reviews/review/title')) {
86
+    if( has_filter( 'site-reviews/reviews/review/title' ) ) {
87 87
         glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
88 88
     }
89 89
     return $renderedFields;
90
-}, 9);
90
+}, 9 );
91 91
 
92 92
 // Modules/Html/Partials/SiteReviews.php
93
-add_filter('site-reviews/review/build/before', function ($review) {
94
-    if (has_filter('site-reviews/rendered/review')) {
93
+add_filter( 'site-reviews/review/build/before', function( $review ) {
94
+    if( has_filter( 'site-reviews/rendered/review' ) ) {
95 95
         glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.';
96 96
     }
97
-    if (has_filter('site-reviews/rendered/review/meta/order')) {
97
+    if( has_filter( 'site-reviews/rendered/review/meta/order' ) ) {
98 98
         glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
99 99
     }
100
-    if (has_filter('site-reviews/rendered/review/order')) {
100
+    if( has_filter( 'site-reviews/rendered/review/order' ) ) {
101 101
         glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
102 102
     }
103
-    if (has_filter('site-reviews/rendered/review-form/login-register')) {
103
+    if( has_filter( 'site-reviews/rendered/review-form/login-register' ) ) {
104 104
         glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).';
105 105
     }
106
-    if (has_filter('site-reviews/reviews/navigation_links')) {
106
+    if( has_filter( 'site-reviews/reviews/navigation_links' ) ) {
107 107
         glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).';
108 108
     }
109 109
     return $review;
110
-}, 9);
110
+}, 9 );
111 111
 
112
-add_filter('site-reviews/validate/custom', function ($result, $request) {
113
-    if (has_filter('site-reviews/validate/review/submission')) {
114
-        glsr_log()->warning('The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.');
115
-        return apply_filters('site-reviews/validate/review/submission', $result, $request);
112
+add_filter( 'site-reviews/validate/custom', function( $result, $request ) {
113
+    if( has_filter( 'site-reviews/validate/review/submission' ) ) {
114
+        glsr_log()->warning( 'The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.' );
115
+        return apply_filters( 'site-reviews/validate/review/submission', $result, $request );
116 116
     }
117 117
     return $result;
118
-}, 9, 2);
118
+}, 9, 2 );
119 119
 
120
-add_filter('site-reviews/views/file', function ($file, $view, $data) {
121
-    if (has_filter('site-reviews/addon/views/file')) {
120
+add_filter( 'site-reviews/views/file', function( $file, $view, $data ) {
121
+    if( has_filter( 'site-reviews/addon/views/file' ) ) {
122 122
         glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.';
123
-        $file = apply_filters('site-reviews/addon/views/file', $file, $view, $data);
123
+        $file = apply_filters( 'site-reviews/addon/views/file', $file, $view, $data );
124 124
     }
125 125
     return $file;
126
-}, 9, 3);
126
+}, 9, 3 );
127 127
 
128
-add_action('wp_footer', function () {
129
-    $notices = array_keys(array_flip(glsr()->deprecated));
130
-    natsort($notices);
131
-    foreach ($notices as $notice) {
132
-        glsr_log()->warning($notice);
128
+add_action( 'wp_footer', function() {
129
+    $notices = array_keys( array_flip( glsr()->deprecated ) );
130
+    natsort( $notices );
131
+    foreach( $notices as $notice ) {
132
+        glsr_log()->warning( $notice );
133 133
     }
134 134
 });
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsWidget.php 2 patches
Indentation   +86 added lines, -86 removed lines patch added patch discarded remove patch
@@ -7,92 +7,92 @@
 block discarded – undo
7 7
 
8 8
 class SiteReviewsWidget extends Widget
9 9
 {
10
-    /**
11
-     * @param array $instance
12
-     * @return void
13
-     */
14
-    public function form($instance)
15
-    {
16
-        $this->widgetArgs = glsr(SiteReviewsShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
19
-            'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
21
-            'name' => 'title',
22
-        ]);
23
-        $this->renderField('number', [
24
-            'class' => 'small-text',
25
-            'default' => 5,
26
-            'label' => __('How many reviews would you like to display?', 'site-reviews'),
27
-            'max' => 100,
28
-            'name' => 'count',
29
-        ]);
30
-        $this->renderField('select', [
31
-            'label' => __('What is the minimum rating to display?', 'site-reviews'),
32
-            'name' => 'rating',
33
-            'options' => [
34
-                '5' => sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5),
35
-                '4' => sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4),
36
-                '3' => sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3),
37
-                '2' => sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2),
38
-                '1' => sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1),
39
-            ],
40
-        ]);
41
-        if (count(glsr()->reviewTypes) > 1) {
42
-            $this->renderField('select', [
43
-                'class' => 'widefat',
44
-                'label' => __('Which type of review would you like to display?', 'site-reviews'),
45
-                'name' => 'type',
46
-                'options' => ['' => __('All Reviews', 'site-reviews')] + glsr()->reviewTypes,
47
-            ]);
48
-        }
49
-        if (!empty($terms)) {
50
-            $this->renderField('select', [
51
-                'class' => 'widefat',
52
-                'label' => __('Limit reviews to this category', 'site-reviews'),
53
-                'name' => 'category',
54
-                'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
55
-            ]);
56
-        }
57
-        $this->renderField('text', [
58
-            'class' => 'widefat',
59
-            'default' => '',
60
-            '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>'),
61
-            'label' => __('Limit reviews to those assigned to this page/post ID', 'site-reviews'),
62
-            'name' => 'assigned_to',
63
-        ]);
64
-        $this->renderField('text', [
65
-            'class' => 'widefat',
66
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
67
-            'name' => 'class',
68
-        ]);
69
-        $this->renderField('checkbox', [
70
-            'name' => 'hide',
71
-            'options' => glsr(SiteReviewsShortcode::class)->getHideOptions(),
72
-        ]);
73
-    }
10
+	/**
11
+	 * @param array $instance
12
+	 * @return void
13
+	 */
14
+	public function form($instance)
15
+	{
16
+		$this->widgetArgs = glsr(SiteReviewsShortcode::class)->normalizeAtts($instance);
17
+		$terms = glsr(Database::class)->getTerms();
18
+		$this->renderField('text', [
19
+			'class' => 'widefat',
20
+			'label' => __('Title', 'site-reviews'),
21
+			'name' => 'title',
22
+		]);
23
+		$this->renderField('number', [
24
+			'class' => 'small-text',
25
+			'default' => 5,
26
+			'label' => __('How many reviews would you like to display?', 'site-reviews'),
27
+			'max' => 100,
28
+			'name' => 'count',
29
+		]);
30
+		$this->renderField('select', [
31
+			'label' => __('What is the minimum rating to display?', 'site-reviews'),
32
+			'name' => 'rating',
33
+			'options' => [
34
+				'5' => sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5),
35
+				'4' => sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4),
36
+				'3' => sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3),
37
+				'2' => sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2),
38
+				'1' => sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1),
39
+			],
40
+		]);
41
+		if (count(glsr()->reviewTypes) > 1) {
42
+			$this->renderField('select', [
43
+				'class' => 'widefat',
44
+				'label' => __('Which type of review would you like to display?', 'site-reviews'),
45
+				'name' => 'type',
46
+				'options' => ['' => __('All Reviews', 'site-reviews')] + glsr()->reviewTypes,
47
+			]);
48
+		}
49
+		if (!empty($terms)) {
50
+			$this->renderField('select', [
51
+				'class' => 'widefat',
52
+				'label' => __('Limit reviews to this category', 'site-reviews'),
53
+				'name' => 'category',
54
+				'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
55
+			]);
56
+		}
57
+		$this->renderField('text', [
58
+			'class' => 'widefat',
59
+			'default' => '',
60
+			'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>'),
61
+			'label' => __('Limit reviews to those assigned to this page/post ID', 'site-reviews'),
62
+			'name' => 'assigned_to',
63
+		]);
64
+		$this->renderField('text', [
65
+			'class' => 'widefat',
66
+			'label' => __('Enter any custom CSS classes here', 'site-reviews'),
67
+			'name' => 'class',
68
+		]);
69
+		$this->renderField('checkbox', [
70
+			'name' => 'hide',
71
+			'options' => glsr(SiteReviewsShortcode::class)->getHideOptions(),
72
+		]);
73
+	}
74 74
 
75
-    /**
76
-     * @param array $newInstance
77
-     * @param array $oldInstance
78
-     * @return array
79
-     */
80
-    public function update($newInstance, $oldInstance)
81
-    {
82
-        if (!is_numeric($newInstance['count'])) {
83
-            $newInstance['count'] = 10;
84
-        }
85
-        $newInstance['count'] = min(50, max(0, intval($newInstance['count'])));
86
-        return parent::update($newInstance, $oldInstance);
87
-    }
75
+	/**
76
+	 * @param array $newInstance
77
+	 * @param array $oldInstance
78
+	 * @return array
79
+	 */
80
+	public function update($newInstance, $oldInstance)
81
+	{
82
+		if (!is_numeric($newInstance['count'])) {
83
+			$newInstance['count'] = 10;
84
+		}
85
+		$newInstance['count'] = min(50, max(0, intval($newInstance['count'])));
86
+		return parent::update($newInstance, $oldInstance);
87
+	}
88 88
 
89
-    /**
90
-     * @param array $args
91
-     * @param array $instance
92
-     * @return void
93
-     */
94
-    public function widget($args, $instance)
95
-    {
96
-        echo glsr(SiteReviewsShortcode::class)->build($instance, $args, 'widget');
97
-    }
89
+	/**
90
+	 * @param array $args
91
+	 * @param array $instance
92
+	 * @return void
93
+	 */
94
+	public function widget($args, $instance)
95
+	{
96
+		echo glsr(SiteReviewsShortcode::class)->build($instance, $args, 'widget');
97
+	}
98 98
 }
Please login to merge, or discard this patch.
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -11,65 +11,65 @@  discard block
 block discarded – undo
11 11
      * @param array $instance
12 12
      * @return void
13 13
      */
14
-    public function form($instance)
14
+    public function form( $instance )
15 15
     {
16
-        $this->widgetArgs = glsr(SiteReviewsShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
16
+        $this->widgetArgs = glsr( SiteReviewsShortcode::class )->normalizeAtts( $instance );
17
+        $terms = glsr( Database::class )->getTerms();
18
+        $this->renderField( 'text', [
19 19
             'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
20
+            'label' => __( 'Title', 'site-reviews' ),
21 21
             'name' => 'title',
22
-        ]);
23
-        $this->renderField('number', [
22
+        ] );
23
+        $this->renderField( 'number', [
24 24
             'class' => 'small-text',
25 25
             'default' => 5,
26
-            'label' => __('How many reviews would you like to display?', 'site-reviews'),
26
+            'label' => __( 'How many reviews would you like to display?', 'site-reviews' ),
27 27
             'max' => 100,
28 28
             'name' => 'count',
29
-        ]);
30
-        $this->renderField('select', [
31
-            'label' => __('What is the minimum rating to display?', 'site-reviews'),
29
+        ] );
30
+        $this->renderField( 'select', [
31
+            'label' => __( 'What is the minimum rating to display?', 'site-reviews' ),
32 32
             'name' => 'rating',
33 33
             'options' => [
34
-                '5' => sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5),
35
-                '4' => sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4),
36
-                '3' => sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3),
37
-                '2' => sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2),
38
-                '1' => sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1),
34
+                '5' => sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 ),
35
+                '4' => sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 ),
36
+                '3' => sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 ),
37
+                '2' => sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ),
38
+                '1' => sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ),
39 39
             ],
40
-        ]);
41
-        if (count(glsr()->reviewTypes) > 1) {
42
-            $this->renderField('select', [
40
+        ] );
41
+        if( count( glsr()->reviewTypes ) > 1 ) {
42
+            $this->renderField( 'select', [
43 43
                 'class' => 'widefat',
44
-                'label' => __('Which type of review would you like to display?', 'site-reviews'),
44
+                'label' => __( 'Which type of review would you like to display?', 'site-reviews' ),
45 45
                 'name' => 'type',
46
-                'options' => ['' => __('All Reviews', 'site-reviews')] + glsr()->reviewTypes,
47
-            ]);
46
+                'options' => ['' => __( 'All Reviews', 'site-reviews' )] + glsr()->reviewTypes,
47
+            ] );
48 48
         }
49
-        if (!empty($terms)) {
50
-            $this->renderField('select', [
49
+        if( !empty($terms) ) {
50
+            $this->renderField( 'select', [
51 51
                 'class' => 'widefat',
52
-                'label' => __('Limit reviews to this category', 'site-reviews'),
52
+                'label' => __( 'Limit reviews to this category', 'site-reviews' ),
53 53
                 'name' => 'category',
54
-                'options' => ['' => __('All Categories', 'site-reviews')] + $terms,
55
-            ]);
54
+                'options' => ['' => __( 'All Categories', 'site-reviews' )] + $terms,
55
+            ] );
56 56
         }
57
-        $this->renderField('text', [
57
+        $this->renderField( 'text', [
58 58
             'class' => 'widefat',
59 59
             'default' => '',
60
-            '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>'),
61
-            'label' => __('Limit reviews to those assigned to this page/post ID', 'site-reviews'),
60
+            '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>' ),
61
+            'label' => __( 'Limit reviews to those assigned to this page/post ID', 'site-reviews' ),
62 62
             'name' => 'assigned_to',
63
-        ]);
64
-        $this->renderField('text', [
63
+        ] );
64
+        $this->renderField( 'text', [
65 65
             'class' => 'widefat',
66
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
66
+            'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ),
67 67
             'name' => 'class',
68
-        ]);
69
-        $this->renderField('checkbox', [
68
+        ] );
69
+        $this->renderField( 'checkbox', [
70 70
             'name' => 'hide',
71
-            'options' => glsr(SiteReviewsShortcode::class)->getHideOptions(),
72
-        ]);
71
+            'options' => glsr( SiteReviewsShortcode::class )->getHideOptions(),
72
+        ] );
73 73
     }
74 74
 
75 75
     /**
@@ -77,13 +77,13 @@  discard block
 block discarded – undo
77 77
      * @param array $oldInstance
78 78
      * @return array
79 79
      */
80
-    public function update($newInstance, $oldInstance)
80
+    public function update( $newInstance, $oldInstance )
81 81
     {
82
-        if (!is_numeric($newInstance['count'])) {
82
+        if( !is_numeric( $newInstance['count'] ) ) {
83 83
             $newInstance['count'] = 10;
84 84
         }
85
-        $newInstance['count'] = min(50, max(0, intval($newInstance['count'])));
86
-        return parent::update($newInstance, $oldInstance);
85
+        $newInstance['count'] = min( 50, max( 0, intval( $newInstance['count'] ) ) );
86
+        return parent::update( $newInstance, $oldInstance );
87 87
     }
88 88
 
89 89
     /**
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
      * @param array $instance
92 92
      * @return void
93 93
      */
94
-    public function widget($args, $instance)
94
+    public function widget( $args, $instance )
95 95
     {
96
-        echo glsr(SiteReviewsShortcode::class)->build($instance, $args, 'widget');
96
+        echo glsr( SiteReviewsShortcode::class )->build( $instance, $args, 'widget' );
97 97
     }
98 98
 }
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsFormWidget.php 2 patches
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -7,55 +7,55 @@
 block discarded – undo
7 7
 
8 8
 class SiteReviewsFormWidget extends Widget
9 9
 {
10
-    /**
11
-     * @param array $instance
12
-     * @return void
13
-     */
14
-    public function form($instance)
15
-    {
16
-        $this->widgetArgs = glsr(SiteReviewsFormShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
19
-            'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
21
-            'name' => 'title',
22
-        ]);
23
-        $this->renderField('textarea', [
24
-            'class' => 'widefat',
25
-            'label' => __('Description', 'site-reviews'),
26
-            'name' => 'description',
27
-        ]);
28
-        $this->renderField('select', [
29
-            'class' => 'widefat',
30
-            'label' => __('Automatically assign a category', 'site-reviews'),
31
-            'name' => 'category',
32
-            'options' => ['' => __('Do not assign a category', 'site-reviews')] + $terms,
33
-        ]);
34
-        $this->renderField('text', [
35
-            'class' => 'widefat',
36
-            'default' => '',
37
-            'description' => sprintf(__('You may also enter %s to assign to the current post.', 'site-reviews'), '<code>post_id</code>'),
38
-            'label' => __('Assign reviews to a custom page/post ID', 'site-reviews'),
39
-            'name' => 'assign_to',
40
-        ]);
41
-        $this->renderField('text', [
42
-            'class' => 'widefat',
43
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
44
-            'name' => 'class',
45
-        ]);
46
-        $this->renderField('checkbox', [
47
-            'name' => 'hide',
48
-            'options' => glsr(SiteReviewsFormShortcode::class)->getHideOptions(),
49
-        ]);
50
-    }
10
+	/**
11
+	 * @param array $instance
12
+	 * @return void
13
+	 */
14
+	public function form($instance)
15
+	{
16
+		$this->widgetArgs = glsr(SiteReviewsFormShortcode::class)->normalizeAtts($instance);
17
+		$terms = glsr(Database::class)->getTerms();
18
+		$this->renderField('text', [
19
+			'class' => 'widefat',
20
+			'label' => __('Title', 'site-reviews'),
21
+			'name' => 'title',
22
+		]);
23
+		$this->renderField('textarea', [
24
+			'class' => 'widefat',
25
+			'label' => __('Description', 'site-reviews'),
26
+			'name' => 'description',
27
+		]);
28
+		$this->renderField('select', [
29
+			'class' => 'widefat',
30
+			'label' => __('Automatically assign a category', 'site-reviews'),
31
+			'name' => 'category',
32
+			'options' => ['' => __('Do not assign a category', 'site-reviews')] + $terms,
33
+		]);
34
+		$this->renderField('text', [
35
+			'class' => 'widefat',
36
+			'default' => '',
37
+			'description' => sprintf(__('You may also enter %s to assign to the current post.', 'site-reviews'), '<code>post_id</code>'),
38
+			'label' => __('Assign reviews to a custom page/post ID', 'site-reviews'),
39
+			'name' => 'assign_to',
40
+		]);
41
+		$this->renderField('text', [
42
+			'class' => 'widefat',
43
+			'label' => __('Enter any custom CSS classes here', 'site-reviews'),
44
+			'name' => 'class',
45
+		]);
46
+		$this->renderField('checkbox', [
47
+			'name' => 'hide',
48
+			'options' => glsr(SiteReviewsFormShortcode::class)->getHideOptions(),
49
+		]);
50
+	}
51 51
 
52
-    /**
53
-     * @param array $args
54
-     * @param array $instance
55
-     * @return void
56
-     */
57
-    public function widget($args, $instance)
58
-    {
59
-        echo glsr(SiteReviewsFormShortcode::class)->build($instance, $args, 'widget');
60
-    }
52
+	/**
53
+	 * @param array $args
54
+	 * @param array $instance
55
+	 * @return void
56
+	 */
57
+	public function widget($args, $instance)
58
+	{
59
+		echo glsr(SiteReviewsFormShortcode::class)->build($instance, $args, 'widget');
60
+	}
61 61
 }
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -11,42 +11,42 @@  discard block
 block discarded – undo
11 11
      * @param array $instance
12 12
      * @return void
13 13
      */
14
-    public function form($instance)
14
+    public function form( $instance )
15 15
     {
16
-        $this->widgetArgs = glsr(SiteReviewsFormShortcode::class)->normalizeAtts($instance);
17
-        $terms = glsr(Database::class)->getTerms();
18
-        $this->renderField('text', [
16
+        $this->widgetArgs = glsr( SiteReviewsFormShortcode::class )->normalizeAtts( $instance );
17
+        $terms = glsr( Database::class )->getTerms();
18
+        $this->renderField( 'text', [
19 19
             'class' => 'widefat',
20
-            'label' => __('Title', 'site-reviews'),
20
+            'label' => __( 'Title', 'site-reviews' ),
21 21
             'name' => 'title',
22
-        ]);
23
-        $this->renderField('textarea', [
22
+        ] );
23
+        $this->renderField( 'textarea', [
24 24
             'class' => 'widefat',
25
-            'label' => __('Description', 'site-reviews'),
25
+            'label' => __( 'Description', 'site-reviews' ),
26 26
             'name' => 'description',
27
-        ]);
28
-        $this->renderField('select', [
27
+        ] );
28
+        $this->renderField( 'select', [
29 29
             'class' => 'widefat',
30
-            'label' => __('Automatically assign a category', 'site-reviews'),
30
+            'label' => __( 'Automatically assign a category', 'site-reviews' ),
31 31
             'name' => 'category',
32
-            'options' => ['' => __('Do not assign a category', 'site-reviews')] + $terms,
33
-        ]);
34
-        $this->renderField('text', [
32
+            'options' => ['' => __( 'Do not assign a category', 'site-reviews' )] + $terms,
33
+        ] );
34
+        $this->renderField( 'text', [
35 35
             'class' => 'widefat',
36 36
             'default' => '',
37
-            'description' => sprintf(__('You may also enter %s to assign to the current post.', 'site-reviews'), '<code>post_id</code>'),
38
-            'label' => __('Assign reviews to a custom page/post ID', 'site-reviews'),
37
+            'description' => sprintf( __( 'You may also enter %s to assign to the current post.', 'site-reviews' ), '<code>post_id</code>' ),
38
+            'label' => __( 'Assign reviews to a custom page/post ID', 'site-reviews' ),
39 39
             'name' => 'assign_to',
40
-        ]);
41
-        $this->renderField('text', [
40
+        ] );
41
+        $this->renderField( 'text', [
42 42
             'class' => 'widefat',
43
-            'label' => __('Enter any custom CSS classes here', 'site-reviews'),
43
+            'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ),
44 44
             'name' => 'class',
45
-        ]);
46
-        $this->renderField('checkbox', [
45
+        ] );
46
+        $this->renderField( 'checkbox', [
47 47
             'name' => 'hide',
48
-            'options' => glsr(SiteReviewsFormShortcode::class)->getHideOptions(),
49
-        ]);
48
+            'options' => glsr( SiteReviewsFormShortcode::class )->getHideOptions(),
49
+        ] );
50 50
     }
51 51
 
52 52
     /**
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
      * @param array $instance
55 55
      * @return void
56 56
      */
57
-    public function widget($args, $instance)
57
+    public function widget( $args, $instance )
58 58
     {
59
-        echo glsr(SiteReviewsFormShortcode::class)->build($instance, $args, 'widget');
59
+        echo glsr( SiteReviewsFormShortcode::class )->build( $instance, $args, 'widget' );
60 60
     }
61 61
 }
Please login to merge, or discard this patch.