@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | { |
33 | 33 | $links[] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [ |
34 | 34 | 'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ), |
35 | - ]); |
|
35 | + ] ); |
|
36 | 36 | return $links; |
37 | 37 | } |
38 | 38 | |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | { |
45 | 45 | $postType = Application::POST_TYPE; |
46 | 46 | $postCount = wp_count_posts( $postType ); |
47 | - if( !isset( $postCount->publish ) || !$postCount->publish ) { |
|
47 | + if( !isset($postCount->publish) || !$postCount->publish ) { |
|
48 | 48 | return $items; |
49 | 49 | } |
50 | 50 | $postTypeObject = get_post_type_object( $postType ); |
51 | 51 | $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' ); |
52 | - $text = sprintf( $text, number_format_i18n( $postCount->publish )); |
|
52 | + $text = sprintf( $text, number_format_i18n( $postCount->publish ) ); |
|
53 | 53 | $items[] = $postTypeObject && current_user_can( $postTypeObject->cap->edit_posts ) |
54 | 54 | ? sprintf( '<a class="glsr-review-count" href="edit.php?post_type=%s">%s</a>', $postType, $text ) |
55 | 55 | : sprintf( '<span class="glsr-review-count">%s</span>', $text ); |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | public function filterTinymcePlugins( array $plugins ) |
64 | 64 | { |
65 | 65 | if( user_can_richedit() |
66 | - && ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ))) { |
|
66 | + && (current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) ) { |
|
67 | 67 | $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' ); |
68 | 68 | } |
69 | 69 | return $plugins; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function registerPointers() |
77 | 77 | { |
78 | - $command = new RegisterPointers([[ |
|
78 | + $command = new RegisterPointers( [[ |
|
79 | 79 | 'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ), |
80 | 80 | 'id' => 'glsr-pointer-pinned', |
81 | 81 | 'position' => [ |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | 'screen' => Application::POST_TYPE, |
86 | 86 | 'target' => '#misc-pub-pinned', |
87 | 87 | 'title' => __( 'Pin Your Reviews', 'site-reviews' ), |
88 | - ]]); |
|
88 | + ]] ); |
|
89 | 89 | $this->execute( $command ); |
90 | 90 | } |
91 | 91 | |
@@ -95,11 +95,11 @@ discard block |
||
95 | 95 | */ |
96 | 96 | public function registerShortcodeButtons() |
97 | 97 | { |
98 | - $command = new RegisterShortcodeButtons([ |
|
98 | + $command = new RegisterShortcodeButtons( [ |
|
99 | 99 | 'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ), |
100 | 100 | 'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ), |
101 | 101 | 'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ), |
102 | - ]); |
|
102 | + ] ); |
|
103 | 103 | $this->execute( $command ); |
104 | 104 | } |
105 | 105 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | if( !$this->isReviewEditable( $post ) )return; |
113 | 113 | glsr()->render( 'editor/review', [ |
114 | 114 | 'post' => $post, |
115 | - ]); |
|
115 | + ] ); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | public function renderReviewNotice( WP_Post $post ) |
123 | 123 | { |
124 | 124 | if( !$this->isReviewEditable( $post ) )return; |
125 | - glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' )); |
|
125 | + glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' ) ); |
|
126 | 126 | glsr()->render( 'editor/notice' ); |
127 | 127 | } |
128 | 128 | |
@@ -135,13 +135,13 @@ discard block |
||
135 | 135 | if( glsr_current_screen()->base != 'post' )return; |
136 | 136 | $shortcodes = []; |
137 | 137 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
138 | - if( !apply_filters( sanitize_title( $shortcode ).'_condition', true ))continue; |
|
138 | + if( !apply_filters( sanitize_title( $shortcode ).'_condition', true ) )continue; |
|
139 | 139 | $shortcodes[$shortcode] = $values; |
140 | 140 | } |
141 | - if( empty( $shortcodes ))return; |
|
141 | + if( empty($shortcodes) )return; |
|
142 | 142 | glsr()->render( 'editor/tinymce', [ |
143 | 143 | 'shortcodes' => $shortcodes, |
144 | - ]); |
|
144 | + ] ); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | public function routerClearLog() |
151 | 151 | { |
152 | 152 | glsr( Logger::class )->clear(); |
153 | - glsr( Notice::class )->addSuccess( __( 'Log cleared.', 'site-reviews' )); |
|
153 | + glsr( Notice::class )->addSuccess( __( 'Log cleared.', 'site-reviews' ) ); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function download( $filename, $content ) |
17 | 17 | { |
18 | - if( !current_user_can( Application::CAPABILITY ))return; |
|
18 | + if( !current_user_can( Application::CAPABILITY ) )return; |
|
19 | 19 | nocache_headers(); |
20 | 20 | header( 'Content-Type: text/plain' ); |
21 | 21 | header( 'Content-Disposition: attachment; filename="'.$filename.'"' ); |
22 | - echo html_entity_decode( wp_strip_all_tags( $content )); |
|
22 | + echo html_entity_decode( wp_strip_all_tags( $content ) ); |
|
23 | 23 | exit; |
24 | 24 | } |
25 | 25 | |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function execute( $command ) |
32 | 32 | { |
33 | - $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command )); |
|
34 | - if( !class_exists( $handlerClass )) { |
|
33 | + $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ) ); |
|
34 | + if( !class_exists( $handlerClass ) ) { |
|
35 | 35 | throw new InvalidArgumentException( 'Handler '.$handlerClass.' not found.' ); |
36 | 36 | } |
37 | 37 | try { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | } |
40 | 40 | catch( Exception $e ) { |
41 | 41 | status_header( 400 ); |
42 | - glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() )); |
|
42 | + glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ) ); |
|
43 | 43 | glsr_log()->error( $e->getMessage() ); |
44 | 44 | } |
45 | 45 | } |
@@ -49,6 +49,6 @@ discard block |
||
49 | 49 | */ |
50 | 50 | protected function getPostId() |
51 | 51 | { |
52 | - return intval( filter_input( INPUT_GET, 'post' )); |
|
52 | + return intval( filter_input( INPUT_GET, 'post' ) ); |
|
53 | 53 | } |
54 | 54 | } |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | { |
21 | 21 | global $menu, $typenow; |
22 | 22 | foreach( $menu as $key => $value ) { |
23 | - if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
23 | + if( !isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
24 | 24 | $postCount = wp_count_posts( Application::POST_TYPE ); |
25 | 25 | $pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [ |
26 | 26 | 'class' => 'pending-count', |
27 | - ]); |
|
27 | + ] ); |
|
28 | 28 | $awaitingModeration = glsr( Builder::class )->span( $pendingCount, [ |
29 | 29 | 'class' => 'awaiting-mod count-'.$postCount->pending, |
30 | - ]); |
|
30 | + ] ); |
|
31 | 31 | $menu[$key][0] .= $awaitingModeration; |
32 | 32 | if( $typenow === Application::POST_TYPE ) { |
33 | 33 | $menu[$key][4] .= ' current'; |
@@ -48,11 +48,11 @@ discard block |
||
48 | 48 | 'tools' => __( 'Tools', 'site-reviews' ), |
49 | 49 | 'documentation' => __( 'Documentation', 'site-reviews' ), |
50 | 50 | 'addons' => __( 'Add-Ons', 'site-reviews' ), |
51 | - ]); |
|
51 | + ] ); |
|
52 | 52 | foreach( $pages as $slug => $title ) { |
53 | 53 | $method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' ); |
54 | 54 | $callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug ); |
55 | - if( !is_callable( $callback ))continue; |
|
55 | + if( !is_callable( $callback ) )continue; |
|
56 | 56 | add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, Application::CAPABILITY, $slug, $callback ); |
57 | 57 | } |
58 | 58 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | 'shortcodes' => __( 'Shortcodes', 'site-reviews' ), |
85 | 85 | 'hooks' => __( 'Hooks', 'site-reviews' ), |
86 | 86 | 'functions' => __( 'Functions', 'site-reviews' ), |
87 | - ]); |
|
87 | + ] ); |
|
88 | 88 | $this->renderMenu( 'documentation', $tabs ); |
89 | 89 | } |
90 | 90 | |
@@ -103,11 +103,11 @@ discard block |
||
103 | 103 | 'schema' => __( 'Schema', 'site-reviews' ), |
104 | 104 | 'translations' => __( 'Translations', 'site-reviews' ), |
105 | 105 | 'licenses' => __( 'Licenses', 'site-reviews' ), |
106 | - ]); |
|
106 | + ] ); |
|
107 | 107 | $this->renderMenu( 'settings', $tabs, [ |
108 | 108 | 'databaseKey' => OptionManager::databaseKey(), |
109 | 109 | 'settings' => glsr()->getDefaults(), |
110 | - ]); |
|
110 | + ] ); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
@@ -122,13 +122,13 @@ discard block |
||
122 | 122 | 'import-export' => __( 'Import/Export', 'site-reviews' ), |
123 | 123 | 'logging' => __( 'Logging', 'site-reviews' ), |
124 | 124 | 'system-info' => __( 'System Info', 'site-reviews' ), |
125 | - ]); |
|
125 | + ] ); |
|
126 | 126 | $this->renderMenu( 'tools', $tabs, [ |
127 | 127 | 'id' => Application::ID, |
128 | 128 | 'logger' => glsr( Logger::class ), |
129 | 129 | 'prefix' => Application::PREFIX, |
130 | 130 | 'system' => glsr( System::class ), |
131 | - ]); |
|
131 | + ] ); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | protected function getCurrentSection( array $tabs, $tab ) |
150 | 150 | { |
151 | 151 | $currentSection = filter_input( INPUT_GET, 'section' ); |
152 | - if( empty( $tabs[$tab]['sections'][$currentSection] )) { |
|
153 | - $currentSection = isset( $tabs[$tab]['sections'] ) |
|
152 | + if( empty($tabs[$tab]['sections'][$currentSection]) ) { |
|
153 | + $currentSection = isset($tabs[$tab]['sections']) |
|
154 | 154 | ? key( $tabs[$tab]['sections'] ) |
155 | 155 | : ''; |
156 | 156 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | protected function getCurrentTab( array $tabs ) |
164 | 164 | { |
165 | 165 | $currentTab = filter_input( INPUT_GET, 'tab' ); |
166 | - if( !array_key_exists( $currentTab, $tabs )) { |
|
166 | + if( !array_key_exists( $currentTab, $tabs ) ) { |
|
167 | 167 | $currentTab = key( $tabs ); |
168 | 168 | } |
169 | 169 | return $currentTab; |
@@ -175,16 +175,16 @@ discard block |
||
175 | 175 | protected function normalizeTabs( array $tabs ) |
176 | 176 | { |
177 | 177 | foreach( $tabs as $key => $value ) { |
178 | - if( !is_array( $value )) { |
|
178 | + if( !is_array( $value ) ) { |
|
179 | 179 | $value = ['title' => $value]; |
180 | 180 | } |
181 | 181 | $tabs[$key] = wp_parse_args( $value, [ |
182 | 182 | 'sections' => [], |
183 | 183 | 'title' => '', |
184 | - ]); |
|
184 | + ] ); |
|
185 | 185 | $useLicenses = apply_filters( 'site-reviews/addon/licenses', false ); |
186 | 186 | if( !$useLicenses ) { |
187 | - unset( $tabs['licenses'] ); |
|
187 | + unset($tabs['licenses']); |
|
188 | 188 | } |
189 | 189 | } |
190 | 190 | return $tabs; |
@@ -206,6 +206,6 @@ discard block |
||
206 | 206 | 'tabs' => $tabs, |
207 | 207 | ]; |
208 | 208 | $data = apply_filters( 'site-reviews/addon/page/data', $data, $defaults ); |
209 | - glsr()->render( 'pages/index', wp_parse_args( $data, $defaults )); |
|
209 | + glsr()->render( 'pages/index', wp_parse_args( $data, $defaults ) ); |
|
210 | 210 | } |
211 | 211 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function registerPostType() |
21 | 21 | { |
22 | 22 | if( !glsr()->hasPermission() )return; |
23 | - $command = new RegisterPostType([ |
|
23 | + $command = new RegisterPostType( [ |
|
24 | 24 | 'capabilities'=> ['create_posts' => 'create_'.Application::POST_TYPE], |
25 | 25 | 'columns' => [ |
26 | 26 | 'title' => '', |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | 'plural' => __( 'Reviews', 'site-reviews' ), |
39 | 39 | 'post_type' => Application::POST_TYPE, |
40 | 40 | 'single' => __( 'Review', 'site-reviews' ), |
41 | - ]); |
|
41 | + ] ); |
|
42 | 42 | $this->execute( $command ); |
43 | 43 | } |
44 | 44 | |
@@ -48,11 +48,11 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function registerShortcodes() |
50 | 50 | { |
51 | - $command = new RegisterShortcodes([ |
|
51 | + $command = new RegisterShortcodes( [ |
|
52 | 52 | 'site_reviews', |
53 | 53 | 'site_reviews_form', |
54 | 54 | 'site_reviews_summary', |
55 | - ]); |
|
55 | + ] ); |
|
56 | 56 | $this->execute( $command ); |
57 | 57 | } |
58 | 58 | |
@@ -62,13 +62,13 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function registerTaxonomy() |
64 | 64 | { |
65 | - $command = new RegisterTaxonomy([ |
|
65 | + $command = new RegisterTaxonomy( [ |
|
66 | 66 | 'hierarchical' => true, |
67 | 67 | 'meta_box_cb' => 'glsr_categories_meta_box', |
68 | 68 | 'public' => false, |
69 | 69 | 'show_admin_column' => true, |
70 | 70 | 'show_ui' => true, |
71 | - ]); |
|
71 | + ] ); |
|
72 | 72 | $this->execute( $command ); |
73 | 73 | } |
74 | 74 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function registerWidgets() |
80 | 80 | { |
81 | - $command = new RegisterWidgets([ |
|
81 | + $command = new RegisterWidgets( [ |
|
82 | 82 | 'site-reviews' => [ |
83 | 83 | 'class' => 'glsr-widget glsr-widget-site-reviews', |
84 | 84 | 'description' => __( 'Your site’s most recent reviews.', 'site-reviews' ), |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | 'description' => __( 'A summary of your site’s reviews.', 'site-reviews' ), |
95 | 95 | 'title' => __( 'Summary of Reviews', 'site-reviews' ), |
96 | 96 | ], |
97 | - ]); |
|
97 | + ] ); |
|
98 | 98 | $this->execute( $command ); |
99 | 99 | } |
100 | 100 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function load() |
39 | 39 | { |
40 | - if( empty( static::$instance )) { |
|
40 | + if( empty(static::$instance) ) { |
|
41 | 41 | static::$instance = new static; |
42 | 42 | } |
43 | 43 | return static::$instance; |
@@ -49,14 +49,14 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function __get( $property ) |
51 | 51 | { |
52 | - if( property_exists( $this, $property ) && !in_array( $property, static::PROTECTED_PROPERTIES )) { |
|
52 | + if( property_exists( $this, $property ) && !in_array( $property, static::PROTECTED_PROPERTIES ) ) { |
|
53 | 53 | return $this->$property; |
54 | 54 | } |
55 | - $constant = 'static::'.strtoupper( $this->make( Helper::class )->snakeCase( $property )); |
|
56 | - if( defined( $constant )) { |
|
55 | + $constant = 'static::'.strtoupper( $this->make( Helper::class )->snakeCase( $property ) ); |
|
56 | + if( defined( $constant ) ) { |
|
57 | 57 | return constant( $constant ); |
58 | 58 | } |
59 | - return isset( $this->storage[$property] ) |
|
59 | + return isset($this->storage[$property]) |
|
60 | 60 | ? $this->storage[$property] |
61 | 61 | : null; |
62 | 62 | } |
@@ -68,14 +68,14 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function __set( $property, $value ) |
70 | 70 | { |
71 | - if( !property_exists( $this, $property ) || in_array( $property, static::PROTECTED_PROPERTIES )) { |
|
71 | + if( !property_exists( $this, $property ) || in_array( $property, static::PROTECTED_PROPERTIES ) ) { |
|
72 | 72 | $this->storage[$property] = $value; |
73 | 73 | } |
74 | - else if( !isset( $this->$property )) { |
|
74 | + else if( !isset($this->$property) ) { |
|
75 | 75 | $this->$property = $value; |
76 | 76 | } |
77 | 77 | else { |
78 | - throw new Exception( sprintf( 'The "%s" property cannot be changed once set.', $property )); |
|
78 | + throw new Exception( sprintf( 'The "%s" property cannot be changed once set.', $property ) ); |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
@@ -97,16 +97,16 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function make( $abstract ) |
99 | 99 | { |
100 | - if( !isset( $this->services[$abstract] )) { |
|
100 | + if( !isset($this->services[$abstract]) ) { |
|
101 | 101 | $abstract = $this->addNamespace( $abstract ); |
102 | 102 | } |
103 | - if( isset( $this->services[$abstract] )) { |
|
103 | + if( isset($this->services[$abstract]) ) { |
|
104 | 104 | $abstract = $this->services[$abstract]; |
105 | 105 | } |
106 | - if( is_callable( $abstract )) { |
|
106 | + if( is_callable( $abstract ) ) { |
|
107 | 107 | return call_user_func_array( $abstract, [$this] ); |
108 | 108 | } |
109 | - if( is_object( $abstract )) { |
|
109 | + if( is_object( $abstract ) ) { |
|
110 | 110 | return $abstract; |
111 | 111 | } |
112 | 112 | return $this->resolve( $abstract ); |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function singleton( $alias, $binding ) |
122 | 122 | { |
123 | - $this->bind( $alias, $this->make( $binding )); |
|
123 | + $this->bind( $alias, $this->make( $binding ) ); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | protected function addNamespace( $abstract ) |
132 | 132 | { |
133 | - if( strpos( $abstract, __NAMESPACE__ ) === false && !class_exists( $abstract )) { |
|
133 | + if( strpos( $abstract, __NAMESPACE__ ) === false && !class_exists( $abstract ) ) { |
|
134 | 134 | $abstract = __NAMESPACE__.'\\'.$abstract; |
135 | 135 | } |
136 | 136 | return $abstract; |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | throw new Exception( 'Target ['.$concrete.'] is not instantiable.' ); |
153 | 153 | } |
154 | 154 | $constructor = $reflector->getConstructor(); |
155 | - if( empty( $constructor )) { |
|
155 | + if( empty($constructor) ) { |
|
156 | 156 | return new $concrete; |
157 | 157 | } |
158 | 158 | return $reflector->newInstanceArgs( |
@@ -82,7 +82,7 @@ |
||
82 | 82 | { |
83 | 83 | $this->render()->div( glsr( Notice::class )->get(), [ |
84 | 84 | 'id' => 'glsr-notices', |
85 | - ]); |
|
85 | + ] ); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -130,8 +130,8 @@ |
||
130 | 130 | public function validateRequired( $attribute, $value ) |
131 | 131 | { |
132 | 132 | return is_null( $value ) |
133 | - || ( is_string( $value ) && trim( $value ) === '' ) |
|
134 | - || ( is_array( $value ) && count( $value ) < 1 ) |
|
133 | + || (is_string( $value ) && trim( $value ) === '') |
|
134 | + || (is_array( $value ) && count( $value ) < 1) |
|
135 | 135 | ? false |
136 | 136 | : true; |
137 | 137 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $this->message = $this->buildHtmlMessage( $email ); |
44 | 44 | $this->subject = $email['subject']; |
45 | 45 | $this->to = $email['to']; |
46 | - add_action( 'phpmailer_init', [ $this, 'buildPlainTextMessage'] ); |
|
46 | + add_action( 'phpmailer_init', [$this, 'buildPlainTextMessage'] ); |
|
47 | 47 | return $this; |
48 | 48 | } |
49 | 49 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function buildPlainTextMessage( $phpmailer ) |
85 | 85 | { |
86 | - if( $phpmailer->ContentType === 'text/plain' || !empty( $phpmailer->AltBody ))return; |
|
86 | + if( $phpmailer->ContentType === 'text/plain' || !empty($phpmailer->AltBody) )return; |
|
87 | 87 | $message = $this->stripHtmlTags( $phpmailer->Body ); |
88 | 88 | $phpmailer->AltBody = apply_filters( 'site-reviews/email/message', $message, 'text', $this ); |
89 | 89 | } |
@@ -99,10 +99,10 @@ discard block |
||
99 | 99 | 'from', |
100 | 100 | 'reply-to', |
101 | 101 | ]; |
102 | - $headers = array_intersect_key( $email, array_flip( $allowed )); |
|
102 | + $headers = array_intersect_key( $email, array_flip( $allowed ) ); |
|
103 | 103 | $headers = array_filter( $headers ); |
104 | 104 | foreach( $headers as $key => $value ) { |
105 | - unset( $headers[ $key ] ); |
|
105 | + unset($headers[$key]); |
|
106 | 106 | $headers[] = "{$key}: {$value}"; |
107 | 107 | } |
108 | 108 | $headers[] = 'Content-Type: text/html'; |
@@ -114,16 +114,16 @@ discard block |
||
114 | 114 | */ |
115 | 115 | protected function buildHtmlMessage( $email ) |
116 | 116 | { |
117 | - $template = trim( glsr( OptionManager::class )->get( 'settings.general.notification_message' )); |
|
118 | - if( !empty( $template )) { |
|
117 | + $template = trim( glsr( OptionManager::class )->get( 'settings.general.notification_message' ) ); |
|
118 | + if( !empty($template) ) { |
|
119 | 119 | $message = glsr( Template::class )->interpolate( $template, $email['template-tags'] ); |
120 | 120 | } |
121 | 121 | else if( $email['template'] ) { |
122 | 122 | $message = glsr( Template::class )->build( 'templates/'.$email['template'], [ |
123 | 123 | 'context' => $email['template-tags'], |
124 | - ]); |
|
124 | + ] ); |
|
125 | 125 | } |
126 | - if( !isset( $message )) { |
|
126 | + if( !isset($message) ) { |
|
127 | 127 | $message = $email['message']; |
128 | 128 | } |
129 | 129 | $message = $email['before'].$message.$email['after']; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | $message = str_replace( ']]>', ']]>', $message ); |
135 | 135 | $message = glsr( Template::class )->build( 'email/index', [ |
136 | 136 | 'context' => ['message' => $message], |
137 | - ]); |
|
137 | + ] ); |
|
138 | 138 | return apply_filters( 'site-reviews/email/message', stripslashes( $message ), 'html', $this ); |
139 | 139 | } |
140 | 140 | |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | 'to' => '', |
161 | 161 | ]; |
162 | 162 | $email = shortcode_atts( $defaults, $email ); |
163 | - if( empty( $email['reply-to'] )) { |
|
163 | + if( empty($email['reply-to']) ) { |
|
164 | 164 | $email['reply-to'] = $email['from']; |
165 | 165 | } |
166 | 166 | return apply_filters( 'site-reviews/email/compose', $email, $this ); |
@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function add( $type, $message, array $args = [] ) |
17 | 17 | { |
18 | - if( empty( array_filter( [$message, $type] )))return; |
|
18 | + if( empty(array_filter( [$message, $type] )) )return; |
|
19 | 19 | $args['message'] = $message; |
20 | 20 | $args['type'] = $type; |
21 | - add_settings_error( Application::ID, '', json_encode( $this->normalize( $args ))); |
|
21 | + add_settings_error( Application::ID, '', json_encode( $this->normalize( $args ) ) ); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | public function get() |
55 | 55 | { |
56 | 56 | $notices = array_map( 'unserialize', |
57 | - array_unique( array_map( 'serialize', get_settings_errors( Application::ID ))) |
|
57 | + array_unique( array_map( 'serialize', get_settings_errors( Application::ID ) ) ) |
|
58 | 58 | ); |
59 | - if( empty( $notices ))return; |
|
59 | + if( empty($notices) )return; |
|
60 | 60 | return array_reduce( $notices, function( $carry, $notice ) { |
61 | - return $carry.$this->buildNotice( json_decode( $notice['message'], true )); |
|
61 | + return $carry.$this->buildNotice( json_decode( $notice['message'], true ) ); |
|
62 | 62 | }); |
63 | 63 | } |
64 | 64 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } |
80 | 80 | return glsr( Builder::class )->div( $messages, [ |
81 | 81 | 'class' => $class, |
82 | - ]); |
|
82 | + ] ); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
@@ -94,13 +94,13 @@ discard block |
||
94 | 94 | 'type' => '', |
95 | 95 | ]; |
96 | 96 | $args = shortcode_atts( $defaults, $args ); |
97 | - if( !in_array( $args['type'], ['error', 'warning', 'success'] )) { |
|
97 | + if( !in_array( $args['type'], ['error', 'warning', 'success'] ) ) { |
|
98 | 98 | $args['type'] = 'success'; |
99 | 99 | } |
100 | 100 | $args['messages'] = is_wp_error( $args['message'] ) |
101 | 101 | ? (array)$args['message']->get_error_message() |
102 | 102 | : (array)$args['message']; |
103 | - unset( $args['message'] ); |
|
103 | + unset($args['message']); |
|
104 | 104 | return $args; |
105 | 105 | } |
106 | 106 | } |