@@ -1,20 +1,20 @@ |
||
1 | -<?php defined('WPINC') || die; ?> |
|
1 | +<?php defined( 'WPINC' ) || die; ?> |
|
2 | 2 | |
3 | 3 | <div class="wrap"> |
4 | 4 | <h1 class="wp-heading-inline"> |
5 | - <?= esc_html(get_admin_page_title()); ?> |
|
6 | - <a href="<?= admin_url('edit.php?post_type=site-review&page=welcome'); ?>" class="page-title-action"><?= __('About', 'site-reviews'); ?></a> |
|
5 | + <?= esc_html( get_admin_page_title() ); ?> |
|
6 | + <a href="<?= admin_url( 'edit.php?post_type=site-review&page=welcome' ); ?>" class="page-title-action"><?= __( 'About', 'site-reviews' ); ?></a> |
|
7 | 7 | </h1> |
8 | 8 | <?= $notices; ?> |
9 | - <p><?= __('Click an active tab to expand/collapse all sections.', 'site-reviews'); ?></p> |
|
9 | + <p><?= __( 'Click an active tab to expand/collapse all sections.', 'site-reviews' ); ?></p> |
|
10 | 10 | <h2 class="glsr-nav-tab-wrapper nav-tab-wrapper"> |
11 | - <?php foreach ($tabs as $id => $title) : ?> |
|
11 | + <?php foreach( $tabs as $id => $title ) : ?> |
|
12 | 12 | <a class="glsr-nav-tab nav-tab" href="#<?= $id; ?>"><?= $title; ?></a> |
13 | 13 | <?php endforeach; ?> |
14 | 14 | </h2> |
15 | - <?php foreach ($tabs as $id => $title) : ?> |
|
15 | + <?php foreach( $tabs as $id => $title ) : ?> |
|
16 | 16 | <div class="glsr-nav-view ui-tabs-hide" id="<?= $id; ?>"> |
17 | - <?php glsr()->render('pages/documentation/'.$id, $data); ?> |
|
17 | + <?php glsr()->render( 'pages/documentation/'.$id, $data ); ?> |
|
18 | 18 | </div> |
19 | 19 | <?php endforeach; ?> |
20 | 20 | <input type="hidden" name="_active_tab"> |
@@ -7,10 +7,10 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * @return bool |
9 | 9 | */ |
10 | - public static function compareArrays(array $arr1, array $arr2) |
|
10 | + public static function compareArrays( array $arr1, array $arr2 ) |
|
11 | 11 | { |
12 | - sort($arr1); |
|
13 | - sort($arr2); |
|
12 | + sort( $arr1 ); |
|
13 | + sort( $arr2 ); |
|
14 | 14 | return $arr1 == $arr2; |
15 | 15 | } |
16 | 16 | |
@@ -18,21 +18,21 @@ discard block |
||
18 | 18 | * @param mixed $array |
19 | 19 | * @return array |
20 | 20 | */ |
21 | - public static function consolidateArray($array) |
|
21 | + public static function consolidateArray( $array ) |
|
22 | 22 | { |
23 | - return is_array($array) || is_object($array) |
|
24 | - ? (array) $array |
|
23 | + return is_array( $array ) || is_object( $array ) |
|
24 | + ? (array)$array |
|
25 | 25 | : []; |
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @return array |
30 | 30 | */ |
31 | - public static function convertDotNotationArray(array $array) |
|
31 | + public static function convertDotNotationArray( array $array ) |
|
32 | 32 | { |
33 | 33 | $results = []; |
34 | - foreach ($array as $path => $value) { |
|
35 | - $results = static::set($results, $path, $value); |
|
34 | + foreach( $array as $path => $value ) { |
|
35 | + $results = static::set( $results, $path, $value ); |
|
36 | 36 | } |
37 | 37 | return $results; |
38 | 38 | } |
@@ -42,12 +42,12 @@ discard block |
||
42 | 42 | * @param mixed $callback |
43 | 43 | * @return array |
44 | 44 | */ |
45 | - public static function convertStringToArray($string, $callback = null) |
|
45 | + public static function convertStringToArray( $string, $callback = null ) |
|
46 | 46 | { |
47 | - $array = array_map('trim', explode(',', $string)); |
|
47 | + $array = array_map( 'trim', explode( ',', $string ) ); |
|
48 | 48 | return $callback |
49 | - ? array_filter($array, $callback) |
|
50 | - : array_filter($array); |
|
49 | + ? array_filter( $array, $callback ) |
|
50 | + : array_filter( $array ); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -55,17 +55,17 @@ discard block |
||
55 | 55 | * @param string $prefix |
56 | 56 | * @return array |
57 | 57 | */ |
58 | - public static function flattenArray(array $array, $flattenValue = false, $prefix = '') |
|
58 | + public static function flattenArray( array $array, $flattenValue = false, $prefix = '' ) |
|
59 | 59 | { |
60 | 60 | $result = []; |
61 | - foreach ($array as $key => $value) { |
|
62 | - $newKey = ltrim($prefix.'.'.$key, '.'); |
|
63 | - if (static::isIndexedFlatArray($value)) { |
|
64 | - if ($flattenValue) { |
|
65 | - $value = '['.implode(', ', $value).']'; |
|
61 | + foreach( $array as $key => $value ) { |
|
62 | + $newKey = ltrim( $prefix.'.'.$key, '.' ); |
|
63 | + if( static::isIndexedFlatArray( $value ) ) { |
|
64 | + if( $flattenValue ) { |
|
65 | + $value = '['.implode( ', ', $value ).']'; |
|
66 | 66 | } |
67 | - } elseif (is_array($value)) { |
|
68 | - $result = array_merge($result, static::flattenArray($value, $flattenValue, $newKey)); |
|
67 | + } elseif( is_array( $value ) ) { |
|
68 | + $result = array_merge( $result, static::flattenArray( $value, $flattenValue, $newKey ) ); |
|
69 | 69 | continue; |
70 | 70 | } |
71 | 71 | $result[$newKey] = $value; |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | * @param mixed $fallback |
81 | 81 | * @return mixed |
82 | 82 | */ |
83 | - public static function get($data, $path = '', $fallback = '') |
|
83 | + public static function get( $data, $path = '', $fallback = '' ) |
|
84 | 84 | { |
85 | - $data = static::consolidateArray($data); |
|
86 | - $keys = explode('.', $path); |
|
87 | - foreach ($keys as $key) { |
|
88 | - if (!isset($data[$key])) { |
|
85 | + $data = static::consolidateArray( $data ); |
|
86 | + $keys = explode( '.', $path ); |
|
87 | + foreach( $keys as $key ) { |
|
88 | + if( !isset($data[$key]) ) { |
|
89 | 89 | return $fallback; |
90 | 90 | } |
91 | 91 | $data = $data[$key]; |
@@ -98,47 +98,47 @@ discard block |
||
98 | 98 | * @param string $position |
99 | 99 | * @return array |
100 | 100 | */ |
101 | - public static function insertInArray(array $array, array $insert, $key, $position = 'before') |
|
101 | + public static function insertInArray( array $array, array $insert, $key, $position = 'before' ) |
|
102 | 102 | { |
103 | - $keyPosition = intval(array_search($key, array_keys($array))); |
|
104 | - if ('after' == $position) { |
|
103 | + $keyPosition = intval( array_search( $key, array_keys( $array ) ) ); |
|
104 | + if( 'after' == $position ) { |
|
105 | 105 | ++$keyPosition; |
106 | 106 | } |
107 | - if (false !== $keyPosition) { |
|
108 | - $result = array_slice($array, 0, $keyPosition); |
|
109 | - $result = array_merge($result, $insert); |
|
110 | - return array_merge($result, array_slice($array, $keyPosition)); |
|
107 | + if( false !== $keyPosition ) { |
|
108 | + $result = array_slice( $array, 0, $keyPosition ); |
|
109 | + $result = array_merge( $result, $insert ); |
|
110 | + return array_merge( $result, array_slice( $array, $keyPosition ) ); |
|
111 | 111 | } |
112 | - return array_merge($array, $insert); |
|
112 | + return array_merge( $array, $insert ); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
116 | 116 | * @param mixed $array |
117 | 117 | * @return bool |
118 | 118 | */ |
119 | - public static function isIndexedFlatArray($array) |
|
119 | + public static function isIndexedFlatArray( $array ) |
|
120 | 120 | { |
121 | - if (!is_array($array) || array_filter($array, 'is_array')) { |
|
121 | + if( !is_array( $array ) || array_filter( $array, 'is_array' ) ) { |
|
122 | 122 | return false; |
123 | 123 | } |
124 | - return wp_is_numeric_array($array); |
|
124 | + return wp_is_numeric_array( $array ); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
128 | 128 | * @param bool $prefixed |
129 | 129 | * @return array |
130 | 130 | */ |
131 | - public static function prefixArrayKeys(array $values, $prefixed = true) |
|
131 | + public static function prefixArrayKeys( array $values, $prefixed = true ) |
|
132 | 132 | { |
133 | 133 | $trim = '_'; |
134 | 134 | $prefix = $prefixed |
135 | 135 | ? $trim |
136 | 136 | : ''; |
137 | 137 | $prefixed = []; |
138 | - foreach ($values as $key => $value) { |
|
139 | - $key = trim($key); |
|
140 | - if (0 === strpos($key, $trim)) { |
|
141 | - $key = substr($key, strlen($trim)); |
|
138 | + foreach( $values as $key => $value ) { |
|
139 | + $key = trim( $key ); |
|
140 | + if( 0 === strpos( $key, $trim ) ) { |
|
141 | + $key = substr( $key, strlen( $trim ) ); |
|
142 | 142 | } |
143 | 143 | $prefixed[$prefix.$key] = $value; |
144 | 144 | } |
@@ -148,15 +148,15 @@ discard block |
||
148 | 148 | /** |
149 | 149 | * @return array |
150 | 150 | */ |
151 | - public static function removeEmptyArrayValues(array $array) |
|
151 | + public static function removeEmptyArrayValues( array $array ) |
|
152 | 152 | { |
153 | 153 | $result = []; |
154 | - foreach ($array as $key => $value) { |
|
155 | - if (!$value) { |
|
154 | + foreach( $array as $key => $value ) { |
|
155 | + if( !$value ) { |
|
156 | 156 | continue; |
157 | 157 | } |
158 | - $result[$key] = is_array($value) |
|
159 | - ? static::removeEmptyArrayValues($value) |
|
158 | + $result[$key] = is_array( $value ) |
|
159 | + ? static::removeEmptyArrayValues( $value ) |
|
160 | 160 | : $value; |
161 | 161 | } |
162 | 162 | return $result; |
@@ -169,14 +169,14 @@ discard block |
||
169 | 169 | * @param mixed $value |
170 | 170 | * @return array |
171 | 171 | */ |
172 | - public static function set(array $data, $path, $value) |
|
172 | + public static function set( array $data, $path, $value ) |
|
173 | 173 | { |
174 | - $token = strtok($path, '.'); |
|
174 | + $token = strtok( $path, '.' ); |
|
175 | 175 | $ref = &$data; |
176 | - while (false !== $token) { |
|
177 | - $ref = static::consolidateArray($ref); |
|
176 | + while( false !== $token ) { |
|
177 | + $ref = static::consolidateArray( $ref ); |
|
178 | 178 | $ref = &$ref[$token]; |
179 | - $token = strtok('.'); |
|
179 | + $token = strtok( '.' ); |
|
180 | 180 | } |
181 | 181 | $ref = $value; |
182 | 182 | return $data; |
@@ -185,8 +185,8 @@ discard block |
||
185 | 185 | /** |
186 | 186 | * @return array |
187 | 187 | */ |
188 | - public static function unprefixArrayKeys(array $values) |
|
188 | + public static function unprefixArrayKeys( array $values ) |
|
189 | 189 | { |
190 | - return static::prefixArrayKeys($values, false); |
|
190 | + return static::prefixArrayKeys( $values, false ); |
|
191 | 191 | } |
192 | 192 | } |
@@ -64,7 +64,8 @@ |
||
64 | 64 | if ($flattenValue) { |
65 | 65 | $value = '['.implode(', ', $value).']'; |
66 | 66 | } |
67 | - } elseif (is_array($value)) { |
|
67 | + } |
|
68 | + elseif (is_array($value)) { |
|
68 | 69 | $result = array_merge($result, static::flattenArray($value, $flattenValue, $newKey)); |
69 | 70 | continue; |
70 | 71 | } |
@@ -4,189 +4,189 @@ |
||
4 | 4 | |
5 | 5 | class Arr |
6 | 6 | { |
7 | - /** |
|
8 | - * @return bool |
|
9 | - */ |
|
10 | - public static function compareArrays(array $arr1, array $arr2) |
|
11 | - { |
|
12 | - sort($arr1); |
|
13 | - sort($arr2); |
|
14 | - return $arr1 == $arr2; |
|
15 | - } |
|
7 | + /** |
|
8 | + * @return bool |
|
9 | + */ |
|
10 | + public static function compareArrays(array $arr1, array $arr2) |
|
11 | + { |
|
12 | + sort($arr1); |
|
13 | + sort($arr2); |
|
14 | + return $arr1 == $arr2; |
|
15 | + } |
|
16 | 16 | |
17 | - /** |
|
18 | - * @param mixed $array |
|
19 | - * @return array |
|
20 | - */ |
|
21 | - public static function consolidateArray($array) |
|
22 | - { |
|
23 | - return is_array($array) || is_object($array) |
|
24 | - ? (array) $array |
|
25 | - : []; |
|
26 | - } |
|
17 | + /** |
|
18 | + * @param mixed $array |
|
19 | + * @return array |
|
20 | + */ |
|
21 | + public static function consolidateArray($array) |
|
22 | + { |
|
23 | + return is_array($array) || is_object($array) |
|
24 | + ? (array) $array |
|
25 | + : []; |
|
26 | + } |
|
27 | 27 | |
28 | - /** |
|
29 | - * @return array |
|
30 | - */ |
|
31 | - public static function convertDotNotationArray(array $array) |
|
32 | - { |
|
33 | - $results = []; |
|
34 | - foreach ($array as $path => $value) { |
|
35 | - $results = static::set($results, $path, $value); |
|
36 | - } |
|
37 | - return $results; |
|
38 | - } |
|
28 | + /** |
|
29 | + * @return array |
|
30 | + */ |
|
31 | + public static function convertDotNotationArray(array $array) |
|
32 | + { |
|
33 | + $results = []; |
|
34 | + foreach ($array as $path => $value) { |
|
35 | + $results = static::set($results, $path, $value); |
|
36 | + } |
|
37 | + return $results; |
|
38 | + } |
|
39 | 39 | |
40 | - /** |
|
41 | - * @param string $string |
|
42 | - * @param mixed $callback |
|
43 | - * @return array |
|
44 | - */ |
|
45 | - public static function convertStringToArray($string, $callback = null) |
|
46 | - { |
|
47 | - $array = array_map('trim', explode(',', $string)); |
|
48 | - return $callback |
|
49 | - ? array_filter($array, $callback) |
|
50 | - : array_filter($array); |
|
51 | - } |
|
40 | + /** |
|
41 | + * @param string $string |
|
42 | + * @param mixed $callback |
|
43 | + * @return array |
|
44 | + */ |
|
45 | + public static function convertStringToArray($string, $callback = null) |
|
46 | + { |
|
47 | + $array = array_map('trim', explode(',', $string)); |
|
48 | + return $callback |
|
49 | + ? array_filter($array, $callback) |
|
50 | + : array_filter($array); |
|
51 | + } |
|
52 | 52 | |
53 | - /** |
|
54 | - * @param bool $flattenValue |
|
55 | - * @param string $prefix |
|
56 | - * @return array |
|
57 | - */ |
|
58 | - public static function flattenArray(array $array, $flattenValue = false, $prefix = '') |
|
59 | - { |
|
60 | - $result = []; |
|
61 | - foreach ($array as $key => $value) { |
|
62 | - $newKey = ltrim($prefix.'.'.$key, '.'); |
|
63 | - if (static::isIndexedFlatArray($value)) { |
|
64 | - if ($flattenValue) { |
|
65 | - $value = '['.implode(', ', $value).']'; |
|
66 | - } |
|
67 | - } elseif (is_array($value)) { |
|
68 | - $result = array_merge($result, static::flattenArray($value, $flattenValue, $newKey)); |
|
69 | - continue; |
|
70 | - } |
|
71 | - $result[$newKey] = $value; |
|
72 | - } |
|
73 | - return $result; |
|
74 | - } |
|
53 | + /** |
|
54 | + * @param bool $flattenValue |
|
55 | + * @param string $prefix |
|
56 | + * @return array |
|
57 | + */ |
|
58 | + public static function flattenArray(array $array, $flattenValue = false, $prefix = '') |
|
59 | + { |
|
60 | + $result = []; |
|
61 | + foreach ($array as $key => $value) { |
|
62 | + $newKey = ltrim($prefix.'.'.$key, '.'); |
|
63 | + if (static::isIndexedFlatArray($value)) { |
|
64 | + if ($flattenValue) { |
|
65 | + $value = '['.implode(', ', $value).']'; |
|
66 | + } |
|
67 | + } elseif (is_array($value)) { |
|
68 | + $result = array_merge($result, static::flattenArray($value, $flattenValue, $newKey)); |
|
69 | + continue; |
|
70 | + } |
|
71 | + $result[$newKey] = $value; |
|
72 | + } |
|
73 | + return $result; |
|
74 | + } |
|
75 | 75 | |
76 | - /** |
|
77 | - * Get a value from an array of values using a dot-notation path as reference. |
|
78 | - * @param mixed $data |
|
79 | - * @param string $path |
|
80 | - * @param mixed $fallback |
|
81 | - * @return mixed |
|
82 | - */ |
|
83 | - public static function get($data, $path = '', $fallback = '') |
|
84 | - { |
|
85 | - $data = static::consolidateArray($data); |
|
86 | - $keys = explode('.', $path); |
|
87 | - foreach ($keys as $key) { |
|
88 | - if (!isset($data[$key])) { |
|
89 | - return $fallback; |
|
90 | - } |
|
91 | - $data = $data[$key]; |
|
92 | - } |
|
93 | - return $data; |
|
94 | - } |
|
76 | + /** |
|
77 | + * Get a value from an array of values using a dot-notation path as reference. |
|
78 | + * @param mixed $data |
|
79 | + * @param string $path |
|
80 | + * @param mixed $fallback |
|
81 | + * @return mixed |
|
82 | + */ |
|
83 | + public static function get($data, $path = '', $fallback = '') |
|
84 | + { |
|
85 | + $data = static::consolidateArray($data); |
|
86 | + $keys = explode('.', $path); |
|
87 | + foreach ($keys as $key) { |
|
88 | + if (!isset($data[$key])) { |
|
89 | + return $fallback; |
|
90 | + } |
|
91 | + $data = $data[$key]; |
|
92 | + } |
|
93 | + return $data; |
|
94 | + } |
|
95 | 95 | |
96 | - /** |
|
97 | - * @param string $key |
|
98 | - * @param string $position |
|
99 | - * @return array |
|
100 | - */ |
|
101 | - public static function insertInArray(array $array, array $insert, $key, $position = 'before') |
|
102 | - { |
|
103 | - $keyPosition = intval(array_search($key, array_keys($array))); |
|
104 | - if ('after' == $position) { |
|
105 | - ++$keyPosition; |
|
106 | - } |
|
107 | - if (false !== $keyPosition) { |
|
108 | - $result = array_slice($array, 0, $keyPosition); |
|
109 | - $result = array_merge($result, $insert); |
|
110 | - return array_merge($result, array_slice($array, $keyPosition)); |
|
111 | - } |
|
112 | - return array_merge($array, $insert); |
|
113 | - } |
|
96 | + /** |
|
97 | + * @param string $key |
|
98 | + * @param string $position |
|
99 | + * @return array |
|
100 | + */ |
|
101 | + public static function insertInArray(array $array, array $insert, $key, $position = 'before') |
|
102 | + { |
|
103 | + $keyPosition = intval(array_search($key, array_keys($array))); |
|
104 | + if ('after' == $position) { |
|
105 | + ++$keyPosition; |
|
106 | + } |
|
107 | + if (false !== $keyPosition) { |
|
108 | + $result = array_slice($array, 0, $keyPosition); |
|
109 | + $result = array_merge($result, $insert); |
|
110 | + return array_merge($result, array_slice($array, $keyPosition)); |
|
111 | + } |
|
112 | + return array_merge($array, $insert); |
|
113 | + } |
|
114 | 114 | |
115 | - /** |
|
116 | - * @param mixed $array |
|
117 | - * @return bool |
|
118 | - */ |
|
119 | - public static function isIndexedFlatArray($array) |
|
120 | - { |
|
121 | - if (!is_array($array) || array_filter($array, 'is_array')) { |
|
122 | - return false; |
|
123 | - } |
|
124 | - return wp_is_numeric_array($array); |
|
125 | - } |
|
115 | + /** |
|
116 | + * @param mixed $array |
|
117 | + * @return bool |
|
118 | + */ |
|
119 | + public static function isIndexedFlatArray($array) |
|
120 | + { |
|
121 | + if (!is_array($array) || array_filter($array, 'is_array')) { |
|
122 | + return false; |
|
123 | + } |
|
124 | + return wp_is_numeric_array($array); |
|
125 | + } |
|
126 | 126 | |
127 | - /** |
|
128 | - * @param bool $prefixed |
|
129 | - * @return array |
|
130 | - */ |
|
131 | - public static function prefixArrayKeys(array $values, $prefixed = true) |
|
132 | - { |
|
133 | - $trim = '_'; |
|
134 | - $prefix = $prefixed |
|
135 | - ? $trim |
|
136 | - : ''; |
|
137 | - $prefixed = []; |
|
138 | - foreach ($values as $key => $value) { |
|
139 | - $key = trim($key); |
|
140 | - if (0 === strpos($key, $trim)) { |
|
141 | - $key = substr($key, strlen($trim)); |
|
142 | - } |
|
143 | - $prefixed[$prefix.$key] = $value; |
|
144 | - } |
|
145 | - return $prefixed; |
|
146 | - } |
|
127 | + /** |
|
128 | + * @param bool $prefixed |
|
129 | + * @return array |
|
130 | + */ |
|
131 | + public static function prefixArrayKeys(array $values, $prefixed = true) |
|
132 | + { |
|
133 | + $trim = '_'; |
|
134 | + $prefix = $prefixed |
|
135 | + ? $trim |
|
136 | + : ''; |
|
137 | + $prefixed = []; |
|
138 | + foreach ($values as $key => $value) { |
|
139 | + $key = trim($key); |
|
140 | + if (0 === strpos($key, $trim)) { |
|
141 | + $key = substr($key, strlen($trim)); |
|
142 | + } |
|
143 | + $prefixed[$prefix.$key] = $value; |
|
144 | + } |
|
145 | + return $prefixed; |
|
146 | + } |
|
147 | 147 | |
148 | - /** |
|
149 | - * @return array |
|
150 | - */ |
|
151 | - public static function removeEmptyArrayValues(array $array) |
|
152 | - { |
|
153 | - $result = []; |
|
154 | - foreach ($array as $key => $value) { |
|
155 | - if (!$value) { |
|
156 | - continue; |
|
157 | - } |
|
158 | - $result[$key] = is_array($value) |
|
159 | - ? static::removeEmptyArrayValues($value) |
|
160 | - : $value; |
|
161 | - } |
|
162 | - return $result; |
|
163 | - } |
|
148 | + /** |
|
149 | + * @return array |
|
150 | + */ |
|
151 | + public static function removeEmptyArrayValues(array $array) |
|
152 | + { |
|
153 | + $result = []; |
|
154 | + foreach ($array as $key => $value) { |
|
155 | + if (!$value) { |
|
156 | + continue; |
|
157 | + } |
|
158 | + $result[$key] = is_array($value) |
|
159 | + ? static::removeEmptyArrayValues($value) |
|
160 | + : $value; |
|
161 | + } |
|
162 | + return $result; |
|
163 | + } |
|
164 | 164 | |
165 | 165 | |
166 | - /** |
|
167 | - * Set a value to an array of values using a dot-notation path as reference. |
|
168 | - * @param string $path |
|
169 | - * @param mixed $value |
|
170 | - * @return array |
|
171 | - */ |
|
172 | - public static function set(array $data, $path, $value) |
|
173 | - { |
|
174 | - $token = strtok($path, '.'); |
|
175 | - $ref = &$data; |
|
176 | - while (false !== $token) { |
|
177 | - $ref = static::consolidateArray($ref); |
|
178 | - $ref = &$ref[$token]; |
|
179 | - $token = strtok('.'); |
|
180 | - } |
|
181 | - $ref = $value; |
|
182 | - return $data; |
|
183 | - } |
|
166 | + /** |
|
167 | + * Set a value to an array of values using a dot-notation path as reference. |
|
168 | + * @param string $path |
|
169 | + * @param mixed $value |
|
170 | + * @return array |
|
171 | + */ |
|
172 | + public static function set(array $data, $path, $value) |
|
173 | + { |
|
174 | + $token = strtok($path, '.'); |
|
175 | + $ref = &$data; |
|
176 | + while (false !== $token) { |
|
177 | + $ref = static::consolidateArray($ref); |
|
178 | + $ref = &$ref[$token]; |
|
179 | + $token = strtok('.'); |
|
180 | + } |
|
181 | + $ref = $value; |
|
182 | + return $data; |
|
183 | + } |
|
184 | 184 | |
185 | - /** |
|
186 | - * @return array |
|
187 | - */ |
|
188 | - public static function unprefixArrayKeys(array $values) |
|
189 | - { |
|
190 | - return static::prefixArrayKeys($values, false); |
|
191 | - } |
|
185 | + /** |
|
186 | + * @return array |
|
187 | + */ |
|
188 | + public static function unprefixArrayKeys(array $values) |
|
189 | + { |
|
190 | + return static::prefixArrayKeys($values, false); |
|
191 | + } |
|
192 | 192 | } |
@@ -9,241 +9,241 @@ |
||
9 | 9 | |
10 | 10 | class Field |
11 | 11 | { |
12 | - /** |
|
13 | - * @var array |
|
14 | - */ |
|
15 | - public $field; |
|
16 | - |
|
17 | - public function __construct(array $field = []) |
|
18 | - { |
|
19 | - $this->field = wp_parse_args($field, [ |
|
20 | - 'errors' => false, |
|
21 | - 'is_hidden' => false, |
|
22 | - 'is_multi' => false, |
|
23 | - 'is_public' => false, |
|
24 | - 'is_raw' => false, |
|
25 | - 'is_setting' => false, |
|
26 | - 'is_valid' => true, |
|
27 | - 'is_widget' => false, |
|
28 | - 'path' => '', |
|
29 | - ]); |
|
30 | - $this->normalize(); |
|
31 | - } |
|
32 | - |
|
33 | - /** |
|
34 | - * @return string |
|
35 | - */ |
|
36 | - public function __toString() |
|
37 | - { |
|
38 | - return (string) $this->build(); |
|
39 | - } |
|
40 | - |
|
41 | - /** |
|
42 | - * @return void|string |
|
43 | - */ |
|
44 | - public function build() |
|
45 | - { |
|
46 | - if (!$this->field['is_valid']) { |
|
47 | - return; |
|
48 | - } |
|
49 | - if ($this->field['is_raw']) { |
|
50 | - return glsr(Builder::class)->{$this->field['type']}($this->field); |
|
51 | - } |
|
52 | - if (!$this->field['is_setting']) { |
|
53 | - return $this->buildField(); |
|
54 | - } |
|
55 | - if (!$this->field['is_multi']) { |
|
56 | - return $this->buildSettingField(); |
|
57 | - } |
|
58 | - return $this->buildSettingMultiField(); |
|
59 | - } |
|
60 | - |
|
61 | - /** |
|
62 | - * @return void |
|
63 | - */ |
|
64 | - public function render() |
|
65 | - { |
|
66 | - echo $this->build(); |
|
67 | - } |
|
68 | - |
|
69 | - /** |
|
70 | - * @return string |
|
71 | - */ |
|
72 | - protected function buildField() |
|
73 | - { |
|
74 | - $field = glsr(Template::class)->build('templates/form/field_'.$this->field['type'], [ |
|
75 | - 'context' => [ |
|
76 | - 'class' => $this->getFieldClass(), |
|
77 | - 'errors' => $this->getFieldErrors(), |
|
78 | - 'field' => glsr(Builder::class)->raw($this->field), |
|
79 | - 'label' => glsr(Builder::class)->label([ |
|
80 | - 'class' => 'glsr-'.$this->field['type'].'-label', |
|
81 | - 'for' => $this->field['id'], |
|
82 | - 'is_public' => $this->field['is_public'], |
|
83 | - 'text' => $this->field['label'].'<span></span>', |
|
84 | - 'type' => $this->field['type'], |
|
85 | - ]), |
|
86 | - ], |
|
87 | - 'field' => $this->field, |
|
88 | - ]); |
|
89 | - return apply_filters('site-reviews/rendered/field', $field, $this->field['type'], $this->field); |
|
90 | - } |
|
91 | - |
|
92 | - /** |
|
93 | - * @return string |
|
94 | - */ |
|
95 | - protected function buildSettingField() |
|
96 | - { |
|
97 | - return glsr(Template::class)->build('partials/form/table-row', [ |
|
98 | - 'context' => [ |
|
99 | - 'class' => $this->getFieldClass(), |
|
100 | - 'field' => glsr(Builder::class)->{$this->field['type']}($this->field), |
|
101 | - 'label' => glsr(Builder::class)->label($this->field['legend'], ['for' => $this->field['id']]), |
|
102 | - ], |
|
103 | - 'field' => $this->field, |
|
104 | - ]); |
|
105 | - } |
|
106 | - |
|
107 | - /** |
|
108 | - * @return string |
|
109 | - */ |
|
110 | - protected function buildSettingMultiField() |
|
111 | - { |
|
112 | - $dependsOn = $this->getFieldDependsOn(); |
|
113 | - unset($this->field['data-depends']); |
|
114 | - return glsr(Template::class)->build('partials/form/table-row-multiple', [ |
|
115 | - 'context' => [ |
|
116 | - 'class' => $this->getFieldClass(), |
|
117 | - 'depends_on' => $dependsOn, |
|
118 | - 'field' => glsr(Builder::class)->{$this->field['type']}($this->field), |
|
119 | - 'label' => glsr(Builder::class)->label($this->field['legend'], ['for' => $this->field['id']]), |
|
120 | - 'legend' => $this->field['legend'], |
|
121 | - ], |
|
122 | - 'field' => $this->field, |
|
123 | - ]); |
|
124 | - } |
|
125 | - |
|
126 | - /** |
|
127 | - * @return string |
|
128 | - */ |
|
129 | - protected function getFieldClass() |
|
130 | - { |
|
131 | - $classes = []; |
|
132 | - if (!empty($this->field['errors'])) { |
|
133 | - $classes[] = 'glsr-has-error'; |
|
134 | - } |
|
135 | - if ($this->field['is_hidden']) { |
|
136 | - $classes[] = 'hidden'; |
|
137 | - } |
|
138 | - if (!empty($this->field['required'])) { |
|
139 | - $classes[] = 'glsr-required'; |
|
140 | - } |
|
141 | - $classes = apply_filters('site-reviews/rendered/field/classes', $classes, $this->field); |
|
142 | - return implode(' ', $classes); |
|
143 | - } |
|
144 | - |
|
145 | - /** |
|
146 | - * @return string |
|
147 | - */ |
|
148 | - protected function getFieldDependsOn() |
|
149 | - { |
|
150 | - return !empty($this->field['data-depends']) |
|
151 | - ? $this->field['data-depends'] |
|
152 | - : ''; |
|
153 | - } |
|
154 | - |
|
155 | - /** |
|
156 | - * @return void|string |
|
157 | - */ |
|
158 | - protected function getFieldErrors() |
|
159 | - { |
|
160 | - if (empty($this->field['errors']) || !is_array($this->field['errors'])) { |
|
161 | - return; |
|
162 | - } |
|
163 | - $errors = array_reduce($this->field['errors'], function ($carry, $error) { |
|
164 | - return $carry.glsr(Builder::class)->span($error, ['class' => 'glsr-field-error']); |
|
165 | - }); |
|
166 | - return glsr(Template::class)->build('templates/form/field-errors', [ |
|
167 | - 'context' => [ |
|
168 | - 'errors' => $errors, |
|
169 | - ], |
|
170 | - 'field' => $this->field, |
|
171 | - ]); |
|
172 | - } |
|
173 | - |
|
174 | - /** |
|
175 | - * @return string |
|
176 | - */ |
|
177 | - protected function getFieldPrefix() |
|
178 | - { |
|
179 | - return $this->field['is_setting'] |
|
180 | - ? OptionManager::databaseKey() |
|
181 | - : Application::ID; |
|
182 | - } |
|
183 | - |
|
184 | - /** |
|
185 | - * @return bool |
|
186 | - */ |
|
187 | - protected function isFieldValid() |
|
188 | - { |
|
189 | - $missingValues = []; |
|
190 | - $requiredValues = [ |
|
191 | - 'name', 'type', |
|
192 | - ]; |
|
193 | - foreach ($requiredValues as $value) { |
|
194 | - if (isset($this->field[$value])) { |
|
195 | - continue; |
|
196 | - } |
|
197 | - $missingValues[] = $value; |
|
198 | - $this->field['is_valid'] = false; |
|
199 | - } |
|
200 | - if (!empty($missingValues)) { |
|
201 | - glsr_log() |
|
202 | - ->warning('Field is missing: '.implode(', ', $missingValues)) |
|
203 | - ->debug($this->field); |
|
204 | - } |
|
205 | - return $this->field['is_valid']; |
|
206 | - } |
|
207 | - |
|
208 | - /** |
|
209 | - * @return void |
|
210 | - */ |
|
211 | - protected function normalize() |
|
212 | - { |
|
213 | - if (!$this->isFieldValid()) { |
|
214 | - return; |
|
215 | - } |
|
216 | - $this->field['path'] = $this->field['name']; |
|
217 | - $className = Helper::buildClassName($this->field['type'], __NAMESPACE__.'\Fields'); |
|
218 | - if (class_exists($className)) { |
|
219 | - $this->field = $className::merge($this->field); |
|
220 | - } |
|
221 | - $this->normalizeFieldId(); |
|
222 | - $this->normalizeFieldName(); |
|
223 | - } |
|
224 | - |
|
225 | - /** |
|
226 | - * @return void |
|
227 | - */ |
|
228 | - protected function normalizeFieldId() |
|
229 | - { |
|
230 | - if (isset($this->field['id']) || $this->field['is_raw']) { |
|
231 | - return; |
|
232 | - } |
|
233 | - $this->field['id'] = Str::convertPathToId( |
|
234 | - $this->field['path'], |
|
235 | - $this->getFieldPrefix() |
|
236 | - ); |
|
237 | - } |
|
238 | - |
|
239 | - /** |
|
240 | - * @return void |
|
241 | - */ |
|
242 | - protected function normalizeFieldName() |
|
243 | - { |
|
244 | - $this->field['name'] = Str::convertPathToName( |
|
245 | - $this->field['path'], |
|
246 | - $this->getFieldPrefix() |
|
247 | - ); |
|
248 | - } |
|
12 | + /** |
|
13 | + * @var array |
|
14 | + */ |
|
15 | + public $field; |
|
16 | + |
|
17 | + public function __construct(array $field = []) |
|
18 | + { |
|
19 | + $this->field = wp_parse_args($field, [ |
|
20 | + 'errors' => false, |
|
21 | + 'is_hidden' => false, |
|
22 | + 'is_multi' => false, |
|
23 | + 'is_public' => false, |
|
24 | + 'is_raw' => false, |
|
25 | + 'is_setting' => false, |
|
26 | + 'is_valid' => true, |
|
27 | + 'is_widget' => false, |
|
28 | + 'path' => '', |
|
29 | + ]); |
|
30 | + $this->normalize(); |
|
31 | + } |
|
32 | + |
|
33 | + /** |
|
34 | + * @return string |
|
35 | + */ |
|
36 | + public function __toString() |
|
37 | + { |
|
38 | + return (string) $this->build(); |
|
39 | + } |
|
40 | + |
|
41 | + /** |
|
42 | + * @return void|string |
|
43 | + */ |
|
44 | + public function build() |
|
45 | + { |
|
46 | + if (!$this->field['is_valid']) { |
|
47 | + return; |
|
48 | + } |
|
49 | + if ($this->field['is_raw']) { |
|
50 | + return glsr(Builder::class)->{$this->field['type']}($this->field); |
|
51 | + } |
|
52 | + if (!$this->field['is_setting']) { |
|
53 | + return $this->buildField(); |
|
54 | + } |
|
55 | + if (!$this->field['is_multi']) { |
|
56 | + return $this->buildSettingField(); |
|
57 | + } |
|
58 | + return $this->buildSettingMultiField(); |
|
59 | + } |
|
60 | + |
|
61 | + /** |
|
62 | + * @return void |
|
63 | + */ |
|
64 | + public function render() |
|
65 | + { |
|
66 | + echo $this->build(); |
|
67 | + } |
|
68 | + |
|
69 | + /** |
|
70 | + * @return string |
|
71 | + */ |
|
72 | + protected function buildField() |
|
73 | + { |
|
74 | + $field = glsr(Template::class)->build('templates/form/field_'.$this->field['type'], [ |
|
75 | + 'context' => [ |
|
76 | + 'class' => $this->getFieldClass(), |
|
77 | + 'errors' => $this->getFieldErrors(), |
|
78 | + 'field' => glsr(Builder::class)->raw($this->field), |
|
79 | + 'label' => glsr(Builder::class)->label([ |
|
80 | + 'class' => 'glsr-'.$this->field['type'].'-label', |
|
81 | + 'for' => $this->field['id'], |
|
82 | + 'is_public' => $this->field['is_public'], |
|
83 | + 'text' => $this->field['label'].'<span></span>', |
|
84 | + 'type' => $this->field['type'], |
|
85 | + ]), |
|
86 | + ], |
|
87 | + 'field' => $this->field, |
|
88 | + ]); |
|
89 | + return apply_filters('site-reviews/rendered/field', $field, $this->field['type'], $this->field); |
|
90 | + } |
|
91 | + |
|
92 | + /** |
|
93 | + * @return string |
|
94 | + */ |
|
95 | + protected function buildSettingField() |
|
96 | + { |
|
97 | + return glsr(Template::class)->build('partials/form/table-row', [ |
|
98 | + 'context' => [ |
|
99 | + 'class' => $this->getFieldClass(), |
|
100 | + 'field' => glsr(Builder::class)->{$this->field['type']}($this->field), |
|
101 | + 'label' => glsr(Builder::class)->label($this->field['legend'], ['for' => $this->field['id']]), |
|
102 | + ], |
|
103 | + 'field' => $this->field, |
|
104 | + ]); |
|
105 | + } |
|
106 | + |
|
107 | + /** |
|
108 | + * @return string |
|
109 | + */ |
|
110 | + protected function buildSettingMultiField() |
|
111 | + { |
|
112 | + $dependsOn = $this->getFieldDependsOn(); |
|
113 | + unset($this->field['data-depends']); |
|
114 | + return glsr(Template::class)->build('partials/form/table-row-multiple', [ |
|
115 | + 'context' => [ |
|
116 | + 'class' => $this->getFieldClass(), |
|
117 | + 'depends_on' => $dependsOn, |
|
118 | + 'field' => glsr(Builder::class)->{$this->field['type']}($this->field), |
|
119 | + 'label' => glsr(Builder::class)->label($this->field['legend'], ['for' => $this->field['id']]), |
|
120 | + 'legend' => $this->field['legend'], |
|
121 | + ], |
|
122 | + 'field' => $this->field, |
|
123 | + ]); |
|
124 | + } |
|
125 | + |
|
126 | + /** |
|
127 | + * @return string |
|
128 | + */ |
|
129 | + protected function getFieldClass() |
|
130 | + { |
|
131 | + $classes = []; |
|
132 | + if (!empty($this->field['errors'])) { |
|
133 | + $classes[] = 'glsr-has-error'; |
|
134 | + } |
|
135 | + if ($this->field['is_hidden']) { |
|
136 | + $classes[] = 'hidden'; |
|
137 | + } |
|
138 | + if (!empty($this->field['required'])) { |
|
139 | + $classes[] = 'glsr-required'; |
|
140 | + } |
|
141 | + $classes = apply_filters('site-reviews/rendered/field/classes', $classes, $this->field); |
|
142 | + return implode(' ', $classes); |
|
143 | + } |
|
144 | + |
|
145 | + /** |
|
146 | + * @return string |
|
147 | + */ |
|
148 | + protected function getFieldDependsOn() |
|
149 | + { |
|
150 | + return !empty($this->field['data-depends']) |
|
151 | + ? $this->field['data-depends'] |
|
152 | + : ''; |
|
153 | + } |
|
154 | + |
|
155 | + /** |
|
156 | + * @return void|string |
|
157 | + */ |
|
158 | + protected function getFieldErrors() |
|
159 | + { |
|
160 | + if (empty($this->field['errors']) || !is_array($this->field['errors'])) { |
|
161 | + return; |
|
162 | + } |
|
163 | + $errors = array_reduce($this->field['errors'], function ($carry, $error) { |
|
164 | + return $carry.glsr(Builder::class)->span($error, ['class' => 'glsr-field-error']); |
|
165 | + }); |
|
166 | + return glsr(Template::class)->build('templates/form/field-errors', [ |
|
167 | + 'context' => [ |
|
168 | + 'errors' => $errors, |
|
169 | + ], |
|
170 | + 'field' => $this->field, |
|
171 | + ]); |
|
172 | + } |
|
173 | + |
|
174 | + /** |
|
175 | + * @return string |
|
176 | + */ |
|
177 | + protected function getFieldPrefix() |
|
178 | + { |
|
179 | + return $this->field['is_setting'] |
|
180 | + ? OptionManager::databaseKey() |
|
181 | + : Application::ID; |
|
182 | + } |
|
183 | + |
|
184 | + /** |
|
185 | + * @return bool |
|
186 | + */ |
|
187 | + protected function isFieldValid() |
|
188 | + { |
|
189 | + $missingValues = []; |
|
190 | + $requiredValues = [ |
|
191 | + 'name', 'type', |
|
192 | + ]; |
|
193 | + foreach ($requiredValues as $value) { |
|
194 | + if (isset($this->field[$value])) { |
|
195 | + continue; |
|
196 | + } |
|
197 | + $missingValues[] = $value; |
|
198 | + $this->field['is_valid'] = false; |
|
199 | + } |
|
200 | + if (!empty($missingValues)) { |
|
201 | + glsr_log() |
|
202 | + ->warning('Field is missing: '.implode(', ', $missingValues)) |
|
203 | + ->debug($this->field); |
|
204 | + } |
|
205 | + return $this->field['is_valid']; |
|
206 | + } |
|
207 | + |
|
208 | + /** |
|
209 | + * @return void |
|
210 | + */ |
|
211 | + protected function normalize() |
|
212 | + { |
|
213 | + if (!$this->isFieldValid()) { |
|
214 | + return; |
|
215 | + } |
|
216 | + $this->field['path'] = $this->field['name']; |
|
217 | + $className = Helper::buildClassName($this->field['type'], __NAMESPACE__.'\Fields'); |
|
218 | + if (class_exists($className)) { |
|
219 | + $this->field = $className::merge($this->field); |
|
220 | + } |
|
221 | + $this->normalizeFieldId(); |
|
222 | + $this->normalizeFieldName(); |
|
223 | + } |
|
224 | + |
|
225 | + /** |
|
226 | + * @return void |
|
227 | + */ |
|
228 | + protected function normalizeFieldId() |
|
229 | + { |
|
230 | + if (isset($this->field['id']) || $this->field['is_raw']) { |
|
231 | + return; |
|
232 | + } |
|
233 | + $this->field['id'] = Str::convertPathToId( |
|
234 | + $this->field['path'], |
|
235 | + $this->getFieldPrefix() |
|
236 | + ); |
|
237 | + } |
|
238 | + |
|
239 | + /** |
|
240 | + * @return void |
|
241 | + */ |
|
242 | + protected function normalizeFieldName() |
|
243 | + { |
|
244 | + $this->field['name'] = Str::convertPathToName( |
|
245 | + $this->field['path'], |
|
246 | + $this->getFieldPrefix() |
|
247 | + ); |
|
248 | + } |
|
249 | 249 | } |
@@ -14,9 +14,9 @@ discard block |
||
14 | 14 | */ |
15 | 15 | public $field; |
16 | 16 | |
17 | - public function __construct(array $field = []) |
|
17 | + public function __construct( array $field = [] ) |
|
18 | 18 | { |
19 | - $this->field = wp_parse_args($field, [ |
|
19 | + $this->field = wp_parse_args( $field, [ |
|
20 | 20 | 'errors' => false, |
21 | 21 | 'is_hidden' => false, |
22 | 22 | 'is_multi' => false, |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | 'is_valid' => true, |
27 | 27 | 'is_widget' => false, |
28 | 28 | 'path' => '', |
29 | - ]); |
|
29 | + ] ); |
|
30 | 30 | $this->normalize(); |
31 | 31 | } |
32 | 32 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public function __toString() |
37 | 37 | { |
38 | - return (string) $this->build(); |
|
38 | + return (string)$this->build(); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -43,16 +43,16 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function build() |
45 | 45 | { |
46 | - if (!$this->field['is_valid']) { |
|
46 | + if( !$this->field['is_valid'] ) { |
|
47 | 47 | return; |
48 | 48 | } |
49 | - if ($this->field['is_raw']) { |
|
50 | - return glsr(Builder::class)->{$this->field['type']}($this->field); |
|
49 | + if( $this->field['is_raw'] ) { |
|
50 | + return glsr( Builder::class )->{$this->field['type']}($this->field); |
|
51 | 51 | } |
52 | - if (!$this->field['is_setting']) { |
|
52 | + if( !$this->field['is_setting'] ) { |
|
53 | 53 | return $this->buildField(); |
54 | 54 | } |
55 | - if (!$this->field['is_multi']) { |
|
55 | + if( !$this->field['is_multi'] ) { |
|
56 | 56 | return $this->buildSettingField(); |
57 | 57 | } |
58 | 58 | return $this->buildSettingMultiField(); |
@@ -71,22 +71,22 @@ discard block |
||
71 | 71 | */ |
72 | 72 | protected function buildField() |
73 | 73 | { |
74 | - $field = glsr(Template::class)->build('templates/form/field_'.$this->field['type'], [ |
|
74 | + $field = glsr( Template::class )->build( 'templates/form/field_'.$this->field['type'], [ |
|
75 | 75 | 'context' => [ |
76 | 76 | 'class' => $this->getFieldClass(), |
77 | 77 | 'errors' => $this->getFieldErrors(), |
78 | - 'field' => glsr(Builder::class)->raw($this->field), |
|
79 | - 'label' => glsr(Builder::class)->label([ |
|
78 | + 'field' => glsr( Builder::class )->raw( $this->field ), |
|
79 | + 'label' => glsr( Builder::class )->label( [ |
|
80 | 80 | 'class' => 'glsr-'.$this->field['type'].'-label', |
81 | 81 | 'for' => $this->field['id'], |
82 | 82 | 'is_public' => $this->field['is_public'], |
83 | 83 | 'text' => $this->field['label'].'<span></span>', |
84 | 84 | 'type' => $this->field['type'], |
85 | - ]), |
|
85 | + ] ), |
|
86 | 86 | ], |
87 | 87 | 'field' => $this->field, |
88 | - ]); |
|
89 | - return apply_filters('site-reviews/rendered/field', $field, $this->field['type'], $this->field); |
|
88 | + ] ); |
|
89 | + return apply_filters( 'site-reviews/rendered/field', $field, $this->field['type'], $this->field ); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -94,14 +94,14 @@ discard block |
||
94 | 94 | */ |
95 | 95 | protected function buildSettingField() |
96 | 96 | { |
97 | - return glsr(Template::class)->build('partials/form/table-row', [ |
|
97 | + return glsr( Template::class )->build( 'partials/form/table-row', [ |
|
98 | 98 | 'context' => [ |
99 | 99 | 'class' => $this->getFieldClass(), |
100 | - 'field' => glsr(Builder::class)->{$this->field['type']}($this->field), |
|
101 | - 'label' => glsr(Builder::class)->label($this->field['legend'], ['for' => $this->field['id']]), |
|
100 | + 'field' => glsr( Builder::class )->{$this->field['type']}($this->field), |
|
101 | + 'label' => glsr( Builder::class )->label( $this->field['legend'], ['for' => $this->field['id']] ), |
|
102 | 102 | ], |
103 | 103 | 'field' => $this->field, |
104 | - ]); |
|
104 | + ] ); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
@@ -111,16 +111,16 @@ discard block |
||
111 | 111 | { |
112 | 112 | $dependsOn = $this->getFieldDependsOn(); |
113 | 113 | unset($this->field['data-depends']); |
114 | - return glsr(Template::class)->build('partials/form/table-row-multiple', [ |
|
114 | + return glsr( Template::class )->build( 'partials/form/table-row-multiple', [ |
|
115 | 115 | 'context' => [ |
116 | 116 | 'class' => $this->getFieldClass(), |
117 | 117 | 'depends_on' => $dependsOn, |
118 | - 'field' => glsr(Builder::class)->{$this->field['type']}($this->field), |
|
119 | - 'label' => glsr(Builder::class)->label($this->field['legend'], ['for' => $this->field['id']]), |
|
118 | + 'field' => glsr( Builder::class )->{$this->field['type']}($this->field), |
|
119 | + 'label' => glsr( Builder::class )->label( $this->field['legend'], ['for' => $this->field['id']] ), |
|
120 | 120 | 'legend' => $this->field['legend'], |
121 | 121 | ], |
122 | 122 | 'field' => $this->field, |
123 | - ]); |
|
123 | + ] ); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -129,17 +129,17 @@ discard block |
||
129 | 129 | protected function getFieldClass() |
130 | 130 | { |
131 | 131 | $classes = []; |
132 | - if (!empty($this->field['errors'])) { |
|
132 | + if( !empty($this->field['errors']) ) { |
|
133 | 133 | $classes[] = 'glsr-has-error'; |
134 | 134 | } |
135 | - if ($this->field['is_hidden']) { |
|
135 | + if( $this->field['is_hidden'] ) { |
|
136 | 136 | $classes[] = 'hidden'; |
137 | 137 | } |
138 | - if (!empty($this->field['required'])) { |
|
138 | + if( !empty($this->field['required']) ) { |
|
139 | 139 | $classes[] = 'glsr-required'; |
140 | 140 | } |
141 | - $classes = apply_filters('site-reviews/rendered/field/classes', $classes, $this->field); |
|
142 | - return implode(' ', $classes); |
|
141 | + $classes = apply_filters( 'site-reviews/rendered/field/classes', $classes, $this->field ); |
|
142 | + return implode( ' ', $classes ); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
@@ -157,18 +157,18 @@ discard block |
||
157 | 157 | */ |
158 | 158 | protected function getFieldErrors() |
159 | 159 | { |
160 | - if (empty($this->field['errors']) || !is_array($this->field['errors'])) { |
|
160 | + if( empty($this->field['errors']) || !is_array( $this->field['errors'] ) ) { |
|
161 | 161 | return; |
162 | 162 | } |
163 | - $errors = array_reduce($this->field['errors'], function ($carry, $error) { |
|
164 | - return $carry.glsr(Builder::class)->span($error, ['class' => 'glsr-field-error']); |
|
163 | + $errors = array_reduce( $this->field['errors'], function( $carry, $error ) { |
|
164 | + return $carry.glsr( Builder::class )->span( $error, ['class' => 'glsr-field-error'] ); |
|
165 | 165 | }); |
166 | - return glsr(Template::class)->build('templates/form/field-errors', [ |
|
166 | + return glsr( Template::class )->build( 'templates/form/field-errors', [ |
|
167 | 167 | 'context' => [ |
168 | 168 | 'errors' => $errors, |
169 | 169 | ], |
170 | 170 | 'field' => $this->field, |
171 | - ]); |
|
171 | + ] ); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | /** |
@@ -190,17 +190,17 @@ discard block |
||
190 | 190 | $requiredValues = [ |
191 | 191 | 'name', 'type', |
192 | 192 | ]; |
193 | - foreach ($requiredValues as $value) { |
|
194 | - if (isset($this->field[$value])) { |
|
193 | + foreach( $requiredValues as $value ) { |
|
194 | + if( isset($this->field[$value]) ) { |
|
195 | 195 | continue; |
196 | 196 | } |
197 | 197 | $missingValues[] = $value; |
198 | 198 | $this->field['is_valid'] = false; |
199 | 199 | } |
200 | - if (!empty($missingValues)) { |
|
200 | + if( !empty($missingValues) ) { |
|
201 | 201 | glsr_log() |
202 | - ->warning('Field is missing: '.implode(', ', $missingValues)) |
|
203 | - ->debug($this->field); |
|
202 | + ->warning( 'Field is missing: '.implode( ', ', $missingValues ) ) |
|
203 | + ->debug( $this->field ); |
|
204 | 204 | } |
205 | 205 | return $this->field['is_valid']; |
206 | 206 | } |
@@ -210,13 +210,13 @@ discard block |
||
210 | 210 | */ |
211 | 211 | protected function normalize() |
212 | 212 | { |
213 | - if (!$this->isFieldValid()) { |
|
213 | + if( !$this->isFieldValid() ) { |
|
214 | 214 | return; |
215 | 215 | } |
216 | 216 | $this->field['path'] = $this->field['name']; |
217 | - $className = Helper::buildClassName($this->field['type'], __NAMESPACE__.'\Fields'); |
|
218 | - if (class_exists($className)) { |
|
219 | - $this->field = $className::merge($this->field); |
|
217 | + $className = Helper::buildClassName( $this->field['type'], __NAMESPACE__.'\Fields' ); |
|
218 | + if( class_exists( $className ) ) { |
|
219 | + $this->field = $className::merge( $this->field ); |
|
220 | 220 | } |
221 | 221 | $this->normalizeFieldId(); |
222 | 222 | $this->normalizeFieldName(); |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | */ |
228 | 228 | protected function normalizeFieldId() |
229 | 229 | { |
230 | - if (isset($this->field['id']) || $this->field['is_raw']) { |
|
230 | + if( isset($this->field['id']) || $this->field['is_raw'] ) { |
|
231 | 231 | return; |
232 | 232 | } |
233 | 233 | $this->field['id'] = Str::convertPathToId( |
@@ -6,285 +6,285 @@ |
||
6 | 6 | |
7 | 7 | class Attributes |
8 | 8 | { |
9 | - const ATTRIBUTES_A = [ |
|
10 | - 'download', 'href', 'hreflang', 'ping', 'referrerpolicy', 'rel', 'target', 'type', |
|
11 | - ]; |
|
9 | + const ATTRIBUTES_A = [ |
|
10 | + 'download', 'href', 'hreflang', 'ping', 'referrerpolicy', 'rel', 'target', 'type', |
|
11 | + ]; |
|
12 | 12 | |
13 | - const ATTRIBUTES_BUTTON = [ |
|
14 | - 'autofocus', 'disabled', 'form', 'formaction', 'formenctype', 'formmethod', |
|
15 | - 'formnovalidate', 'formtarget', 'name', 'type', 'value', |
|
16 | - ]; |
|
13 | + const ATTRIBUTES_BUTTON = [ |
|
14 | + 'autofocus', 'disabled', 'form', 'formaction', 'formenctype', 'formmethod', |
|
15 | + 'formnovalidate', 'formtarget', 'name', 'type', 'value', |
|
16 | + ]; |
|
17 | 17 | |
18 | - const ATTRIBUTES_FORM = [ |
|
19 | - 'accept', 'accept-charset', 'action', 'autocapitalize', 'autocomplete', 'enctype', 'method', |
|
20 | - 'name', 'novalidate', 'target', |
|
21 | - ]; |
|
18 | + const ATTRIBUTES_FORM = [ |
|
19 | + 'accept', 'accept-charset', 'action', 'autocapitalize', 'autocomplete', 'enctype', 'method', |
|
20 | + 'name', 'novalidate', 'target', |
|
21 | + ]; |
|
22 | 22 | |
23 | - const ATTRIBUTES_IMG = [ |
|
24 | - 'alt', 'crossorigin', 'decoding', 'height', 'ismap', 'referrerpolicy', 'sizes', 'src', |
|
25 | - 'srcset', 'width', 'usemap', |
|
26 | - ]; |
|
23 | + const ATTRIBUTES_IMG = [ |
|
24 | + 'alt', 'crossorigin', 'decoding', 'height', 'ismap', 'referrerpolicy', 'sizes', 'src', |
|
25 | + 'srcset', 'width', 'usemap', |
|
26 | + ]; |
|
27 | 27 | |
28 | - const ATTRIBUTES_INPUT = [ |
|
29 | - 'accept', 'autocomplete', 'autocorrect', 'autofocus', 'capture', 'checked', 'disabled', |
|
30 | - 'form', 'formaction', 'formenctype', 'formmethod', 'formnovalidate', 'formtarget', 'height', |
|
31 | - 'incremental', 'inputmode', 'list', 'max', 'maxlength', 'min', 'minlength', 'multiple', |
|
32 | - 'name', 'pattern', 'placeholder', 'readonly', 'results', 'required', 'selectionDirection', |
|
33 | - 'selectionEnd', 'selectionStart', 'size', 'spellcheck', 'src', 'step', 'tabindex', 'type', |
|
34 | - 'value', 'webkitdirectory', 'width', |
|
35 | - ]; |
|
28 | + const ATTRIBUTES_INPUT = [ |
|
29 | + 'accept', 'autocomplete', 'autocorrect', 'autofocus', 'capture', 'checked', 'disabled', |
|
30 | + 'form', 'formaction', 'formenctype', 'formmethod', 'formnovalidate', 'formtarget', 'height', |
|
31 | + 'incremental', 'inputmode', 'list', 'max', 'maxlength', 'min', 'minlength', 'multiple', |
|
32 | + 'name', 'pattern', 'placeholder', 'readonly', 'results', 'required', 'selectionDirection', |
|
33 | + 'selectionEnd', 'selectionStart', 'size', 'spellcheck', 'src', 'step', 'tabindex', 'type', |
|
34 | + 'value', 'webkitdirectory', 'width', |
|
35 | + ]; |
|
36 | 36 | |
37 | - const ATTRIBUTES_LABEL = [ |
|
38 | - 'for', |
|
39 | - ]; |
|
37 | + const ATTRIBUTES_LABEL = [ |
|
38 | + 'for', |
|
39 | + ]; |
|
40 | 40 | |
41 | - const ATTRIBUTES_OPTION = [ |
|
42 | - 'disabled', 'label', 'selected', 'value', |
|
43 | - ]; |
|
41 | + const ATTRIBUTES_OPTION = [ |
|
42 | + 'disabled', 'label', 'selected', 'value', |
|
43 | + ]; |
|
44 | 44 | |
45 | - const ATTRIBUTES_SELECT = [ |
|
46 | - 'autofocus', 'disabled', 'form', 'multiple', 'name', 'required', 'size', |
|
47 | - ]; |
|
45 | + const ATTRIBUTES_SELECT = [ |
|
46 | + 'autofocus', 'disabled', 'form', 'multiple', 'name', 'required', 'size', |
|
47 | + ]; |
|
48 | 48 | |
49 | - const ATTRIBUTES_TEXTAREA = [ |
|
50 | - 'autocapitalize', 'autocomplete', 'autofocus', 'cols', 'disabled', 'form', 'maxlength', |
|
51 | - 'minlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'wrap', |
|
52 | - ]; |
|
49 | + const ATTRIBUTES_TEXTAREA = [ |
|
50 | + 'autocapitalize', 'autocomplete', 'autofocus', 'cols', 'disabled', 'form', 'maxlength', |
|
51 | + 'minlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'wrap', |
|
52 | + ]; |
|
53 | 53 | |
54 | - const BOOLEAN_ATTRIBUTES = [ |
|
55 | - 'autofocus', 'capture', 'checked', 'disabled', 'draggable', 'formnovalidate', 'hidden', |
|
56 | - 'multiple', 'novalidate', 'readonly', 'required', 'selected', 'spellcheck', |
|
57 | - 'webkitdirectory', |
|
58 | - ]; |
|
54 | + const BOOLEAN_ATTRIBUTES = [ |
|
55 | + 'autofocus', 'capture', 'checked', 'disabled', 'draggable', 'formnovalidate', 'hidden', |
|
56 | + 'multiple', 'novalidate', 'readonly', 'required', 'selected', 'spellcheck', |
|
57 | + 'webkitdirectory', |
|
58 | + ]; |
|
59 | 59 | |
60 | - const GLOBAL_ATTRIBUTES = [ |
|
61 | - 'accesskey', 'class', 'contenteditable', 'contextmenu', 'dir', 'draggable', 'dropzone', |
|
62 | - 'hidden', 'id', 'lang', 'spellcheck', 'style', 'tabindex', 'title', |
|
63 | - ]; |
|
60 | + const GLOBAL_ATTRIBUTES = [ |
|
61 | + 'accesskey', 'class', 'contenteditable', 'contextmenu', 'dir', 'draggable', 'dropzone', |
|
62 | + 'hidden', 'id', 'lang', 'spellcheck', 'style', 'tabindex', 'title', |
|
63 | + ]; |
|
64 | 64 | |
65 | - const GLOBAL_WILDCARD_ATTRIBUTES = [ |
|
66 | - 'aria-', 'data-', 'item', 'on', |
|
67 | - ]; |
|
65 | + const GLOBAL_WILDCARD_ATTRIBUTES = [ |
|
66 | + 'aria-', 'data-', 'item', 'on', |
|
67 | + ]; |
|
68 | 68 | |
69 | - const INPUT_TYPES = [ |
|
70 | - 'button', 'checkbox', 'color', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', |
|
71 | - 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', |
|
72 | - 'time', 'url', 'week', |
|
73 | - ]; |
|
69 | + const INPUT_TYPES = [ |
|
70 | + 'button', 'checkbox', 'color', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', |
|
71 | + 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', |
|
72 | + 'time', 'url', 'week', |
|
73 | + ]; |
|
74 | 74 | |
75 | - /** |
|
76 | - * @var array |
|
77 | - */ |
|
78 | - protected $attributes = []; |
|
75 | + /** |
|
76 | + * @var array |
|
77 | + */ |
|
78 | + protected $attributes = []; |
|
79 | 79 | |
80 | - /** |
|
81 | - * @param string $method |
|
82 | - * @param array $args |
|
83 | - * @return static |
|
84 | - */ |
|
85 | - public function __call($method, $args) |
|
86 | - { |
|
87 | - $args += [[], false]; |
|
88 | - $constant = 'static::ATTRIBUTES_'.strtoupper($method); |
|
89 | - $allowedAttributeKeys = defined($constant) |
|
90 | - ? constant($constant) |
|
91 | - : []; |
|
92 | - $this->normalize((array) $args[0], $allowedAttributeKeys); |
|
93 | - $this->normalizeInputType($method); |
|
94 | - return $this; |
|
95 | - } |
|
80 | + /** |
|
81 | + * @param string $method |
|
82 | + * @param array $args |
|
83 | + * @return static |
|
84 | + */ |
|
85 | + public function __call($method, $args) |
|
86 | + { |
|
87 | + $args += [[], false]; |
|
88 | + $constant = 'static::ATTRIBUTES_'.strtoupper($method); |
|
89 | + $allowedAttributeKeys = defined($constant) |
|
90 | + ? constant($constant) |
|
91 | + : []; |
|
92 | + $this->normalize((array) $args[0], $allowedAttributeKeys); |
|
93 | + $this->normalizeInputType($method); |
|
94 | + return $this; |
|
95 | + } |
|
96 | 96 | |
97 | - /** |
|
98 | - * @return array |
|
99 | - */ |
|
100 | - public function toArray() |
|
101 | - { |
|
102 | - return $this->attributes; |
|
103 | - } |
|
97 | + /** |
|
98 | + * @return array |
|
99 | + */ |
|
100 | + public function toArray() |
|
101 | + { |
|
102 | + return $this->attributes; |
|
103 | + } |
|
104 | 104 | |
105 | - /** |
|
106 | - * @return string |
|
107 | - */ |
|
108 | - public function toString() |
|
109 | - { |
|
110 | - $attributes = []; |
|
111 | - foreach ($this->attributes as $attribute => $value) { |
|
112 | - $quote = $this->getQuoteChar($attribute); |
|
113 | - $attributes[] = in_array($attribute, static::BOOLEAN_ATTRIBUTES) |
|
114 | - ? $attribute |
|
115 | - : $attribute.'='.$quote.implode(',', (array) $value).$quote; |
|
116 | - } |
|
117 | - return implode(' ', $attributes); |
|
118 | - } |
|
105 | + /** |
|
106 | + * @return string |
|
107 | + */ |
|
108 | + public function toString() |
|
109 | + { |
|
110 | + $attributes = []; |
|
111 | + foreach ($this->attributes as $attribute => $value) { |
|
112 | + $quote = $this->getQuoteChar($attribute); |
|
113 | + $attributes[] = in_array($attribute, static::BOOLEAN_ATTRIBUTES) |
|
114 | + ? $attribute |
|
115 | + : $attribute.'='.$quote.implode(',', (array) $value).$quote; |
|
116 | + } |
|
117 | + return implode(' ', $attributes); |
|
118 | + } |
|
119 | 119 | |
120 | - /** |
|
121 | - * @return array |
|
122 | - */ |
|
123 | - protected function filterAttributes(array $allowedAttributeKeys) |
|
124 | - { |
|
125 | - return array_intersect_key($this->attributes, array_flip($allowedAttributeKeys)); |
|
126 | - } |
|
120 | + /** |
|
121 | + * @return array |
|
122 | + */ |
|
123 | + protected function filterAttributes(array $allowedAttributeKeys) |
|
124 | + { |
|
125 | + return array_intersect_key($this->attributes, array_flip($allowedAttributeKeys)); |
|
126 | + } |
|
127 | 127 | |
128 | - /** |
|
129 | - * @return array |
|
130 | - */ |
|
131 | - protected function filterGlobalAttributes() |
|
132 | - { |
|
133 | - $globalAttributes = $this->filterAttributes(static::GLOBAL_ATTRIBUTES); |
|
134 | - $wildcards = []; |
|
135 | - foreach (static::GLOBAL_WILDCARD_ATTRIBUTES as $wildcard) { |
|
136 | - $newWildcards = array_filter($this->attributes, function ($key) use ($wildcard) { |
|
137 | - return Str::startsWith($wildcard, $key); |
|
138 | - }, ARRAY_FILTER_USE_KEY); |
|
139 | - $wildcards = array_merge($wildcards, $newWildcards); |
|
140 | - } |
|
141 | - return array_merge($globalAttributes, $wildcards); |
|
142 | - } |
|
128 | + /** |
|
129 | + * @return array |
|
130 | + */ |
|
131 | + protected function filterGlobalAttributes() |
|
132 | + { |
|
133 | + $globalAttributes = $this->filterAttributes(static::GLOBAL_ATTRIBUTES); |
|
134 | + $wildcards = []; |
|
135 | + foreach (static::GLOBAL_WILDCARD_ATTRIBUTES as $wildcard) { |
|
136 | + $newWildcards = array_filter($this->attributes, function ($key) use ($wildcard) { |
|
137 | + return Str::startsWith($wildcard, $key); |
|
138 | + }, ARRAY_FILTER_USE_KEY); |
|
139 | + $wildcards = array_merge($wildcards, $newWildcards); |
|
140 | + } |
|
141 | + return array_merge($globalAttributes, $wildcards); |
|
142 | + } |
|
143 | 143 | |
144 | - /** |
|
145 | - * @return array |
|
146 | - */ |
|
147 | - protected function getPermanentAttributes() |
|
148 | - { |
|
149 | - $permanentAttributes = []; |
|
150 | - if (array_key_exists('value', $this->attributes)) { |
|
151 | - $permanentAttributes['value'] = $this->attributes['value']; |
|
152 | - } |
|
153 | - return $permanentAttributes; |
|
154 | - } |
|
144 | + /** |
|
145 | + * @return array |
|
146 | + */ |
|
147 | + protected function getPermanentAttributes() |
|
148 | + { |
|
149 | + $permanentAttributes = []; |
|
150 | + if (array_key_exists('value', $this->attributes)) { |
|
151 | + $permanentAttributes['value'] = $this->attributes['value']; |
|
152 | + } |
|
153 | + return $permanentAttributes; |
|
154 | + } |
|
155 | 155 | |
156 | - /** |
|
157 | - * @param string $attribute |
|
158 | - * @return string |
|
159 | - */ |
|
160 | - protected function getQuoteChar($attribute) |
|
161 | - { |
|
162 | - return Str::startsWith('data-', $attribute) |
|
163 | - ? '\'' |
|
164 | - : '"'; |
|
165 | - } |
|
156 | + /** |
|
157 | + * @param string $attribute |
|
158 | + * @return string |
|
159 | + */ |
|
160 | + protected function getQuoteChar($attribute) |
|
161 | + { |
|
162 | + return Str::startsWith('data-', $attribute) |
|
163 | + ? '\'' |
|
164 | + : '"'; |
|
165 | + } |
|
166 | 166 | |
167 | - /** |
|
168 | - * @param string $key |
|
169 | - * @param mixed $value |
|
170 | - * @return bool |
|
171 | - */ |
|
172 | - protected function isAttributeKeyNumeric($key, $value) |
|
173 | - { |
|
174 | - return is_string($value) |
|
175 | - && is_numeric($key) |
|
176 | - && !array_key_exists($value, $this->attributes); |
|
177 | - } |
|
167 | + /** |
|
168 | + * @param string $key |
|
169 | + * @param mixed $value |
|
170 | + * @return bool |
|
171 | + */ |
|
172 | + protected function isAttributeKeyNumeric($key, $value) |
|
173 | + { |
|
174 | + return is_string($value) |
|
175 | + && is_numeric($key) |
|
176 | + && !array_key_exists($value, $this->attributes); |
|
177 | + } |
|
178 | 178 | |
179 | - /** |
|
180 | - * @return void |
|
181 | - */ |
|
182 | - protected function normalize(array $args, array $allowedAttributeKeys) |
|
183 | - { |
|
184 | - $this->attributes = array_change_key_case($args, CASE_LOWER); |
|
185 | - $this->normalizeBooleanAttributes(); |
|
186 | - $this->normalizeDataAttributes(); |
|
187 | - $this->normalizeStringAttributes(); |
|
188 | - $this->removeEmptyAttributes(); |
|
189 | - $this->removeIndexedAttributes(); |
|
190 | - $this->attributes = array_merge( |
|
191 | - $this->filterGlobalAttributes(), |
|
192 | - $this->filterAttributes($allowedAttributeKeys) |
|
193 | - ); |
|
194 | - } |
|
179 | + /** |
|
180 | + * @return void |
|
181 | + */ |
|
182 | + protected function normalize(array $args, array $allowedAttributeKeys) |
|
183 | + { |
|
184 | + $this->attributes = array_change_key_case($args, CASE_LOWER); |
|
185 | + $this->normalizeBooleanAttributes(); |
|
186 | + $this->normalizeDataAttributes(); |
|
187 | + $this->normalizeStringAttributes(); |
|
188 | + $this->removeEmptyAttributes(); |
|
189 | + $this->removeIndexedAttributes(); |
|
190 | + $this->attributes = array_merge( |
|
191 | + $this->filterGlobalAttributes(), |
|
192 | + $this->filterAttributes($allowedAttributeKeys) |
|
193 | + ); |
|
194 | + } |
|
195 | 195 | |
196 | - /** |
|
197 | - * @return void |
|
198 | - */ |
|
199 | - protected function normalizeBooleanAttributes() |
|
200 | - { |
|
201 | - foreach ($this->attributes as $key => $value) { |
|
202 | - if ($this->isAttributeKeyNumeric($key, $value)) { |
|
203 | - $key = $value; |
|
204 | - $value = true; |
|
205 | - } |
|
206 | - if (!in_array($key, static::BOOLEAN_ATTRIBUTES)) { |
|
207 | - continue; |
|
208 | - } |
|
209 | - $this->attributes[$key] = wp_validate_boolean($value); |
|
210 | - } |
|
211 | - } |
|
196 | + /** |
|
197 | + * @return void |
|
198 | + */ |
|
199 | + protected function normalizeBooleanAttributes() |
|
200 | + { |
|
201 | + foreach ($this->attributes as $key => $value) { |
|
202 | + if ($this->isAttributeKeyNumeric($key, $value)) { |
|
203 | + $key = $value; |
|
204 | + $value = true; |
|
205 | + } |
|
206 | + if (!in_array($key, static::BOOLEAN_ATTRIBUTES)) { |
|
207 | + continue; |
|
208 | + } |
|
209 | + $this->attributes[$key] = wp_validate_boolean($value); |
|
210 | + } |
|
211 | + } |
|
212 | 212 | |
213 | - /** |
|
214 | - * @return void |
|
215 | - */ |
|
216 | - protected function normalizeDataAttributes() |
|
217 | - { |
|
218 | - foreach ($this->attributes as $key => $value) { |
|
219 | - if ($this->isAttributeKeyNumeric($key, $value)) { |
|
220 | - $key = $value; |
|
221 | - $value = ''; |
|
222 | - } |
|
223 | - if (!Str::startsWith('data-', $key)) { |
|
224 | - continue; |
|
225 | - } |
|
226 | - if (is_array($value)) { |
|
227 | - $value = json_encode($value, JSON_HEX_APOS | JSON_NUMERIC_CHECK | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |
|
228 | - } |
|
229 | - $this->attributes[$key] = $value; |
|
230 | - } |
|
231 | - } |
|
213 | + /** |
|
214 | + * @return void |
|
215 | + */ |
|
216 | + protected function normalizeDataAttributes() |
|
217 | + { |
|
218 | + foreach ($this->attributes as $key => $value) { |
|
219 | + if ($this->isAttributeKeyNumeric($key, $value)) { |
|
220 | + $key = $value; |
|
221 | + $value = ''; |
|
222 | + } |
|
223 | + if (!Str::startsWith('data-', $key)) { |
|
224 | + continue; |
|
225 | + } |
|
226 | + if (is_array($value)) { |
|
227 | + $value = json_encode($value, JSON_HEX_APOS | JSON_NUMERIC_CHECK | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |
|
228 | + } |
|
229 | + $this->attributes[$key] = $value; |
|
230 | + } |
|
231 | + } |
|
232 | 232 | |
233 | - /** |
|
234 | - * @return void |
|
235 | - */ |
|
236 | - protected function normalizeStringAttributes() |
|
237 | - { |
|
238 | - foreach ($this->attributes as $key => $value) { |
|
239 | - if (!is_string($value)) { |
|
240 | - continue; |
|
241 | - } |
|
242 | - $this->attributes[$key] = trim($value); |
|
243 | - } |
|
244 | - } |
|
233 | + /** |
|
234 | + * @return void |
|
235 | + */ |
|
236 | + protected function normalizeStringAttributes() |
|
237 | + { |
|
238 | + foreach ($this->attributes as $key => $value) { |
|
239 | + if (!is_string($value)) { |
|
240 | + continue; |
|
241 | + } |
|
242 | + $this->attributes[$key] = trim($value); |
|
243 | + } |
|
244 | + } |
|
245 | 245 | |
246 | - /** |
|
247 | - * @param string $method |
|
248 | - * @return void |
|
249 | - */ |
|
250 | - protected function normalizeInputType($method) |
|
251 | - { |
|
252 | - if ('input' != $method) { |
|
253 | - return; |
|
254 | - } |
|
255 | - $attributes = wp_parse_args($this->attributes, ['type' => '']); |
|
256 | - if (!in_array($attributes['type'], static::INPUT_TYPES)) { |
|
257 | - $this->attributes['type'] = 'text'; |
|
258 | - } |
|
259 | - } |
|
246 | + /** |
|
247 | + * @param string $method |
|
248 | + * @return void |
|
249 | + */ |
|
250 | + protected function normalizeInputType($method) |
|
251 | + { |
|
252 | + if ('input' != $method) { |
|
253 | + return; |
|
254 | + } |
|
255 | + $attributes = wp_parse_args($this->attributes, ['type' => '']); |
|
256 | + if (!in_array($attributes['type'], static::INPUT_TYPES)) { |
|
257 | + $this->attributes['type'] = 'text'; |
|
258 | + } |
|
259 | + } |
|
260 | 260 | |
261 | - /** |
|
262 | - * @return void |
|
263 | - */ |
|
264 | - protected function removeEmptyAttributes() |
|
265 | - { |
|
266 | - $attributes = $this->attributes; |
|
267 | - $permanentAttributes = $this->getPermanentAttributes(); |
|
268 | - foreach ($this->attributes as $key => $value) { |
|
269 | - if (in_array($key, static::BOOLEAN_ATTRIBUTES) && !$value) { |
|
270 | - unset($attributes[$key]); |
|
271 | - } |
|
272 | - if (Str::startsWith('data-', $key)) { |
|
273 | - $permanentAttributes[$key] = $value; |
|
274 | - unset($attributes[$key]); |
|
275 | - } |
|
276 | - } |
|
277 | - $this->attributes = array_merge(array_filter($attributes), $permanentAttributes); |
|
278 | - } |
|
261 | + /** |
|
262 | + * @return void |
|
263 | + */ |
|
264 | + protected function removeEmptyAttributes() |
|
265 | + { |
|
266 | + $attributes = $this->attributes; |
|
267 | + $permanentAttributes = $this->getPermanentAttributes(); |
|
268 | + foreach ($this->attributes as $key => $value) { |
|
269 | + if (in_array($key, static::BOOLEAN_ATTRIBUTES) && !$value) { |
|
270 | + unset($attributes[$key]); |
|
271 | + } |
|
272 | + if (Str::startsWith('data-', $key)) { |
|
273 | + $permanentAttributes[$key] = $value; |
|
274 | + unset($attributes[$key]); |
|
275 | + } |
|
276 | + } |
|
277 | + $this->attributes = array_merge(array_filter($attributes), $permanentAttributes); |
|
278 | + } |
|
279 | 279 | |
280 | - /** |
|
281 | - * @return void |
|
282 | - */ |
|
283 | - protected function removeIndexedAttributes() |
|
284 | - { |
|
285 | - $this->attributes = array_diff_key( |
|
286 | - $this->attributes, |
|
287 | - array_filter($this->attributes, 'is_numeric', ARRAY_FILTER_USE_KEY) |
|
288 | - ); |
|
289 | - } |
|
280 | + /** |
|
281 | + * @return void |
|
282 | + */ |
|
283 | + protected function removeIndexedAttributes() |
|
284 | + { |
|
285 | + $this->attributes = array_diff_key( |
|
286 | + $this->attributes, |
|
287 | + array_filter($this->attributes, 'is_numeric', ARRAY_FILTER_USE_KEY) |
|
288 | + ); |
|
289 | + } |
|
290 | 290 | } |
@@ -82,15 +82,15 @@ discard block |
||
82 | 82 | * @param array $args |
83 | 83 | * @return static |
84 | 84 | */ |
85 | - public function __call($method, $args) |
|
85 | + public function __call( $method, $args ) |
|
86 | 86 | { |
87 | 87 | $args += [[], false]; |
88 | - $constant = 'static::ATTRIBUTES_'.strtoupper($method); |
|
89 | - $allowedAttributeKeys = defined($constant) |
|
90 | - ? constant($constant) |
|
88 | + $constant = 'static::ATTRIBUTES_'.strtoupper( $method ); |
|
89 | + $allowedAttributeKeys = defined( $constant ) |
|
90 | + ? constant( $constant ) |
|
91 | 91 | : []; |
92 | - $this->normalize((array) $args[0], $allowedAttributeKeys); |
|
93 | - $this->normalizeInputType($method); |
|
92 | + $this->normalize( (array)$args[0], $allowedAttributeKeys ); |
|
93 | + $this->normalizeInputType( $method ); |
|
94 | 94 | return $this; |
95 | 95 | } |
96 | 96 | |
@@ -108,21 +108,21 @@ discard block |
||
108 | 108 | public function toString() |
109 | 109 | { |
110 | 110 | $attributes = []; |
111 | - foreach ($this->attributes as $attribute => $value) { |
|
112 | - $quote = $this->getQuoteChar($attribute); |
|
113 | - $attributes[] = in_array($attribute, static::BOOLEAN_ATTRIBUTES) |
|
111 | + foreach( $this->attributes as $attribute => $value ) { |
|
112 | + $quote = $this->getQuoteChar( $attribute ); |
|
113 | + $attributes[] = in_array( $attribute, static::BOOLEAN_ATTRIBUTES ) |
|
114 | 114 | ? $attribute |
115 | - : $attribute.'='.$quote.implode(',', (array) $value).$quote; |
|
115 | + : $attribute.'='.$quote.implode( ',', (array)$value ).$quote; |
|
116 | 116 | } |
117 | - return implode(' ', $attributes); |
|
117 | + return implode( ' ', $attributes ); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
121 | 121 | * @return array |
122 | 122 | */ |
123 | - protected function filterAttributes(array $allowedAttributeKeys) |
|
123 | + protected function filterAttributes( array $allowedAttributeKeys ) |
|
124 | 124 | { |
125 | - return array_intersect_key($this->attributes, array_flip($allowedAttributeKeys)); |
|
125 | + return array_intersect_key( $this->attributes, array_flip( $allowedAttributeKeys ) ); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -130,15 +130,15 @@ discard block |
||
130 | 130 | */ |
131 | 131 | protected function filterGlobalAttributes() |
132 | 132 | { |
133 | - $globalAttributes = $this->filterAttributes(static::GLOBAL_ATTRIBUTES); |
|
133 | + $globalAttributes = $this->filterAttributes( static::GLOBAL_ATTRIBUTES ); |
|
134 | 134 | $wildcards = []; |
135 | - foreach (static::GLOBAL_WILDCARD_ATTRIBUTES as $wildcard) { |
|
136 | - $newWildcards = array_filter($this->attributes, function ($key) use ($wildcard) { |
|
137 | - return Str::startsWith($wildcard, $key); |
|
138 | - }, ARRAY_FILTER_USE_KEY); |
|
139 | - $wildcards = array_merge($wildcards, $newWildcards); |
|
135 | + foreach( static::GLOBAL_WILDCARD_ATTRIBUTES as $wildcard ) { |
|
136 | + $newWildcards = array_filter( $this->attributes, function( $key ) use ($wildcard) { |
|
137 | + return Str::startsWith( $wildcard, $key ); |
|
138 | + }, ARRAY_FILTER_USE_KEY ); |
|
139 | + $wildcards = array_merge( $wildcards, $newWildcards ); |
|
140 | 140 | } |
141 | - return array_merge($globalAttributes, $wildcards); |
|
141 | + return array_merge( $globalAttributes, $wildcards ); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | protected function getPermanentAttributes() |
148 | 148 | { |
149 | 149 | $permanentAttributes = []; |
150 | - if (array_key_exists('value', $this->attributes)) { |
|
150 | + if( array_key_exists( 'value', $this->attributes ) ) { |
|
151 | 151 | $permanentAttributes['value'] = $this->attributes['value']; |
152 | 152 | } |
153 | 153 | return $permanentAttributes; |
@@ -157,9 +157,9 @@ discard block |
||
157 | 157 | * @param string $attribute |
158 | 158 | * @return string |
159 | 159 | */ |
160 | - protected function getQuoteChar($attribute) |
|
160 | + protected function getQuoteChar( $attribute ) |
|
161 | 161 | { |
162 | - return Str::startsWith('data-', $attribute) |
|
162 | + return Str::startsWith( 'data-', $attribute ) |
|
163 | 163 | ? '\'' |
164 | 164 | : '"'; |
165 | 165 | } |
@@ -169,19 +169,19 @@ discard block |
||
169 | 169 | * @param mixed $value |
170 | 170 | * @return bool |
171 | 171 | */ |
172 | - protected function isAttributeKeyNumeric($key, $value) |
|
172 | + protected function isAttributeKeyNumeric( $key, $value ) |
|
173 | 173 | { |
174 | - return is_string($value) |
|
175 | - && is_numeric($key) |
|
176 | - && !array_key_exists($value, $this->attributes); |
|
174 | + return is_string( $value ) |
|
175 | + && is_numeric( $key ) |
|
176 | + && !array_key_exists( $value, $this->attributes ); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
180 | 180 | * @return void |
181 | 181 | */ |
182 | - protected function normalize(array $args, array $allowedAttributeKeys) |
|
182 | + protected function normalize( array $args, array $allowedAttributeKeys ) |
|
183 | 183 | { |
184 | - $this->attributes = array_change_key_case($args, CASE_LOWER); |
|
184 | + $this->attributes = array_change_key_case( $args, CASE_LOWER ); |
|
185 | 185 | $this->normalizeBooleanAttributes(); |
186 | 186 | $this->normalizeDataAttributes(); |
187 | 187 | $this->normalizeStringAttributes(); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | $this->removeIndexedAttributes(); |
190 | 190 | $this->attributes = array_merge( |
191 | 191 | $this->filterGlobalAttributes(), |
192 | - $this->filterAttributes($allowedAttributeKeys) |
|
192 | + $this->filterAttributes( $allowedAttributeKeys ) |
|
193 | 193 | ); |
194 | 194 | } |
195 | 195 | |
@@ -198,15 +198,15 @@ discard block |
||
198 | 198 | */ |
199 | 199 | protected function normalizeBooleanAttributes() |
200 | 200 | { |
201 | - foreach ($this->attributes as $key => $value) { |
|
202 | - if ($this->isAttributeKeyNumeric($key, $value)) { |
|
201 | + foreach( $this->attributes as $key => $value ) { |
|
202 | + if( $this->isAttributeKeyNumeric( $key, $value ) ) { |
|
203 | 203 | $key = $value; |
204 | 204 | $value = true; |
205 | 205 | } |
206 | - if (!in_array($key, static::BOOLEAN_ATTRIBUTES)) { |
|
206 | + if( !in_array( $key, static::BOOLEAN_ATTRIBUTES ) ) { |
|
207 | 207 | continue; |
208 | 208 | } |
209 | - $this->attributes[$key] = wp_validate_boolean($value); |
|
209 | + $this->attributes[$key] = wp_validate_boolean( $value ); |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | |
@@ -215,16 +215,16 @@ discard block |
||
215 | 215 | */ |
216 | 216 | protected function normalizeDataAttributes() |
217 | 217 | { |
218 | - foreach ($this->attributes as $key => $value) { |
|
219 | - if ($this->isAttributeKeyNumeric($key, $value)) { |
|
218 | + foreach( $this->attributes as $key => $value ) { |
|
219 | + if( $this->isAttributeKeyNumeric( $key, $value ) ) { |
|
220 | 220 | $key = $value; |
221 | 221 | $value = ''; |
222 | 222 | } |
223 | - if (!Str::startsWith('data-', $key)) { |
|
223 | + if( !Str::startsWith( 'data-', $key ) ) { |
|
224 | 224 | continue; |
225 | 225 | } |
226 | - if (is_array($value)) { |
|
227 | - $value = json_encode($value, JSON_HEX_APOS | JSON_NUMERIC_CHECK | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |
|
226 | + if( is_array( $value ) ) { |
|
227 | + $value = json_encode( $value, JSON_HEX_APOS | JSON_NUMERIC_CHECK | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ); |
|
228 | 228 | } |
229 | 229 | $this->attributes[$key] = $value; |
230 | 230 | } |
@@ -235,11 +235,11 @@ discard block |
||
235 | 235 | */ |
236 | 236 | protected function normalizeStringAttributes() |
237 | 237 | { |
238 | - foreach ($this->attributes as $key => $value) { |
|
239 | - if (!is_string($value)) { |
|
238 | + foreach( $this->attributes as $key => $value ) { |
|
239 | + if( !is_string( $value ) ) { |
|
240 | 240 | continue; |
241 | 241 | } |
242 | - $this->attributes[$key] = trim($value); |
|
242 | + $this->attributes[$key] = trim( $value ); |
|
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
@@ -247,13 +247,13 @@ discard block |
||
247 | 247 | * @param string $method |
248 | 248 | * @return void |
249 | 249 | */ |
250 | - protected function normalizeInputType($method) |
|
250 | + protected function normalizeInputType( $method ) |
|
251 | 251 | { |
252 | - if ('input' != $method) { |
|
252 | + if( 'input' != $method ) { |
|
253 | 253 | return; |
254 | 254 | } |
255 | - $attributes = wp_parse_args($this->attributes, ['type' => '']); |
|
256 | - if (!in_array($attributes['type'], static::INPUT_TYPES)) { |
|
255 | + $attributes = wp_parse_args( $this->attributes, ['type' => ''] ); |
|
256 | + if( !in_array( $attributes['type'], static::INPUT_TYPES ) ) { |
|
257 | 257 | $this->attributes['type'] = 'text'; |
258 | 258 | } |
259 | 259 | } |
@@ -265,16 +265,16 @@ discard block |
||
265 | 265 | { |
266 | 266 | $attributes = $this->attributes; |
267 | 267 | $permanentAttributes = $this->getPermanentAttributes(); |
268 | - foreach ($this->attributes as $key => $value) { |
|
269 | - if (in_array($key, static::BOOLEAN_ATTRIBUTES) && !$value) { |
|
268 | + foreach( $this->attributes as $key => $value ) { |
|
269 | + if( in_array( $key, static::BOOLEAN_ATTRIBUTES ) && !$value ) { |
|
270 | 270 | unset($attributes[$key]); |
271 | 271 | } |
272 | - if (Str::startsWith('data-', $key)) { |
|
272 | + if( Str::startsWith( 'data-', $key ) ) { |
|
273 | 273 | $permanentAttributes[$key] = $value; |
274 | 274 | unset($attributes[$key]); |
275 | 275 | } |
276 | 276 | } |
277 | - $this->attributes = array_merge(array_filter($attributes), $permanentAttributes); |
|
277 | + $this->attributes = array_merge( array_filter( $attributes ), $permanentAttributes ); |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | /** |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | { |
285 | 285 | $this->attributes = array_diff_key( |
286 | 286 | $this->attributes, |
287 | - array_filter($this->attributes, 'is_numeric', ARRAY_FILTER_USE_KEY) |
|
287 | + array_filter( $this->attributes, 'is_numeric', ARRAY_FILTER_USE_KEY ) |
|
288 | 288 | ); |
289 | 289 | } |
290 | 290 | } |
@@ -6,30 +6,30 @@ |
||
6 | 6 | |
7 | 7 | class Partial |
8 | 8 | { |
9 | - /** |
|
10 | - * @param string $partialPath |
|
11 | - * @return string |
|
12 | - */ |
|
13 | - public function build($partialPath, array $args = []) |
|
14 | - { |
|
15 | - $className = Helper::buildClassName($partialPath, 'Modules\Html\Partials'); |
|
16 | - if (!class_exists($className)) { |
|
17 | - glsr_log()->error('Partial missing: '.$className); |
|
18 | - return; |
|
19 | - } |
|
20 | - $args = apply_filters('site-reviews/partial/args/'.$partialPath, $args); |
|
21 | - $partial = glsr($className)->build($args); |
|
22 | - $partial = apply_filters('site-reviews/rendered/partial', $partial, $partialPath, $args); |
|
23 | - $partial = apply_filters('site-reviews/rendered/partial/'.$partialPath, $partial, $args); |
|
24 | - return $partial; |
|
25 | - } |
|
9 | + /** |
|
10 | + * @param string $partialPath |
|
11 | + * @return string |
|
12 | + */ |
|
13 | + public function build($partialPath, array $args = []) |
|
14 | + { |
|
15 | + $className = Helper::buildClassName($partialPath, 'Modules\Html\Partials'); |
|
16 | + if (!class_exists($className)) { |
|
17 | + glsr_log()->error('Partial missing: '.$className); |
|
18 | + return; |
|
19 | + } |
|
20 | + $args = apply_filters('site-reviews/partial/args/'.$partialPath, $args); |
|
21 | + $partial = glsr($className)->build($args); |
|
22 | + $partial = apply_filters('site-reviews/rendered/partial', $partial, $partialPath, $args); |
|
23 | + $partial = apply_filters('site-reviews/rendered/partial/'.$partialPath, $partial, $args); |
|
24 | + return $partial; |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * @param string $partialPath |
|
29 | - * @return void |
|
30 | - */ |
|
31 | - public function render($partialPath, array $args = []) |
|
32 | - { |
|
33 | - echo $this->build($partialPath, $args); |
|
34 | - } |
|
27 | + /** |
|
28 | + * @param string $partialPath |
|
29 | + * @return void |
|
30 | + */ |
|
31 | + public function render($partialPath, array $args = []) |
|
32 | + { |
|
33 | + echo $this->build($partialPath, $args); |
|
34 | + } |
|
35 | 35 | } |
@@ -10,17 +10,17 @@ discard block |
||
10 | 10 | * @param string $partialPath |
11 | 11 | * @return string |
12 | 12 | */ |
13 | - public function build($partialPath, array $args = []) |
|
13 | + public function build( $partialPath, array $args = [] ) |
|
14 | 14 | { |
15 | - $className = Helper::buildClassName($partialPath, 'Modules\Html\Partials'); |
|
16 | - if (!class_exists($className)) { |
|
17 | - glsr_log()->error('Partial missing: '.$className); |
|
15 | + $className = Helper::buildClassName( $partialPath, 'Modules\Html\Partials' ); |
|
16 | + if( !class_exists( $className ) ) { |
|
17 | + glsr_log()->error( 'Partial missing: '.$className ); |
|
18 | 18 | return; |
19 | 19 | } |
20 | - $args = apply_filters('site-reviews/partial/args/'.$partialPath, $args); |
|
21 | - $partial = glsr($className)->build($args); |
|
22 | - $partial = apply_filters('site-reviews/rendered/partial', $partial, $partialPath, $args); |
|
23 | - $partial = apply_filters('site-reviews/rendered/partial/'.$partialPath, $partial, $args); |
|
20 | + $args = apply_filters( 'site-reviews/partial/args/'.$partialPath, $args ); |
|
21 | + $partial = glsr( $className )->build( $args ); |
|
22 | + $partial = apply_filters( 'site-reviews/rendered/partial', $partial, $partialPath, $args ); |
|
23 | + $partial = apply_filters( 'site-reviews/rendered/partial/'.$partialPath, $partial, $args ); |
|
24 | 24 | return $partial; |
25 | 25 | } |
26 | 26 | |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | * @param string $partialPath |
29 | 29 | * @return void |
30 | 30 | */ |
31 | - public function render($partialPath, array $args = []) |
|
31 | + public function render( $partialPath, array $args = [] ) |
|
32 | 32 | { |
33 | - echo $this->build($partialPath, $args); |
|
33 | + echo $this->build( $partialPath, $args ); |
|
34 | 34 | } |
35 | 35 | } |
@@ -9,67 +9,67 @@ |
||
9 | 9 | |
10 | 10 | class Upgrade_4_0_2 |
11 | 11 | { |
12 | - public function __construct() |
|
13 | - { |
|
14 | - $this->migrateSettings(); |
|
15 | - $this->protectMetaKeys(); |
|
16 | - $this->deleteSessions(); |
|
17 | - delete_transient(Application::ID.'_cloudflare_ips'); |
|
18 | - } |
|
12 | + public function __construct() |
|
13 | + { |
|
14 | + $this->migrateSettings(); |
|
15 | + $this->protectMetaKeys(); |
|
16 | + $this->deleteSessions(); |
|
17 | + delete_transient(Application::ID.'_cloudflare_ips'); |
|
18 | + } |
|
19 | 19 | |
20 | - /** |
|
21 | - * @return void |
|
22 | - */ |
|
23 | - public function deleteSessions() |
|
24 | - { |
|
25 | - global $wpdb; |
|
26 | - $wpdb->query(" |
|
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
23 | + public function deleteSessions() |
|
24 | + { |
|
25 | + global $wpdb; |
|
26 | + $wpdb->query(" |
|
27 | 27 | DELETE |
28 | 28 | FROM {$wpdb->options} |
29 | 29 | WHERE option_name LIKE '_glsr_session%' |
30 | 30 | "); |
31 | - } |
|
31 | + } |
|
32 | 32 | |
33 | - /** |
|
34 | - * @return void |
|
35 | - */ |
|
36 | - public function migrateSettings() |
|
37 | - { |
|
38 | - if ($settings = get_option(OptionManager::databaseKey(3))) { |
|
39 | - $multilingual = 'yes' == Arr::get($settings, 'settings.general.support.polylang') |
|
40 | - ? 'polylang' |
|
41 | - : ''; |
|
42 | - $settings = Arr::set($settings, 'settings.general.multilingual', $multilingual); |
|
43 | - $settings = Arr::set($settings, 'settings.general.rebusify', 'no'); |
|
44 | - $settings = Arr::set($settings, 'settings.general.rebusify_email', ''); |
|
45 | - $settings = Arr::set($settings, 'settings.general.rebusify_serial', ''); |
|
46 | - $settings = Arr::set($settings, 'settings.reviews.name.format', ''); |
|
47 | - $settings = Arr::set($settings, 'settings.reviews.name.initial', ''); |
|
48 | - $settings = Arr::set($settings, 'settings.submissions.blacklist.integration', ''); |
|
49 | - $settings = Arr::set($settings, 'settings.submissions.limit', ''); |
|
50 | - $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.email', ''); |
|
51 | - $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.ip_address', ''); |
|
52 | - $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.username', ''); |
|
53 | - unset($settings['settings']['general']['support']); |
|
54 | - update_option(OptionManager::databaseKey(4), $settings); |
|
55 | - } |
|
56 | - } |
|
33 | + /** |
|
34 | + * @return void |
|
35 | + */ |
|
36 | + public function migrateSettings() |
|
37 | + { |
|
38 | + if ($settings = get_option(OptionManager::databaseKey(3))) { |
|
39 | + $multilingual = 'yes' == Arr::get($settings, 'settings.general.support.polylang') |
|
40 | + ? 'polylang' |
|
41 | + : ''; |
|
42 | + $settings = Arr::set($settings, 'settings.general.multilingual', $multilingual); |
|
43 | + $settings = Arr::set($settings, 'settings.general.rebusify', 'no'); |
|
44 | + $settings = Arr::set($settings, 'settings.general.rebusify_email', ''); |
|
45 | + $settings = Arr::set($settings, 'settings.general.rebusify_serial', ''); |
|
46 | + $settings = Arr::set($settings, 'settings.reviews.name.format', ''); |
|
47 | + $settings = Arr::set($settings, 'settings.reviews.name.initial', ''); |
|
48 | + $settings = Arr::set($settings, 'settings.submissions.blacklist.integration', ''); |
|
49 | + $settings = Arr::set($settings, 'settings.submissions.limit', ''); |
|
50 | + $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.email', ''); |
|
51 | + $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.ip_address', ''); |
|
52 | + $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.username', ''); |
|
53 | + unset($settings['settings']['general']['support']); |
|
54 | + update_option(OptionManager::databaseKey(4), $settings); |
|
55 | + } |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * @return void |
|
60 | - */ |
|
61 | - public function protectMetaKeys() |
|
62 | - { |
|
63 | - global $wpdb; |
|
64 | - $keys = array_keys(glsr(CreateReviewDefaults::class)->defaults()); |
|
65 | - $keys = implode("','", $keys); |
|
66 | - $postType = Application::POST_TYPE; |
|
67 | - $wpdb->query(" |
|
58 | + /** |
|
59 | + * @return void |
|
60 | + */ |
|
61 | + public function protectMetaKeys() |
|
62 | + { |
|
63 | + global $wpdb; |
|
64 | + $keys = array_keys(glsr(CreateReviewDefaults::class)->defaults()); |
|
65 | + $keys = implode("','", $keys); |
|
66 | + $postType = Application::POST_TYPE; |
|
67 | + $wpdb->query(" |
|
68 | 68 | UPDATE {$wpdb->postmeta} pm |
69 | 69 | INNER JOIN {$wpdb->posts} p ON p.id = pm.post_id |
70 | 70 | SET pm.meta_key = CONCAT('_', pm.meta_key) |
71 | 71 | WHERE pm.meta_key IN ('{$keys}') |
72 | 72 | AND p.post_type = '{$postType}' |
73 | 73 | "); |
74 | - } |
|
74 | + } |
|
75 | 75 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | $this->migrateSettings(); |
15 | 15 | $this->protectMetaKeys(); |
16 | 16 | $this->deleteSessions(); |
17 | - delete_transient(Application::ID.'_cloudflare_ips'); |
|
17 | + delete_transient( Application::ID.'_cloudflare_ips' ); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | public function deleteSessions() |
24 | 24 | { |
25 | 25 | global $wpdb; |
26 | - $wpdb->query(" |
|
26 | + $wpdb->query( " |
|
27 | 27 | DELETE |
28 | 28 | FROM {$wpdb->options} |
29 | 29 | WHERE option_name LIKE '_glsr_session%' |
30 | - "); |
|
30 | + " ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -35,23 +35,23 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public function migrateSettings() |
37 | 37 | { |
38 | - if ($settings = get_option(OptionManager::databaseKey(3))) { |
|
39 | - $multilingual = 'yes' == Arr::get($settings, 'settings.general.support.polylang') |
|
38 | + if( $settings = get_option( OptionManager::databaseKey( 3 ) ) ) { |
|
39 | + $multilingual = 'yes' == Arr::get( $settings, 'settings.general.support.polylang' ) |
|
40 | 40 | ? 'polylang' |
41 | 41 | : ''; |
42 | - $settings = Arr::set($settings, 'settings.general.multilingual', $multilingual); |
|
43 | - $settings = Arr::set($settings, 'settings.general.rebusify', 'no'); |
|
44 | - $settings = Arr::set($settings, 'settings.general.rebusify_email', ''); |
|
45 | - $settings = Arr::set($settings, 'settings.general.rebusify_serial', ''); |
|
46 | - $settings = Arr::set($settings, 'settings.reviews.name.format', ''); |
|
47 | - $settings = Arr::set($settings, 'settings.reviews.name.initial', ''); |
|
48 | - $settings = Arr::set($settings, 'settings.submissions.blacklist.integration', ''); |
|
49 | - $settings = Arr::set($settings, 'settings.submissions.limit', ''); |
|
50 | - $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.email', ''); |
|
51 | - $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.ip_address', ''); |
|
52 | - $settings = Arr::set($settings, 'settings.submissions.limit_whitelist.username', ''); |
|
42 | + $settings = Arr::set( $settings, 'settings.general.multilingual', $multilingual ); |
|
43 | + $settings = Arr::set( $settings, 'settings.general.rebusify', 'no' ); |
|
44 | + $settings = Arr::set( $settings, 'settings.general.rebusify_email', '' ); |
|
45 | + $settings = Arr::set( $settings, 'settings.general.rebusify_serial', '' ); |
|
46 | + $settings = Arr::set( $settings, 'settings.reviews.name.format', '' ); |
|
47 | + $settings = Arr::set( $settings, 'settings.reviews.name.initial', '' ); |
|
48 | + $settings = Arr::set( $settings, 'settings.submissions.blacklist.integration', '' ); |
|
49 | + $settings = Arr::set( $settings, 'settings.submissions.limit', '' ); |
|
50 | + $settings = Arr::set( $settings, 'settings.submissions.limit_whitelist.email', '' ); |
|
51 | + $settings = Arr::set( $settings, 'settings.submissions.limit_whitelist.ip_address', '' ); |
|
52 | + $settings = Arr::set( $settings, 'settings.submissions.limit_whitelist.username', '' ); |
|
53 | 53 | unset($settings['settings']['general']['support']); |
54 | - update_option(OptionManager::databaseKey(4), $settings); |
|
54 | + update_option( OptionManager::databaseKey( 4 ), $settings ); |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
@@ -61,15 +61,15 @@ discard block |
||
61 | 61 | public function protectMetaKeys() |
62 | 62 | { |
63 | 63 | global $wpdb; |
64 | - $keys = array_keys(glsr(CreateReviewDefaults::class)->defaults()); |
|
65 | - $keys = implode("','", $keys); |
|
64 | + $keys = array_keys( glsr( CreateReviewDefaults::class )->defaults() ); |
|
65 | + $keys = implode( "','", $keys ); |
|
66 | 66 | $postType = Application::POST_TYPE; |
67 | - $wpdb->query(" |
|
67 | + $wpdb->query( " |
|
68 | 68 | UPDATE {$wpdb->postmeta} pm |
69 | 69 | INNER JOIN {$wpdb->posts} p ON p.id = pm.post_id |
70 | 70 | SET pm.meta_key = CONCAT('_', pm.meta_key) |
71 | 71 | WHERE pm.meta_key IN ('{$keys}') |
72 | 72 | AND p.post_type = '{$postType}' |
73 | - "); |
|
73 | + " ); |
|
74 | 74 | } |
75 | 75 | } |
@@ -12,291 +12,291 @@ |
||
12 | 12 | |
13 | 13 | class Schema |
14 | 14 | { |
15 | - /** |
|
16 | - * @var array |
|
17 | - */ |
|
18 | - protected $args; |
|
15 | + /** |
|
16 | + * @var array |
|
17 | + */ |
|
18 | + protected $args; |
|
19 | 19 | |
20 | - /** |
|
21 | - * @var array |
|
22 | - */ |
|
23 | - protected $ratingCounts; |
|
20 | + /** |
|
21 | + * @var array |
|
22 | + */ |
|
23 | + protected $ratingCounts; |
|
24 | 24 | |
25 | - /** |
|
26 | - * @return array |
|
27 | - */ |
|
28 | - public function build(array $args = []) |
|
29 | - { |
|
30 | - $this->args = $args; |
|
31 | - $schema = $this->buildSummary($args); |
|
32 | - $reviews = []; |
|
33 | - foreach (glsr(ReviewManager::class)->get($this->args) as $review) { |
|
34 | - // Only include critic reviews that have been directly produced by your site, not reviews from third-party sites or syndicated reviews. |
|
35 | - // @see https://developers.google.com/search/docs/data-types/review |
|
36 | - if ('local' != $review->review_type) { |
|
37 | - continue; |
|
38 | - } |
|
39 | - $reviews[] = $this->buildReview($review); |
|
40 | - } |
|
41 | - if (!empty($reviews)) { |
|
42 | - array_walk($reviews, function (&$review) { |
|
43 | - unset($review['@context']); |
|
44 | - unset($review['itemReviewed']); |
|
45 | - }); |
|
46 | - $schema['review'] = $reviews; |
|
47 | - } |
|
48 | - return $schema; |
|
49 | - } |
|
25 | + /** |
|
26 | + * @return array |
|
27 | + */ |
|
28 | + public function build(array $args = []) |
|
29 | + { |
|
30 | + $this->args = $args; |
|
31 | + $schema = $this->buildSummary($args); |
|
32 | + $reviews = []; |
|
33 | + foreach (glsr(ReviewManager::class)->get($this->args) as $review) { |
|
34 | + // Only include critic reviews that have been directly produced by your site, not reviews from third-party sites or syndicated reviews. |
|
35 | + // @see https://developers.google.com/search/docs/data-types/review |
|
36 | + if ('local' != $review->review_type) { |
|
37 | + continue; |
|
38 | + } |
|
39 | + $reviews[] = $this->buildReview($review); |
|
40 | + } |
|
41 | + if (!empty($reviews)) { |
|
42 | + array_walk($reviews, function (&$review) { |
|
43 | + unset($review['@context']); |
|
44 | + unset($review['itemReviewed']); |
|
45 | + }); |
|
46 | + $schema['review'] = $reviews; |
|
47 | + } |
|
48 | + return $schema; |
|
49 | + } |
|
50 | 50 | |
51 | - /** |
|
52 | - * @param array|null $args |
|
53 | - * @return array |
|
54 | - */ |
|
55 | - public function buildSummary($args = null) |
|
56 | - { |
|
57 | - if (is_array($args)) { |
|
58 | - $this->args = $args; |
|
59 | - } |
|
60 | - $buildSummary = Helper::buildMethodName($this->getSchemaOptionValue('type'), 'buildSummaryFor'); |
|
61 | - $count = array_sum($this->getRatingCounts()); |
|
62 | - $schema = method_exists($this, $buildSummary) |
|
63 | - ? $this->$buildSummary() |
|
64 | - : $this->buildSummaryForCustom(); |
|
65 | - if (!empty($count)) { |
|
66 | - $schema->aggregateRating( |
|
67 | - $this->getSchemaType('AggregateRating') |
|
68 | - ->ratingValue($this->getRatingValue()) |
|
69 | - ->reviewCount($count) |
|
70 | - ->bestRating(glsr()->constant('MAX_RATING', Rating::class)) |
|
71 | - ->worstRating(glsr()->constant('MIN_RATING', Rating::class)) |
|
72 | - ); |
|
73 | - } |
|
74 | - $schema = $schema->toArray(); |
|
75 | - return apply_filters('site-reviews/schema/'.$schema['@type'], $schema, $args); |
|
76 | - } |
|
51 | + /** |
|
52 | + * @param array|null $args |
|
53 | + * @return array |
|
54 | + */ |
|
55 | + public function buildSummary($args = null) |
|
56 | + { |
|
57 | + if (is_array($args)) { |
|
58 | + $this->args = $args; |
|
59 | + } |
|
60 | + $buildSummary = Helper::buildMethodName($this->getSchemaOptionValue('type'), 'buildSummaryFor'); |
|
61 | + $count = array_sum($this->getRatingCounts()); |
|
62 | + $schema = method_exists($this, $buildSummary) |
|
63 | + ? $this->$buildSummary() |
|
64 | + : $this->buildSummaryForCustom(); |
|
65 | + if (!empty($count)) { |
|
66 | + $schema->aggregateRating( |
|
67 | + $this->getSchemaType('AggregateRating') |
|
68 | + ->ratingValue($this->getRatingValue()) |
|
69 | + ->reviewCount($count) |
|
70 | + ->bestRating(glsr()->constant('MAX_RATING', Rating::class)) |
|
71 | + ->worstRating(glsr()->constant('MIN_RATING', Rating::class)) |
|
72 | + ); |
|
73 | + } |
|
74 | + $schema = $schema->toArray(); |
|
75 | + return apply_filters('site-reviews/schema/'.$schema['@type'], $schema, $args); |
|
76 | + } |
|
77 | 77 | |
78 | - /** |
|
79 | - * @return void |
|
80 | - */ |
|
81 | - public function render() |
|
82 | - { |
|
83 | - if (empty(glsr()->schemas)) { |
|
84 | - return; |
|
85 | - } |
|
86 | - printf('<script type="application/ld+json">%s</script>', json_encode( |
|
87 | - apply_filters('site-reviews/schema/all', glsr()->schemas), |
|
88 | - JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
|
89 | - )); |
|
90 | - } |
|
78 | + /** |
|
79 | + * @return void |
|
80 | + */ |
|
81 | + public function render() |
|
82 | + { |
|
83 | + if (empty(glsr()->schemas)) { |
|
84 | + return; |
|
85 | + } |
|
86 | + printf('<script type="application/ld+json">%s</script>', json_encode( |
|
87 | + apply_filters('site-reviews/schema/all', glsr()->schemas), |
|
88 | + JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
|
89 | + )); |
|
90 | + } |
|
91 | 91 | |
92 | - /** |
|
93 | - * @return void |
|
94 | - */ |
|
95 | - public function store(array $schema) |
|
96 | - { |
|
97 | - $schemas = glsr()->schemas; |
|
98 | - $schemas[] = $schema; |
|
99 | - glsr()->schemas = array_map('unserialize', array_unique(array_map('serialize', $schemas))); |
|
100 | - } |
|
92 | + /** |
|
93 | + * @return void |
|
94 | + */ |
|
95 | + public function store(array $schema) |
|
96 | + { |
|
97 | + $schemas = glsr()->schemas; |
|
98 | + $schemas[] = $schema; |
|
99 | + glsr()->schemas = array_map('unserialize', array_unique(array_map('serialize', $schemas))); |
|
100 | + } |
|
101 | 101 | |
102 | - /** |
|
103 | - * @param Review $review |
|
104 | - * @return array |
|
105 | - */ |
|
106 | - protected function buildReview($review) |
|
107 | - { |
|
108 | - $schema = $this->getSchemaType('Review') |
|
109 | - ->doIf(!in_array('title', $this->args['hide']), function ($schema) use ($review) { |
|
110 | - $schema->name($review->title); |
|
111 | - }) |
|
112 | - ->doIf(!in_array('excerpt', $this->args['hide']), function ($schema) use ($review) { |
|
113 | - $schema->reviewBody($review->content); |
|
114 | - }) |
|
115 | - ->datePublished((new DateTime($review->date))) |
|
116 | - ->author($this->getSchemaType('Person')->name($review->author)) |
|
117 | - ->itemReviewed($this->getSchemaType()->name($this->getSchemaOptionValue('name'))); |
|
118 | - if (!empty($review->rating)) { |
|
119 | - $schema->reviewRating( |
|
120 | - $this->getSchemaType('Rating') |
|
121 | - ->ratingValue($review->rating) |
|
122 | - ->bestRating(glsr()->constant('MAX_RATING', Rating::class)) |
|
123 | - ->worstRating(glsr()->constant('MIN_RATING', Rating::class)) |
|
124 | - ); |
|
125 | - } |
|
126 | - return apply_filters('site-reviews/schema/review', $schema->toArray(), $review, $this->args); |
|
127 | - } |
|
102 | + /** |
|
103 | + * @param Review $review |
|
104 | + * @return array |
|
105 | + */ |
|
106 | + protected function buildReview($review) |
|
107 | + { |
|
108 | + $schema = $this->getSchemaType('Review') |
|
109 | + ->doIf(!in_array('title', $this->args['hide']), function ($schema) use ($review) { |
|
110 | + $schema->name($review->title); |
|
111 | + }) |
|
112 | + ->doIf(!in_array('excerpt', $this->args['hide']), function ($schema) use ($review) { |
|
113 | + $schema->reviewBody($review->content); |
|
114 | + }) |
|
115 | + ->datePublished((new DateTime($review->date))) |
|
116 | + ->author($this->getSchemaType('Person')->name($review->author)) |
|
117 | + ->itemReviewed($this->getSchemaType()->name($this->getSchemaOptionValue('name'))); |
|
118 | + if (!empty($review->rating)) { |
|
119 | + $schema->reviewRating( |
|
120 | + $this->getSchemaType('Rating') |
|
121 | + ->ratingValue($review->rating) |
|
122 | + ->bestRating(glsr()->constant('MAX_RATING', Rating::class)) |
|
123 | + ->worstRating(glsr()->constant('MIN_RATING', Rating::class)) |
|
124 | + ); |
|
125 | + } |
|
126 | + return apply_filters('site-reviews/schema/review', $schema->toArray(), $review, $this->args); |
|
127 | + } |
|
128 | 128 | |
129 | - /** |
|
130 | - * @param mixed $schema |
|
131 | - * @return mixed |
|
132 | - */ |
|
133 | - protected function buildSchemaValues($schema, array $values = []) |
|
134 | - { |
|
135 | - foreach ($values as $value) { |
|
136 | - $option = $this->getSchemaOptionValue($value); |
|
137 | - if (empty($option)) { |
|
138 | - continue; |
|
139 | - } |
|
140 | - $schema->$value($option); |
|
141 | - } |
|
142 | - return $schema; |
|
143 | - } |
|
129 | + /** |
|
130 | + * @param mixed $schema |
|
131 | + * @return mixed |
|
132 | + */ |
|
133 | + protected function buildSchemaValues($schema, array $values = []) |
|
134 | + { |
|
135 | + foreach ($values as $value) { |
|
136 | + $option = $this->getSchemaOptionValue($value); |
|
137 | + if (empty($option)) { |
|
138 | + continue; |
|
139 | + } |
|
140 | + $schema->$value($option); |
|
141 | + } |
|
142 | + return $schema; |
|
143 | + } |
|
144 | 144 | |
145 | - /** |
|
146 | - * @return mixed |
|
147 | - */ |
|
148 | - protected function buildSummaryForCustom() |
|
149 | - { |
|
150 | - return $this->buildSchemaValues($this->getSchemaType(), [ |
|
151 | - 'description', 'image', 'name', 'url', |
|
152 | - ]); |
|
153 | - } |
|
145 | + /** |
|
146 | + * @return mixed |
|
147 | + */ |
|
148 | + protected function buildSummaryForCustom() |
|
149 | + { |
|
150 | + return $this->buildSchemaValues($this->getSchemaType(), [ |
|
151 | + 'description', 'image', 'name', 'url', |
|
152 | + ]); |
|
153 | + } |
|
154 | 154 | |
155 | - /** |
|
156 | - * @return mixed |
|
157 | - */ |
|
158 | - protected function buildSummaryForLocalBusiness() |
|
159 | - { |
|
160 | - return $this->buildSchemaValues($this->buildSummaryForCustom(), [ |
|
161 | - 'address', 'priceRange', 'telephone', |
|
162 | - ]); |
|
163 | - } |
|
155 | + /** |
|
156 | + * @return mixed |
|
157 | + */ |
|
158 | + protected function buildSummaryForLocalBusiness() |
|
159 | + { |
|
160 | + return $this->buildSchemaValues($this->buildSummaryForCustom(), [ |
|
161 | + 'address', 'priceRange', 'telephone', |
|
162 | + ]); |
|
163 | + } |
|
164 | 164 | |
165 | - /** |
|
166 | - * @return mixed |
|
167 | - */ |
|
168 | - protected function buildSummaryForProduct() |
|
169 | - { |
|
170 | - $offerType = $this->getSchemaOption('offerType', 'AggregateOffer'); |
|
171 | - $offers = $this->buildSchemaValues($this->getSchemaType($offerType), [ |
|
172 | - 'highPrice', 'lowPrice', 'price', 'priceCurrency', |
|
173 | - ]); |
|
174 | - return $this->buildSummaryForCustom() |
|
175 | - ->doIf(!empty($offers->getProperties()), function ($schema) use ($offers) { |
|
176 | - $schema->offers($offers); |
|
177 | - }) |
|
178 | - ->setProperty('@id', $this->getSchemaOptionValue('url').'#product'); |
|
179 | - } |
|
165 | + /** |
|
166 | + * @return mixed |
|
167 | + */ |
|
168 | + protected function buildSummaryForProduct() |
|
169 | + { |
|
170 | + $offerType = $this->getSchemaOption('offerType', 'AggregateOffer'); |
|
171 | + $offers = $this->buildSchemaValues($this->getSchemaType($offerType), [ |
|
172 | + 'highPrice', 'lowPrice', 'price', 'priceCurrency', |
|
173 | + ]); |
|
174 | + return $this->buildSummaryForCustom() |
|
175 | + ->doIf(!empty($offers->getProperties()), function ($schema) use ($offers) { |
|
176 | + $schema->offers($offers); |
|
177 | + }) |
|
178 | + ->setProperty('@id', $this->getSchemaOptionValue('url').'#product'); |
|
179 | + } |
|
180 | 180 | |
181 | - /** |
|
182 | - * @return array |
|
183 | - */ |
|
184 | - protected function getRatingCounts() |
|
185 | - { |
|
186 | - if (!isset($this->ratingCounts)) { |
|
187 | - $this->ratingCounts = glsr(ReviewManager::class)->getRatingCounts($this->args); |
|
188 | - } |
|
189 | - return $this->ratingCounts; |
|
190 | - } |
|
181 | + /** |
|
182 | + * @return array |
|
183 | + */ |
|
184 | + protected function getRatingCounts() |
|
185 | + { |
|
186 | + if (!isset($this->ratingCounts)) { |
|
187 | + $this->ratingCounts = glsr(ReviewManager::class)->getRatingCounts($this->args); |
|
188 | + } |
|
189 | + return $this->ratingCounts; |
|
190 | + } |
|
191 | 191 | |
192 | - /** |
|
193 | - * @return int|float |
|
194 | - */ |
|
195 | - protected function getRatingValue() |
|
196 | - { |
|
197 | - return glsr(Rating::class)->getAverage($this->getRatingCounts()); |
|
198 | - } |
|
192 | + /** |
|
193 | + * @return int|float |
|
194 | + */ |
|
195 | + protected function getRatingValue() |
|
196 | + { |
|
197 | + return glsr(Rating::class)->getAverage($this->getRatingCounts()); |
|
198 | + } |
|
199 | 199 | |
200 | - /** |
|
201 | - * @param string $option |
|
202 | - * @param string $fallback |
|
203 | - * @return string |
|
204 | - */ |
|
205 | - protected function getSchemaOption($option, $fallback) |
|
206 | - { |
|
207 | - $option = strtolower($option); |
|
208 | - if ($schemaOption = trim((string) get_post_meta(intval(get_the_ID()), 'schema_'.$option, true))) { |
|
209 | - return $schemaOption; |
|
210 | - } |
|
211 | - $setting = glsr(OptionManager::class)->get('settings.schema.'.$option); |
|
212 | - if (is_array($setting)) { |
|
213 | - return $this->getSchemaOptionDefault($setting, $fallback); |
|
214 | - } |
|
215 | - return !empty($setting) |
|
216 | - ? $setting |
|
217 | - : $fallback; |
|
218 | - } |
|
200 | + /** |
|
201 | + * @param string $option |
|
202 | + * @param string $fallback |
|
203 | + * @return string |
|
204 | + */ |
|
205 | + protected function getSchemaOption($option, $fallback) |
|
206 | + { |
|
207 | + $option = strtolower($option); |
|
208 | + if ($schemaOption = trim((string) get_post_meta(intval(get_the_ID()), 'schema_'.$option, true))) { |
|
209 | + return $schemaOption; |
|
210 | + } |
|
211 | + $setting = glsr(OptionManager::class)->get('settings.schema.'.$option); |
|
212 | + if (is_array($setting)) { |
|
213 | + return $this->getSchemaOptionDefault($setting, $fallback); |
|
214 | + } |
|
215 | + return !empty($setting) |
|
216 | + ? $setting |
|
217 | + : $fallback; |
|
218 | + } |
|
219 | 219 | |
220 | - /** |
|
221 | - * @param string $fallback |
|
222 | - * @return string |
|
223 | - */ |
|
224 | - protected function getSchemaOptionDefault(array $setting, $fallback) |
|
225 | - { |
|
226 | - $setting = wp_parse_args($setting, [ |
|
227 | - 'custom' => '', |
|
228 | - 'default' => $fallback, |
|
229 | - ]); |
|
230 | - return 'custom' != $setting['default'] |
|
231 | - ? $setting['default'] |
|
232 | - : $setting['custom']; |
|
233 | - } |
|
220 | + /** |
|
221 | + * @param string $fallback |
|
222 | + * @return string |
|
223 | + */ |
|
224 | + protected function getSchemaOptionDefault(array $setting, $fallback) |
|
225 | + { |
|
226 | + $setting = wp_parse_args($setting, [ |
|
227 | + 'custom' => '', |
|
228 | + 'default' => $fallback, |
|
229 | + ]); |
|
230 | + return 'custom' != $setting['default'] |
|
231 | + ? $setting['default'] |
|
232 | + : $setting['custom']; |
|
233 | + } |
|
234 | 234 | |
235 | - /** |
|
236 | - * @param string $option |
|
237 | - * @param string $fallback |
|
238 | - * @return void|string |
|
239 | - */ |
|
240 | - protected function getSchemaOptionValue($option, $fallback = 'post') |
|
241 | - { |
|
242 | - $value = $this->getSchemaOption($option, $fallback); |
|
243 | - if ($value != $fallback) { |
|
244 | - return $value; |
|
245 | - } |
|
246 | - if (!is_single() && !is_page()) { |
|
247 | - return; |
|
248 | - } |
|
249 | - $method = Helper::buildMethodName($option, 'getThing'); |
|
250 | - if (method_exists($this, $method)) { |
|
251 | - return $this->$method(); |
|
252 | - } |
|
253 | - } |
|
235 | + /** |
|
236 | + * @param string $option |
|
237 | + * @param string $fallback |
|
238 | + * @return void|string |
|
239 | + */ |
|
240 | + protected function getSchemaOptionValue($option, $fallback = 'post') |
|
241 | + { |
|
242 | + $value = $this->getSchemaOption($option, $fallback); |
|
243 | + if ($value != $fallback) { |
|
244 | + return $value; |
|
245 | + } |
|
246 | + if (!is_single() && !is_page()) { |
|
247 | + return; |
|
248 | + } |
|
249 | + $method = Helper::buildMethodName($option, 'getThing'); |
|
250 | + if (method_exists($this, $method)) { |
|
251 | + return $this->$method(); |
|
252 | + } |
|
253 | + } |
|
254 | 254 | |
255 | - /** |
|
256 | - * @param string|null $type |
|
257 | - * @return mixed |
|
258 | - */ |
|
259 | - protected function getSchemaType($type = null) |
|
260 | - { |
|
261 | - if (!is_string($type)) { |
|
262 | - $type = $this->getSchemaOption('type', 'LocalBusiness'); |
|
263 | - } |
|
264 | - $className = Helper::buildClassName($type, 'Modules\Schema'); |
|
265 | - return class_exists($className) |
|
266 | - ? new $className() |
|
267 | - : new UnknownType($type); |
|
268 | - } |
|
255 | + /** |
|
256 | + * @param string|null $type |
|
257 | + * @return mixed |
|
258 | + */ |
|
259 | + protected function getSchemaType($type = null) |
|
260 | + { |
|
261 | + if (!is_string($type)) { |
|
262 | + $type = $this->getSchemaOption('type', 'LocalBusiness'); |
|
263 | + } |
|
264 | + $className = Helper::buildClassName($type, 'Modules\Schema'); |
|
265 | + return class_exists($className) |
|
266 | + ? new $className() |
|
267 | + : new UnknownType($type); |
|
268 | + } |
|
269 | 269 | |
270 | - /** |
|
271 | - * @return string |
|
272 | - */ |
|
273 | - protected function getThingDescription() |
|
274 | - { |
|
275 | - $description = strip_shortcodes(wp_strip_all_tags(get_the_excerpt())); |
|
276 | - return wp_trim_words($description, apply_filters('excerpt_length', 55)); |
|
277 | - } |
|
270 | + /** |
|
271 | + * @return string |
|
272 | + */ |
|
273 | + protected function getThingDescription() |
|
274 | + { |
|
275 | + $description = strip_shortcodes(wp_strip_all_tags(get_the_excerpt())); |
|
276 | + return wp_trim_words($description, apply_filters('excerpt_length', 55)); |
|
277 | + } |
|
278 | 278 | |
279 | - /** |
|
280 | - * @return string |
|
281 | - */ |
|
282 | - protected function getThingImage() |
|
283 | - { |
|
284 | - return (string) get_the_post_thumbnail_url(null, 'large'); |
|
285 | - } |
|
279 | + /** |
|
280 | + * @return string |
|
281 | + */ |
|
282 | + protected function getThingImage() |
|
283 | + { |
|
284 | + return (string) get_the_post_thumbnail_url(null, 'large'); |
|
285 | + } |
|
286 | 286 | |
287 | - /** |
|
288 | - * @return string |
|
289 | - */ |
|
290 | - protected function getThingName() |
|
291 | - { |
|
292 | - return get_the_title(); |
|
293 | - } |
|
287 | + /** |
|
288 | + * @return string |
|
289 | + */ |
|
290 | + protected function getThingName() |
|
291 | + { |
|
292 | + return get_the_title(); |
|
293 | + } |
|
294 | 294 | |
295 | - /** |
|
296 | - * @return string |
|
297 | - */ |
|
298 | - protected function getThingUrl() |
|
299 | - { |
|
300 | - return (string) get_the_permalink(); |
|
301 | - } |
|
295 | + /** |
|
296 | + * @return string |
|
297 | + */ |
|
298 | + protected function getThingUrl() |
|
299 | + { |
|
300 | + return (string) get_the_permalink(); |
|
301 | + } |
|
302 | 302 | } |
@@ -25,21 +25,21 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * @return array |
27 | 27 | */ |
28 | - public function build(array $args = []) |
|
28 | + public function build( array $args = [] ) |
|
29 | 29 | { |
30 | 30 | $this->args = $args; |
31 | - $schema = $this->buildSummary($args); |
|
31 | + $schema = $this->buildSummary( $args ); |
|
32 | 32 | $reviews = []; |
33 | - foreach (glsr(ReviewManager::class)->get($this->args) as $review) { |
|
33 | + foreach( glsr( ReviewManager::class )->get( $this->args ) as $review ) { |
|
34 | 34 | // Only include critic reviews that have been directly produced by your site, not reviews from third-party sites or syndicated reviews. |
35 | 35 | // @see https://developers.google.com/search/docs/data-types/review |
36 | - if ('local' != $review->review_type) { |
|
36 | + if( 'local' != $review->review_type ) { |
|
37 | 37 | continue; |
38 | 38 | } |
39 | - $reviews[] = $this->buildReview($review); |
|
39 | + $reviews[] = $this->buildReview( $review ); |
|
40 | 40 | } |
41 | - if (!empty($reviews)) { |
|
42 | - array_walk($reviews, function (&$review) { |
|
41 | + if( !empty($reviews) ) { |
|
42 | + array_walk( $reviews, function( &$review ) { |
|
43 | 43 | unset($review['@context']); |
44 | 44 | unset($review['itemReviewed']); |
45 | 45 | }); |
@@ -52,27 +52,27 @@ discard block |
||
52 | 52 | * @param array|null $args |
53 | 53 | * @return array |
54 | 54 | */ |
55 | - public function buildSummary($args = null) |
|
55 | + public function buildSummary( $args = null ) |
|
56 | 56 | { |
57 | - if (is_array($args)) { |
|
57 | + if( is_array( $args ) ) { |
|
58 | 58 | $this->args = $args; |
59 | 59 | } |
60 | - $buildSummary = Helper::buildMethodName($this->getSchemaOptionValue('type'), 'buildSummaryFor'); |
|
61 | - $count = array_sum($this->getRatingCounts()); |
|
62 | - $schema = method_exists($this, $buildSummary) |
|
60 | + $buildSummary = Helper::buildMethodName( $this->getSchemaOptionValue( 'type' ), 'buildSummaryFor' ); |
|
61 | + $count = array_sum( $this->getRatingCounts() ); |
|
62 | + $schema = method_exists( $this, $buildSummary ) |
|
63 | 63 | ? $this->$buildSummary() |
64 | 64 | : $this->buildSummaryForCustom(); |
65 | - if (!empty($count)) { |
|
65 | + if( !empty($count) ) { |
|
66 | 66 | $schema->aggregateRating( |
67 | - $this->getSchemaType('AggregateRating') |
|
68 | - ->ratingValue($this->getRatingValue()) |
|
69 | - ->reviewCount($count) |
|
70 | - ->bestRating(glsr()->constant('MAX_RATING', Rating::class)) |
|
71 | - ->worstRating(glsr()->constant('MIN_RATING', Rating::class)) |
|
67 | + $this->getSchemaType( 'AggregateRating' ) |
|
68 | + ->ratingValue( $this->getRatingValue() ) |
|
69 | + ->reviewCount( $count ) |
|
70 | + ->bestRating( glsr()->constant( 'MAX_RATING', Rating::class ) ) |
|
71 | + ->worstRating( glsr()->constant( 'MIN_RATING', Rating::class ) ) |
|
72 | 72 | ); |
73 | 73 | } |
74 | 74 | $schema = $schema->toArray(); |
75 | - return apply_filters('site-reviews/schema/'.$schema['@type'], $schema, $args); |
|
75 | + return apply_filters( 'site-reviews/schema/'.$schema['@type'], $schema, $args ); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -80,64 +80,64 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function render() |
82 | 82 | { |
83 | - if (empty(glsr()->schemas)) { |
|
83 | + if( empty(glsr()->schemas) ) { |
|
84 | 84 | return; |
85 | 85 | } |
86 | - printf('<script type="application/ld+json">%s</script>', json_encode( |
|
87 | - apply_filters('site-reviews/schema/all', glsr()->schemas), |
|
86 | + printf( '<script type="application/ld+json">%s</script>', json_encode( |
|
87 | + apply_filters( 'site-reviews/schema/all', glsr()->schemas ), |
|
88 | 88 | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
89 | - )); |
|
89 | + ) ); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
93 | 93 | * @return void |
94 | 94 | */ |
95 | - public function store(array $schema) |
|
95 | + public function store( array $schema ) |
|
96 | 96 | { |
97 | 97 | $schemas = glsr()->schemas; |
98 | 98 | $schemas[] = $schema; |
99 | - glsr()->schemas = array_map('unserialize', array_unique(array_map('serialize', $schemas))); |
|
99 | + glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas ) ) ); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
103 | 103 | * @param Review $review |
104 | 104 | * @return array |
105 | 105 | */ |
106 | - protected function buildReview($review) |
|
106 | + protected function buildReview( $review ) |
|
107 | 107 | { |
108 | - $schema = $this->getSchemaType('Review') |
|
109 | - ->doIf(!in_array('title', $this->args['hide']), function ($schema) use ($review) { |
|
110 | - $schema->name($review->title); |
|
108 | + $schema = $this->getSchemaType( 'Review' ) |
|
109 | + ->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use ($review) { |
|
110 | + $schema->name( $review->title ); |
|
111 | 111 | }) |
112 | - ->doIf(!in_array('excerpt', $this->args['hide']), function ($schema) use ($review) { |
|
113 | - $schema->reviewBody($review->content); |
|
112 | + ->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use ($review) { |
|
113 | + $schema->reviewBody( $review->content ); |
|
114 | 114 | }) |
115 | - ->datePublished((new DateTime($review->date))) |
|
116 | - ->author($this->getSchemaType('Person')->name($review->author)) |
|
117 | - ->itemReviewed($this->getSchemaType()->name($this->getSchemaOptionValue('name'))); |
|
118 | - if (!empty($review->rating)) { |
|
115 | + ->datePublished( (new DateTime( $review->date )) ) |
|
116 | + ->author( $this->getSchemaType( 'Person' )->name( $review->author ) ) |
|
117 | + ->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' ) ) ); |
|
118 | + if( !empty($review->rating) ) { |
|
119 | 119 | $schema->reviewRating( |
120 | - $this->getSchemaType('Rating') |
|
121 | - ->ratingValue($review->rating) |
|
122 | - ->bestRating(glsr()->constant('MAX_RATING', Rating::class)) |
|
123 | - ->worstRating(glsr()->constant('MIN_RATING', Rating::class)) |
|
120 | + $this->getSchemaType( 'Rating' ) |
|
121 | + ->ratingValue( $review->rating ) |
|
122 | + ->bestRating( glsr()->constant( 'MAX_RATING', Rating::class ) ) |
|
123 | + ->worstRating( glsr()->constant( 'MIN_RATING', Rating::class ) ) |
|
124 | 124 | ); |
125 | 125 | } |
126 | - return apply_filters('site-reviews/schema/review', $schema->toArray(), $review, $this->args); |
|
126 | + return apply_filters( 'site-reviews/schema/review', $schema->toArray(), $review, $this->args ); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
130 | 130 | * @param mixed $schema |
131 | 131 | * @return mixed |
132 | 132 | */ |
133 | - protected function buildSchemaValues($schema, array $values = []) |
|
133 | + protected function buildSchemaValues( $schema, array $values = [] ) |
|
134 | 134 | { |
135 | - foreach ($values as $value) { |
|
136 | - $option = $this->getSchemaOptionValue($value); |
|
137 | - if (empty($option)) { |
|
135 | + foreach( $values as $value ) { |
|
136 | + $option = $this->getSchemaOptionValue( $value ); |
|
137 | + if( empty($option) ) { |
|
138 | 138 | continue; |
139 | 139 | } |
140 | - $schema->$value($option); |
|
140 | + $schema->$value( $option ); |
|
141 | 141 | } |
142 | 142 | return $schema; |
143 | 143 | } |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | */ |
148 | 148 | protected function buildSummaryForCustom() |
149 | 149 | { |
150 | - return $this->buildSchemaValues($this->getSchemaType(), [ |
|
150 | + return $this->buildSchemaValues( $this->getSchemaType(), [ |
|
151 | 151 | 'description', 'image', 'name', 'url', |
152 | - ]); |
|
152 | + ] ); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -157,9 +157,9 @@ discard block |
||
157 | 157 | */ |
158 | 158 | protected function buildSummaryForLocalBusiness() |
159 | 159 | { |
160 | - return $this->buildSchemaValues($this->buildSummaryForCustom(), [ |
|
160 | + return $this->buildSchemaValues( $this->buildSummaryForCustom(), [ |
|
161 | 161 | 'address', 'priceRange', 'telephone', |
162 | - ]); |
|
162 | + ] ); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -167,15 +167,15 @@ discard block |
||
167 | 167 | */ |
168 | 168 | protected function buildSummaryForProduct() |
169 | 169 | { |
170 | - $offerType = $this->getSchemaOption('offerType', 'AggregateOffer'); |
|
171 | - $offers = $this->buildSchemaValues($this->getSchemaType($offerType), [ |
|
170 | + $offerType = $this->getSchemaOption( 'offerType', 'AggregateOffer' ); |
|
171 | + $offers = $this->buildSchemaValues( $this->getSchemaType( $offerType ), [ |
|
172 | 172 | 'highPrice', 'lowPrice', 'price', 'priceCurrency', |
173 | - ]); |
|
173 | + ] ); |
|
174 | 174 | return $this->buildSummaryForCustom() |
175 | - ->doIf(!empty($offers->getProperties()), function ($schema) use ($offers) { |
|
176 | - $schema->offers($offers); |
|
175 | + ->doIf( !empty($offers->getProperties()), function( $schema ) use ($offers) { |
|
176 | + $schema->offers( $offers ); |
|
177 | 177 | }) |
178 | - ->setProperty('@id', $this->getSchemaOptionValue('url').'#product'); |
|
178 | + ->setProperty( '@id', $this->getSchemaOptionValue( 'url' ).'#product' ); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
@@ -183,8 +183,8 @@ discard block |
||
183 | 183 | */ |
184 | 184 | protected function getRatingCounts() |
185 | 185 | { |
186 | - if (!isset($this->ratingCounts)) { |
|
187 | - $this->ratingCounts = glsr(ReviewManager::class)->getRatingCounts($this->args); |
|
186 | + if( !isset($this->ratingCounts) ) { |
|
187 | + $this->ratingCounts = glsr( ReviewManager::class )->getRatingCounts( $this->args ); |
|
188 | 188 | } |
189 | 189 | return $this->ratingCounts; |
190 | 190 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | */ |
195 | 195 | protected function getRatingValue() |
196 | 196 | { |
197 | - return glsr(Rating::class)->getAverage($this->getRatingCounts()); |
|
197 | + return glsr( Rating::class )->getAverage( $this->getRatingCounts() ); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
@@ -202,15 +202,15 @@ discard block |
||
202 | 202 | * @param string $fallback |
203 | 203 | * @return string |
204 | 204 | */ |
205 | - protected function getSchemaOption($option, $fallback) |
|
205 | + protected function getSchemaOption( $option, $fallback ) |
|
206 | 206 | { |
207 | - $option = strtolower($option); |
|
208 | - if ($schemaOption = trim((string) get_post_meta(intval(get_the_ID()), 'schema_'.$option, true))) { |
|
207 | + $option = strtolower( $option ); |
|
208 | + if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ) ) ) { |
|
209 | 209 | return $schemaOption; |
210 | 210 | } |
211 | - $setting = glsr(OptionManager::class)->get('settings.schema.'.$option); |
|
212 | - if (is_array($setting)) { |
|
213 | - return $this->getSchemaOptionDefault($setting, $fallback); |
|
211 | + $setting = glsr( OptionManager::class )->get( 'settings.schema.'.$option ); |
|
212 | + if( is_array( $setting ) ) { |
|
213 | + return $this->getSchemaOptionDefault( $setting, $fallback ); |
|
214 | 214 | } |
215 | 215 | return !empty($setting) |
216 | 216 | ? $setting |
@@ -221,12 +221,12 @@ discard block |
||
221 | 221 | * @param string $fallback |
222 | 222 | * @return string |
223 | 223 | */ |
224 | - protected function getSchemaOptionDefault(array $setting, $fallback) |
|
224 | + protected function getSchemaOptionDefault( array $setting, $fallback ) |
|
225 | 225 | { |
226 | - $setting = wp_parse_args($setting, [ |
|
226 | + $setting = wp_parse_args( $setting, [ |
|
227 | 227 | 'custom' => '', |
228 | 228 | 'default' => $fallback, |
229 | - ]); |
|
229 | + ] ); |
|
230 | 230 | return 'custom' != $setting['default'] |
231 | 231 | ? $setting['default'] |
232 | 232 | : $setting['custom']; |
@@ -237,17 +237,17 @@ discard block |
||
237 | 237 | * @param string $fallback |
238 | 238 | * @return void|string |
239 | 239 | */ |
240 | - protected function getSchemaOptionValue($option, $fallback = 'post') |
|
240 | + protected function getSchemaOptionValue( $option, $fallback = 'post' ) |
|
241 | 241 | { |
242 | - $value = $this->getSchemaOption($option, $fallback); |
|
243 | - if ($value != $fallback) { |
|
242 | + $value = $this->getSchemaOption( $option, $fallback ); |
|
243 | + if( $value != $fallback ) { |
|
244 | 244 | return $value; |
245 | 245 | } |
246 | - if (!is_single() && !is_page()) { |
|
246 | + if( !is_single() && !is_page() ) { |
|
247 | 247 | return; |
248 | 248 | } |
249 | - $method = Helper::buildMethodName($option, 'getThing'); |
|
250 | - if (method_exists($this, $method)) { |
|
249 | + $method = Helper::buildMethodName( $option, 'getThing' ); |
|
250 | + if( method_exists( $this, $method ) ) { |
|
251 | 251 | return $this->$method(); |
252 | 252 | } |
253 | 253 | } |
@@ -256,15 +256,15 @@ discard block |
||
256 | 256 | * @param string|null $type |
257 | 257 | * @return mixed |
258 | 258 | */ |
259 | - protected function getSchemaType($type = null) |
|
259 | + protected function getSchemaType( $type = null ) |
|
260 | 260 | { |
261 | - if (!is_string($type)) { |
|
262 | - $type = $this->getSchemaOption('type', 'LocalBusiness'); |
|
261 | + if( !is_string( $type ) ) { |
|
262 | + $type = $this->getSchemaOption( 'type', 'LocalBusiness' ); |
|
263 | 263 | } |
264 | - $className = Helper::buildClassName($type, 'Modules\Schema'); |
|
265 | - return class_exists($className) |
|
264 | + $className = Helper::buildClassName( $type, 'Modules\Schema' ); |
|
265 | + return class_exists( $className ) |
|
266 | 266 | ? new $className() |
267 | - : new UnknownType($type); |
|
267 | + : new UnknownType( $type ); |
|
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
@@ -272,8 +272,8 @@ discard block |
||
272 | 272 | */ |
273 | 273 | protected function getThingDescription() |
274 | 274 | { |
275 | - $description = strip_shortcodes(wp_strip_all_tags(get_the_excerpt())); |
|
276 | - return wp_trim_words($description, apply_filters('excerpt_length', 55)); |
|
275 | + $description = strip_shortcodes( wp_strip_all_tags( get_the_excerpt() ) ); |
|
276 | + return wp_trim_words( $description, apply_filters( 'excerpt_length', 55 ) ); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | /** |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | */ |
282 | 282 | protected function getThingImage() |
283 | 283 | { |
284 | - return (string) get_the_post_thumbnail_url(null, 'large'); |
|
284 | + return (string)get_the_post_thumbnail_url( null, 'large' ); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | /** |
@@ -297,6 +297,6 @@ discard block |
||
297 | 297 | */ |
298 | 298 | protected function getThingUrl() |
299 | 299 | { |
300 | - return (string) get_the_permalink(); |
|
300 | + return (string)get_the_permalink(); |
|
301 | 301 | } |
302 | 302 | } |
@@ -7,33 +7,33 @@ |
||
7 | 7 | |
8 | 8 | class Metaboxes |
9 | 9 | { |
10 | - /** |
|
11 | - * @param int $postId |
|
12 | - * @return void |
|
13 | - */ |
|
14 | - public function saveAssignedToMetabox($postId) |
|
15 | - { |
|
16 | - if (!wp_verify_nonce(Helper::filterInput('_nonce-assigned-to'), 'assigned_to')) { |
|
17 | - return; |
|
18 | - } |
|
19 | - $assignedTo = strval(Helper::filterInput('assigned_to')); |
|
20 | - glsr(Database::class)->update($postId, 'assigned_to', $assignedTo); |
|
21 | - } |
|
10 | + /** |
|
11 | + * @param int $postId |
|
12 | + * @return void |
|
13 | + */ |
|
14 | + public function saveAssignedToMetabox($postId) |
|
15 | + { |
|
16 | + if (!wp_verify_nonce(Helper::filterInput('_nonce-assigned-to'), 'assigned_to')) { |
|
17 | + return; |
|
18 | + } |
|
19 | + $assignedTo = strval(Helper::filterInput('assigned_to')); |
|
20 | + glsr(Database::class)->update($postId, 'assigned_to', $assignedTo); |
|
21 | + } |
|
22 | 22 | |
23 | - /** |
|
24 | - * @param int $postId |
|
25 | - * @return mixed |
|
26 | - */ |
|
27 | - public function saveResponseMetabox($postId) |
|
28 | - { |
|
29 | - if (!wp_verify_nonce(Helper::filterInput('_nonce-response'), 'response')) { |
|
30 | - return; |
|
31 | - } |
|
32 | - $response = strval(Helper::filterInput('response')); |
|
33 | - glsr(Database::class)->update($postId, 'response', trim(wp_kses($response, [ |
|
34 | - 'a' => ['href' => [], 'title' => []], |
|
35 | - 'em' => [], |
|
36 | - 'strong' => [], |
|
37 | - ]))); |
|
38 | - } |
|
23 | + /** |
|
24 | + * @param int $postId |
|
25 | + * @return mixed |
|
26 | + */ |
|
27 | + public function saveResponseMetabox($postId) |
|
28 | + { |
|
29 | + if (!wp_verify_nonce(Helper::filterInput('_nonce-response'), 'response')) { |
|
30 | + return; |
|
31 | + } |
|
32 | + $response = strval(Helper::filterInput('response')); |
|
33 | + glsr(Database::class)->update($postId, 'response', trim(wp_kses($response, [ |
|
34 | + 'a' => ['href' => [], 'title' => []], |
|
35 | + 'em' => [], |
|
36 | + 'strong' => [], |
|
37 | + ]))); |
|
38 | + } |
|
39 | 39 | } |
@@ -11,29 +11,29 @@ |
||
11 | 11 | * @param int $postId |
12 | 12 | * @return void |
13 | 13 | */ |
14 | - public function saveAssignedToMetabox($postId) |
|
14 | + public function saveAssignedToMetabox( $postId ) |
|
15 | 15 | { |
16 | - if (!wp_verify_nonce(Helper::filterInput('_nonce-assigned-to'), 'assigned_to')) { |
|
16 | + if( !wp_verify_nonce( Helper::filterInput( '_nonce-assigned-to' ), 'assigned_to' ) ) { |
|
17 | 17 | return; |
18 | 18 | } |
19 | - $assignedTo = strval(Helper::filterInput('assigned_to')); |
|
20 | - glsr(Database::class)->update($postId, 'assigned_to', $assignedTo); |
|
19 | + $assignedTo = strval( Helper::filterInput( 'assigned_to' ) ); |
|
20 | + glsr( Database::class )->update( $postId, 'assigned_to', $assignedTo ); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
24 | 24 | * @param int $postId |
25 | 25 | * @return mixed |
26 | 26 | */ |
27 | - public function saveResponseMetabox($postId) |
|
27 | + public function saveResponseMetabox( $postId ) |
|
28 | 28 | { |
29 | - if (!wp_verify_nonce(Helper::filterInput('_nonce-response'), 'response')) { |
|
29 | + if( !wp_verify_nonce( Helper::filterInput( '_nonce-response' ), 'response' ) ) { |
|
30 | 30 | return; |
31 | 31 | } |
32 | - $response = strval(Helper::filterInput('response')); |
|
33 | - glsr(Database::class)->update($postId, 'response', trim(wp_kses($response, [ |
|
32 | + $response = strval( Helper::filterInput( 'response' ) ); |
|
33 | + glsr( Database::class )->update( $postId, 'response', trim( wp_kses( $response, [ |
|
34 | 34 | 'a' => ['href' => [], 'title' => []], |
35 | 35 | 'em' => [], |
36 | 36 | 'strong' => [], |
37 | - ]))); |
|
37 | + ] ) ) ); |
|
38 | 38 | } |
39 | 39 | } |
@@ -14,189 +14,189 @@ |
||
14 | 14 | |
15 | 15 | class MenuController extends Controller |
16 | 16 | { |
17 | - /** |
|
18 | - * @return void |
|
19 | - * @action admin_menu |
|
20 | - */ |
|
21 | - public function registerMenuCount() |
|
22 | - { |
|
23 | - global $menu, $typenow; |
|
24 | - foreach ($menu as $key => $value) { |
|
25 | - if (!isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE) { |
|
26 | - continue; |
|
27 | - } |
|
28 | - $postCount = wp_count_posts(Application::POST_TYPE); |
|
29 | - $pendingCount = glsr(Builder::class)->span(number_format_i18n($postCount->pending), [ |
|
30 | - 'class' => 'unapproved-count', |
|
31 | - ]); |
|
32 | - $awaitingModeration = glsr(Builder::class)->span($pendingCount, [ |
|
33 | - 'class' => 'awaiting-mod count-'.$postCount->pending, |
|
34 | - ]); |
|
35 | - $menu[$key][0].= ' '.$awaitingModeration; |
|
36 | - if (Application::POST_TYPE === $typenow) { |
|
37 | - $menu[$key][4].= ' current'; |
|
38 | - } |
|
39 | - break; |
|
40 | - } |
|
41 | - } |
|
17 | + /** |
|
18 | + * @return void |
|
19 | + * @action admin_menu |
|
20 | + */ |
|
21 | + public function registerMenuCount() |
|
22 | + { |
|
23 | + global $menu, $typenow; |
|
24 | + foreach ($menu as $key => $value) { |
|
25 | + if (!isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE) { |
|
26 | + continue; |
|
27 | + } |
|
28 | + $postCount = wp_count_posts(Application::POST_TYPE); |
|
29 | + $pendingCount = glsr(Builder::class)->span(number_format_i18n($postCount->pending), [ |
|
30 | + 'class' => 'unapproved-count', |
|
31 | + ]); |
|
32 | + $awaitingModeration = glsr(Builder::class)->span($pendingCount, [ |
|
33 | + 'class' => 'awaiting-mod count-'.$postCount->pending, |
|
34 | + ]); |
|
35 | + $menu[$key][0].= ' '.$awaitingModeration; |
|
36 | + if (Application::POST_TYPE === $typenow) { |
|
37 | + $menu[$key][4].= ' current'; |
|
38 | + } |
|
39 | + break; |
|
40 | + } |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * @return void |
|
45 | - * @action admin_menu |
|
46 | - */ |
|
47 | - public function registerSubMenus() |
|
48 | - { |
|
49 | - $pages = $this->parseWithFilter('submenu/pages', [ |
|
50 | - 'settings' => __('Settings', 'site-reviews'), |
|
51 | - 'tools' => __('Tools', 'site-reviews'), |
|
52 | - 'addons' => __('Add-ons', 'site-reviews'), |
|
53 | - 'documentation' => __('Documentation', 'site-reviews'), |
|
54 | - ]); |
|
55 | - foreach ($pages as $slug => $title) { |
|
56 | - $method = Helper::buildMethodName('render-'.$slug.'-menu'); |
|
57 | - $callback = apply_filters('site-reviews/addon/submenu/callback', [$this, $method], $slug); |
|
58 | - if (!is_callable($callback)) { |
|
59 | - continue; |
|
60 | - } |
|
61 | - add_submenu_page('edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->getPermission($slug), $slug, $callback); |
|
62 | - } |
|
63 | - } |
|
43 | + /** |
|
44 | + * @return void |
|
45 | + * @action admin_menu |
|
46 | + */ |
|
47 | + public function registerSubMenus() |
|
48 | + { |
|
49 | + $pages = $this->parseWithFilter('submenu/pages', [ |
|
50 | + 'settings' => __('Settings', 'site-reviews'), |
|
51 | + 'tools' => __('Tools', 'site-reviews'), |
|
52 | + 'addons' => __('Add-ons', 'site-reviews'), |
|
53 | + 'documentation' => __('Documentation', 'site-reviews'), |
|
54 | + ]); |
|
55 | + foreach ($pages as $slug => $title) { |
|
56 | + $method = Helper::buildMethodName('render-'.$slug.'-menu'); |
|
57 | + $callback = apply_filters('site-reviews/addon/submenu/callback', [$this, $method], $slug); |
|
58 | + if (!is_callable($callback)) { |
|
59 | + continue; |
|
60 | + } |
|
61 | + add_submenu_page('edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->getPermission($slug), $slug, $callback); |
|
62 | + } |
|
63 | + } |
|
64 | 64 | |
65 | - /** |
|
66 | - * @return void |
|
67 | - * @see $this->registerSubMenus() |
|
68 | - * @callback add_submenu_page |
|
69 | - */ |
|
70 | - public function renderAddonsMenu() |
|
71 | - { |
|
72 | - $this->renderPage('addons', [ |
|
73 | - 'template' => glsr(Template::class), |
|
74 | - ]); |
|
75 | - } |
|
65 | + /** |
|
66 | + * @return void |
|
67 | + * @see $this->registerSubMenus() |
|
68 | + * @callback add_submenu_page |
|
69 | + */ |
|
70 | + public function renderAddonsMenu() |
|
71 | + { |
|
72 | + $this->renderPage('addons', [ |
|
73 | + 'template' => glsr(Template::class), |
|
74 | + ]); |
|
75 | + } |
|
76 | 76 | |
77 | - /** |
|
78 | - * @return void |
|
79 | - * @see $this->registerSubMenus() |
|
80 | - * @callback add_submenu_page |
|
81 | - */ |
|
82 | - public function renderDocumentationMenu() |
|
83 | - { |
|
84 | - $tabs = $this->parseWithFilter('documentation/tabs', [ |
|
85 | - 'support' => __('Support', 'site-reviews'), |
|
86 | - 'faq' => __('FAQ', 'site-reviews'), |
|
87 | - 'shortcodes' => __('Shortcodes', 'site-reviews'), |
|
88 | - 'hooks' => __('Hooks', 'site-reviews'), |
|
89 | - 'functions' => __('Functions', 'site-reviews'), |
|
90 | - 'addons' => __('Addons', 'site-reviews'), |
|
91 | - ]); |
|
92 | - $addons = apply_filters('site-reviews/addon/documentation', []); |
|
93 | - ksort($addons); |
|
94 | - if (empty($addons)) { |
|
95 | - unset($tabs['addons']); |
|
96 | - } |
|
97 | - $this->renderPage('documentation', [ |
|
98 | - 'addons' => $addons, |
|
99 | - 'tabs' => $tabs, |
|
100 | - ]); |
|
101 | - } |
|
77 | + /** |
|
78 | + * @return void |
|
79 | + * @see $this->registerSubMenus() |
|
80 | + * @callback add_submenu_page |
|
81 | + */ |
|
82 | + public function renderDocumentationMenu() |
|
83 | + { |
|
84 | + $tabs = $this->parseWithFilter('documentation/tabs', [ |
|
85 | + 'support' => __('Support', 'site-reviews'), |
|
86 | + 'faq' => __('FAQ', 'site-reviews'), |
|
87 | + 'shortcodes' => __('Shortcodes', 'site-reviews'), |
|
88 | + 'hooks' => __('Hooks', 'site-reviews'), |
|
89 | + 'functions' => __('Functions', 'site-reviews'), |
|
90 | + 'addons' => __('Addons', 'site-reviews'), |
|
91 | + ]); |
|
92 | + $addons = apply_filters('site-reviews/addon/documentation', []); |
|
93 | + ksort($addons); |
|
94 | + if (empty($addons)) { |
|
95 | + unset($tabs['addons']); |
|
96 | + } |
|
97 | + $this->renderPage('documentation', [ |
|
98 | + 'addons' => $addons, |
|
99 | + 'tabs' => $tabs, |
|
100 | + ]); |
|
101 | + } |
|
102 | 102 | |
103 | - /** |
|
104 | - * @return void |
|
105 | - * @see $this->registerSubMenus() |
|
106 | - * @callback add_submenu_page |
|
107 | - */ |
|
108 | - public function renderSettingsMenu() |
|
109 | - { |
|
110 | - $tabs = $this->parseWithFilter('settings/tabs', [ |
|
111 | - 'general' => __('General', 'site-reviews'), |
|
112 | - 'reviews' => __('Reviews', 'site-reviews'), |
|
113 | - 'submissions' => __('Submissions', 'site-reviews'), |
|
114 | - 'schema' => __('Schema', 'site-reviews'), |
|
115 | - 'translations' => __('Translations', 'site-reviews'), |
|
116 | - 'addons' => __('Addons', 'site-reviews'), |
|
117 | - 'licenses' => __('Licenses', 'site-reviews'), |
|
118 | - ]); |
|
119 | - if (empty(Arr::get(glsr()->defaults, 'settings.addons'))) { |
|
120 | - unset($tabs['addons']); |
|
121 | - } |
|
122 | - if (empty(Arr::get(glsr()->defaults, 'settings.licenses'))) { |
|
123 | - unset($tabs['licenses']); |
|
124 | - } |
|
125 | - $this->renderPage('settings', [ |
|
126 | - 'settings' => glsr(Settings::class), |
|
127 | - 'tabs' => $tabs, |
|
128 | - ]); |
|
129 | - } |
|
103 | + /** |
|
104 | + * @return void |
|
105 | + * @see $this->registerSubMenus() |
|
106 | + * @callback add_submenu_page |
|
107 | + */ |
|
108 | + public function renderSettingsMenu() |
|
109 | + { |
|
110 | + $tabs = $this->parseWithFilter('settings/tabs', [ |
|
111 | + 'general' => __('General', 'site-reviews'), |
|
112 | + 'reviews' => __('Reviews', 'site-reviews'), |
|
113 | + 'submissions' => __('Submissions', 'site-reviews'), |
|
114 | + 'schema' => __('Schema', 'site-reviews'), |
|
115 | + 'translations' => __('Translations', 'site-reviews'), |
|
116 | + 'addons' => __('Addons', 'site-reviews'), |
|
117 | + 'licenses' => __('Licenses', 'site-reviews'), |
|
118 | + ]); |
|
119 | + if (empty(Arr::get(glsr()->defaults, 'settings.addons'))) { |
|
120 | + unset($tabs['addons']); |
|
121 | + } |
|
122 | + if (empty(Arr::get(glsr()->defaults, 'settings.licenses'))) { |
|
123 | + unset($tabs['licenses']); |
|
124 | + } |
|
125 | + $this->renderPage('settings', [ |
|
126 | + 'settings' => glsr(Settings::class), |
|
127 | + 'tabs' => $tabs, |
|
128 | + ]); |
|
129 | + } |
|
130 | 130 | |
131 | - /** |
|
132 | - * @return void |
|
133 | - * @see $this->registerSubMenus() |
|
134 | - * @callback add_submenu_page |
|
135 | - */ |
|
136 | - public function renderToolsMenu() |
|
137 | - { |
|
138 | - $tabs = $this->parseWithFilter('tools/tabs', [ |
|
139 | - 'general' => __('General', 'site-reviews'), |
|
140 | - 'sync' => __('Sync Reviews', 'site-reviews'), |
|
141 | - 'console' => __('Console', 'site-reviews'), |
|
142 | - 'system-info' => __('System Info', 'site-reviews'), |
|
143 | - ]); |
|
144 | - if (!apply_filters('site-reviews/addon/sync/enable', false)) { |
|
145 | - unset($tabs['sync']); |
|
146 | - } |
|
147 | - $this->renderPage('tools', [ |
|
148 | - 'data' => [ |
|
149 | - 'context' => [ |
|
150 | - 'base_url' => admin_url('edit.php?post_type='.Application::POST_TYPE), |
|
151 | - 'console' => strval(glsr(Console::class)), |
|
152 | - 'id' => Application::ID, |
|
153 | - 'system' => strval(glsr(System::class)), |
|
154 | - ], |
|
155 | - 'services' => apply_filters('site-reviews/addon/sync/services', []), |
|
156 | - ], |
|
157 | - 'tabs' => $tabs, |
|
158 | - 'template' => glsr(Template::class), |
|
159 | - ]); |
|
160 | - } |
|
131 | + /** |
|
132 | + * @return void |
|
133 | + * @see $this->registerSubMenus() |
|
134 | + * @callback add_submenu_page |
|
135 | + */ |
|
136 | + public function renderToolsMenu() |
|
137 | + { |
|
138 | + $tabs = $this->parseWithFilter('tools/tabs', [ |
|
139 | + 'general' => __('General', 'site-reviews'), |
|
140 | + 'sync' => __('Sync Reviews', 'site-reviews'), |
|
141 | + 'console' => __('Console', 'site-reviews'), |
|
142 | + 'system-info' => __('System Info', 'site-reviews'), |
|
143 | + ]); |
|
144 | + if (!apply_filters('site-reviews/addon/sync/enable', false)) { |
|
145 | + unset($tabs['sync']); |
|
146 | + } |
|
147 | + $this->renderPage('tools', [ |
|
148 | + 'data' => [ |
|
149 | + 'context' => [ |
|
150 | + 'base_url' => admin_url('edit.php?post_type='.Application::POST_TYPE), |
|
151 | + 'console' => strval(glsr(Console::class)), |
|
152 | + 'id' => Application::ID, |
|
153 | + 'system' => strval(glsr(System::class)), |
|
154 | + ], |
|
155 | + 'services' => apply_filters('site-reviews/addon/sync/services', []), |
|
156 | + ], |
|
157 | + 'tabs' => $tabs, |
|
158 | + 'template' => glsr(Template::class), |
|
159 | + ]); |
|
160 | + } |
|
161 | 161 | |
162 | - /** |
|
163 | - * @return void |
|
164 | - * @action admin_init |
|
165 | - */ |
|
166 | - public function setCustomPermissions() |
|
167 | - { |
|
168 | - foreach (wp_roles()->roles as $role => $value) { |
|
169 | - wp_roles()->remove_cap($role, 'create_'.Application::POST_TYPE); |
|
170 | - } |
|
171 | - } |
|
162 | + /** |
|
163 | + * @return void |
|
164 | + * @action admin_init |
|
165 | + */ |
|
166 | + public function setCustomPermissions() |
|
167 | + { |
|
168 | + foreach (wp_roles()->roles as $role => $value) { |
|
169 | + wp_roles()->remove_cap($role, 'create_'.Application::POST_TYPE); |
|
170 | + } |
|
171 | + } |
|
172 | 172 | |
173 | - /** |
|
174 | - * @return string |
|
175 | - */ |
|
176 | - protected function getNotices() |
|
177 | - { |
|
178 | - return glsr(Builder::class)->div(glsr(Notice::class)->get(), [ |
|
179 | - 'id' => 'glsr-notices', |
|
180 | - ]); |
|
181 | - } |
|
173 | + /** |
|
174 | + * @return string |
|
175 | + */ |
|
176 | + protected function getNotices() |
|
177 | + { |
|
178 | + return glsr(Builder::class)->div(glsr(Notice::class)->get(), [ |
|
179 | + 'id' => 'glsr-notices', |
|
180 | + ]); |
|
181 | + } |
|
182 | 182 | |
183 | - /** |
|
184 | - * @param string $hookSuffix |
|
185 | - * @return array |
|
186 | - */ |
|
187 | - protected function parseWithFilter($hookSuffix, array $args = []) |
|
188 | - { |
|
189 | - return apply_filters('site-reviews/addon/'.$hookSuffix, $args); |
|
190 | - } |
|
183 | + /** |
|
184 | + * @param string $hookSuffix |
|
185 | + * @return array |
|
186 | + */ |
|
187 | + protected function parseWithFilter($hookSuffix, array $args = []) |
|
188 | + { |
|
189 | + return apply_filters('site-reviews/addon/'.$hookSuffix, $args); |
|
190 | + } |
|
191 | 191 | |
192 | - /** |
|
193 | - * @param string $page |
|
194 | - * @return void |
|
195 | - */ |
|
196 | - protected function renderPage($page, array $data = []) |
|
197 | - { |
|
198 | - $data['http_referer'] = (string) wp_get_referer(); |
|
199 | - $data['notices'] = $this->getNotices(); |
|
200 | - glsr()->render('pages/'.$page.'/index', $data); |
|
201 | - } |
|
192 | + /** |
|
193 | + * @param string $page |
|
194 | + * @return void |
|
195 | + */ |
|
196 | + protected function renderPage($page, array $data = []) |
|
197 | + { |
|
198 | + $data['http_referer'] = (string) wp_get_referer(); |
|
199 | + $data['notices'] = $this->getNotices(); |
|
200 | + glsr()->render('pages/'.$page.'/index', $data); |
|
201 | + } |
|
202 | 202 | } |
@@ -21,20 +21,20 @@ discard block |
||
21 | 21 | public function registerMenuCount() |
22 | 22 | { |
23 | 23 | global $menu, $typenow; |
24 | - foreach ($menu as $key => $value) { |
|
25 | - if (!isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE) { |
|
24 | + foreach( $menu as $key => $value ) { |
|
25 | + if( !isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE ) { |
|
26 | 26 | continue; |
27 | 27 | } |
28 | - $postCount = wp_count_posts(Application::POST_TYPE); |
|
29 | - $pendingCount = glsr(Builder::class)->span(number_format_i18n($postCount->pending), [ |
|
28 | + $postCount = wp_count_posts( Application::POST_TYPE ); |
|
29 | + $pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [ |
|
30 | 30 | 'class' => 'unapproved-count', |
31 | - ]); |
|
32 | - $awaitingModeration = glsr(Builder::class)->span($pendingCount, [ |
|
31 | + ] ); |
|
32 | + $awaitingModeration = glsr( Builder::class )->span( $pendingCount, [ |
|
33 | 33 | 'class' => 'awaiting-mod count-'.$postCount->pending, |
34 | - ]); |
|
35 | - $menu[$key][0].= ' '.$awaitingModeration; |
|
36 | - if (Application::POST_TYPE === $typenow) { |
|
37 | - $menu[$key][4].= ' current'; |
|
34 | + ] ); |
|
35 | + $menu[$key][0] .= ' '.$awaitingModeration; |
|
36 | + if( Application::POST_TYPE === $typenow ) { |
|
37 | + $menu[$key][4] .= ' current'; |
|
38 | 38 | } |
39 | 39 | break; |
40 | 40 | } |
@@ -46,19 +46,19 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function registerSubMenus() |
48 | 48 | { |
49 | - $pages = $this->parseWithFilter('submenu/pages', [ |
|
50 | - 'settings' => __('Settings', 'site-reviews'), |
|
51 | - 'tools' => __('Tools', 'site-reviews'), |
|
52 | - 'addons' => __('Add-ons', 'site-reviews'), |
|
53 | - 'documentation' => __('Documentation', 'site-reviews'), |
|
54 | - ]); |
|
55 | - foreach ($pages as $slug => $title) { |
|
56 | - $method = Helper::buildMethodName('render-'.$slug.'-menu'); |
|
57 | - $callback = apply_filters('site-reviews/addon/submenu/callback', [$this, $method], $slug); |
|
58 | - if (!is_callable($callback)) { |
|
49 | + $pages = $this->parseWithFilter( 'submenu/pages', [ |
|
50 | + 'settings' => __( 'Settings', 'site-reviews' ), |
|
51 | + 'tools' => __( 'Tools', 'site-reviews' ), |
|
52 | + 'addons' => __( 'Add-ons', 'site-reviews' ), |
|
53 | + 'documentation' => __( 'Documentation', 'site-reviews' ), |
|
54 | + ] ); |
|
55 | + foreach( $pages as $slug => $title ) { |
|
56 | + $method = Helper::buildMethodName( 'render-'.$slug.'-menu' ); |
|
57 | + $callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug ); |
|
58 | + if( !is_callable( $callback ) ) { |
|
59 | 59 | continue; |
60 | 60 | } |
61 | - add_submenu_page('edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->getPermission($slug), $slug, $callback); |
|
61 | + add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->getPermission( $slug ), $slug, $callback ); |
|
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function renderAddonsMenu() |
71 | 71 | { |
72 | - $this->renderPage('addons', [ |
|
73 | - 'template' => glsr(Template::class), |
|
74 | - ]); |
|
72 | + $this->renderPage( 'addons', [ |
|
73 | + 'template' => glsr( Template::class ), |
|
74 | + ] ); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -81,23 +81,23 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function renderDocumentationMenu() |
83 | 83 | { |
84 | - $tabs = $this->parseWithFilter('documentation/tabs', [ |
|
85 | - 'support' => __('Support', 'site-reviews'), |
|
86 | - 'faq' => __('FAQ', 'site-reviews'), |
|
87 | - 'shortcodes' => __('Shortcodes', 'site-reviews'), |
|
88 | - 'hooks' => __('Hooks', 'site-reviews'), |
|
89 | - 'functions' => __('Functions', 'site-reviews'), |
|
90 | - 'addons' => __('Addons', 'site-reviews'), |
|
91 | - ]); |
|
92 | - $addons = apply_filters('site-reviews/addon/documentation', []); |
|
93 | - ksort($addons); |
|
94 | - if (empty($addons)) { |
|
84 | + $tabs = $this->parseWithFilter( 'documentation/tabs', [ |
|
85 | + 'support' => __( 'Support', 'site-reviews' ), |
|
86 | + 'faq' => __( 'FAQ', 'site-reviews' ), |
|
87 | + 'shortcodes' => __( 'Shortcodes', 'site-reviews' ), |
|
88 | + 'hooks' => __( 'Hooks', 'site-reviews' ), |
|
89 | + 'functions' => __( 'Functions', 'site-reviews' ), |
|
90 | + 'addons' => __( 'Addons', 'site-reviews' ), |
|
91 | + ] ); |
|
92 | + $addons = apply_filters( 'site-reviews/addon/documentation', [] ); |
|
93 | + ksort( $addons ); |
|
94 | + if( empty($addons) ) { |
|
95 | 95 | unset($tabs['addons']); |
96 | 96 | } |
97 | - $this->renderPage('documentation', [ |
|
97 | + $this->renderPage( 'documentation', [ |
|
98 | 98 | 'addons' => $addons, |
99 | 99 | 'tabs' => $tabs, |
100 | - ]); |
|
100 | + ] ); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -107,25 +107,25 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function renderSettingsMenu() |
109 | 109 | { |
110 | - $tabs = $this->parseWithFilter('settings/tabs', [ |
|
111 | - 'general' => __('General', 'site-reviews'), |
|
112 | - 'reviews' => __('Reviews', 'site-reviews'), |
|
113 | - 'submissions' => __('Submissions', 'site-reviews'), |
|
114 | - 'schema' => __('Schema', 'site-reviews'), |
|
115 | - 'translations' => __('Translations', 'site-reviews'), |
|
116 | - 'addons' => __('Addons', 'site-reviews'), |
|
117 | - 'licenses' => __('Licenses', 'site-reviews'), |
|
118 | - ]); |
|
119 | - if (empty(Arr::get(glsr()->defaults, 'settings.addons'))) { |
|
110 | + $tabs = $this->parseWithFilter( 'settings/tabs', [ |
|
111 | + 'general' => __( 'General', 'site-reviews' ), |
|
112 | + 'reviews' => __( 'Reviews', 'site-reviews' ), |
|
113 | + 'submissions' => __( 'Submissions', 'site-reviews' ), |
|
114 | + 'schema' => __( 'Schema', 'site-reviews' ), |
|
115 | + 'translations' => __( 'Translations', 'site-reviews' ), |
|
116 | + 'addons' => __( 'Addons', 'site-reviews' ), |
|
117 | + 'licenses' => __( 'Licenses', 'site-reviews' ), |
|
118 | + ] ); |
|
119 | + if( empty(Arr::get( glsr()->defaults, 'settings.addons' )) ) { |
|
120 | 120 | unset($tabs['addons']); |
121 | 121 | } |
122 | - if (empty(Arr::get(glsr()->defaults, 'settings.licenses'))) { |
|
122 | + if( empty(Arr::get( glsr()->defaults, 'settings.licenses' )) ) { |
|
123 | 123 | unset($tabs['licenses']); |
124 | 124 | } |
125 | - $this->renderPage('settings', [ |
|
126 | - 'settings' => glsr(Settings::class), |
|
125 | + $this->renderPage( 'settings', [ |
|
126 | + 'settings' => glsr( Settings::class ), |
|
127 | 127 | 'tabs' => $tabs, |
128 | - ]); |
|
128 | + ] ); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -135,28 +135,28 @@ discard block |
||
135 | 135 | */ |
136 | 136 | public function renderToolsMenu() |
137 | 137 | { |
138 | - $tabs = $this->parseWithFilter('tools/tabs', [ |
|
139 | - 'general' => __('General', 'site-reviews'), |
|
140 | - 'sync' => __('Sync Reviews', 'site-reviews'), |
|
141 | - 'console' => __('Console', 'site-reviews'), |
|
142 | - 'system-info' => __('System Info', 'site-reviews'), |
|
143 | - ]); |
|
144 | - if (!apply_filters('site-reviews/addon/sync/enable', false)) { |
|
138 | + $tabs = $this->parseWithFilter( 'tools/tabs', [ |
|
139 | + 'general' => __( 'General', 'site-reviews' ), |
|
140 | + 'sync' => __( 'Sync Reviews', 'site-reviews' ), |
|
141 | + 'console' => __( 'Console', 'site-reviews' ), |
|
142 | + 'system-info' => __( 'System Info', 'site-reviews' ), |
|
143 | + ] ); |
|
144 | + if( !apply_filters( 'site-reviews/addon/sync/enable', false ) ) { |
|
145 | 145 | unset($tabs['sync']); |
146 | 146 | } |
147 | - $this->renderPage('tools', [ |
|
147 | + $this->renderPage( 'tools', [ |
|
148 | 148 | 'data' => [ |
149 | 149 | 'context' => [ |
150 | - 'base_url' => admin_url('edit.php?post_type='.Application::POST_TYPE), |
|
151 | - 'console' => strval(glsr(Console::class)), |
|
150 | + 'base_url' => admin_url( 'edit.php?post_type='.Application::POST_TYPE ), |
|
151 | + 'console' => strval( glsr( Console::class ) ), |
|
152 | 152 | 'id' => Application::ID, |
153 | - 'system' => strval(glsr(System::class)), |
|
153 | + 'system' => strval( glsr( System::class ) ), |
|
154 | 154 | ], |
155 | - 'services' => apply_filters('site-reviews/addon/sync/services', []), |
|
155 | + 'services' => apply_filters( 'site-reviews/addon/sync/services', [] ), |
|
156 | 156 | ], |
157 | 157 | 'tabs' => $tabs, |
158 | - 'template' => glsr(Template::class), |
|
159 | - ]); |
|
158 | + 'template' => glsr( Template::class ), |
|
159 | + ] ); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -165,8 +165,8 @@ discard block |
||
165 | 165 | */ |
166 | 166 | public function setCustomPermissions() |
167 | 167 | { |
168 | - foreach (wp_roles()->roles as $role => $value) { |
|
169 | - wp_roles()->remove_cap($role, 'create_'.Application::POST_TYPE); |
|
168 | + foreach( wp_roles()->roles as $role => $value ) { |
|
169 | + wp_roles()->remove_cap( $role, 'create_'.Application::POST_TYPE ); |
|
170 | 170 | } |
171 | 171 | } |
172 | 172 | |
@@ -175,28 +175,28 @@ discard block |
||
175 | 175 | */ |
176 | 176 | protected function getNotices() |
177 | 177 | { |
178 | - return glsr(Builder::class)->div(glsr(Notice::class)->get(), [ |
|
178 | + return glsr( Builder::class )->div( glsr( Notice::class )->get(), [ |
|
179 | 179 | 'id' => 'glsr-notices', |
180 | - ]); |
|
180 | + ] ); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
184 | 184 | * @param string $hookSuffix |
185 | 185 | * @return array |
186 | 186 | */ |
187 | - protected function parseWithFilter($hookSuffix, array $args = []) |
|
187 | + protected function parseWithFilter( $hookSuffix, array $args = [] ) |
|
188 | 188 | { |
189 | - return apply_filters('site-reviews/addon/'.$hookSuffix, $args); |
|
189 | + return apply_filters( 'site-reviews/addon/'.$hookSuffix, $args ); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | 193 | * @param string $page |
194 | 194 | * @return void |
195 | 195 | */ |
196 | - protected function renderPage($page, array $data = []) |
|
196 | + protected function renderPage( $page, array $data = [] ) |
|
197 | 197 | { |
198 | - $data['http_referer'] = (string) wp_get_referer(); |
|
198 | + $data['http_referer'] = (string)wp_get_referer(); |
|
199 | 199 | $data['notices'] = $this->getNotices(); |
200 | - glsr()->render('pages/'.$page.'/index', $data); |
|
200 | + glsr()->render( 'pages/'.$page.'/index', $data ); |
|
201 | 201 | } |
202 | 202 | } |