@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function compose( Review $review, array $notification ) |
| 37 | 37 | { |
| 38 | - if( empty( $this->endpoint )) { |
|
| 38 | + if( empty($this->endpoint) ) { |
|
| 39 | 39 | return $this; |
| 40 | 40 | } |
| 41 | 41 | $args = shortcode_atts( glsr( SlackDefaults::class )->defaults(), $notification ); |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | public function send() |
| 62 | 62 | { |
| 63 | - if( empty( $this->endpoint )) { |
|
| 63 | + if( empty($this->endpoint) ) { |
|
| 64 | 64 | return new WP_Error( 'slack', 'Slack notification was not sent: missing endpoint' ); |
| 65 | 65 | } |
| 66 | 66 | return wp_remote_post( $this->endpoint, [ |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | 'redirection' => 5, |
| 73 | 73 | 'sslverify' => false, |
| 74 | 74 | 'timeout' => 45, |
| 75 | - ]); |
|
| 75 | + ] ); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
@@ -92,11 +92,11 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | protected function buildAuthorField() |
| 94 | 94 | { |
| 95 | - $email = !empty( $this->review->email ) |
|
| 95 | + $email = !empty($this->review->email) |
|
| 96 | 96 | ? '<'.$this->review->email.'>' |
| 97 | 97 | : ''; |
| 98 | 98 | $author = trim( rtrim( $this->review->author ).' '.$email ); |
| 99 | - return ['value' => implode( ' - ', array_filter( [$author, $this->review->ip_address] ))]; |
|
| 99 | + return ['value' => implode( ' - ', array_filter( [$author, $this->review->ip_address] ) )]; |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | protected function buildContentField() |
| 106 | 106 | { |
| 107 | - return !empty( $this->review->content ) |
|
| 107 | + return !empty($this->review->content) |
|
| 108 | 108 | ? ['value' => $this->review->content] |
| 109 | 109 | : []; |
| 110 | 110 | } |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | protected function buildStarsField() |
| 130 | 130 | { |
| 131 | 131 | $solidStars = str_repeat( '★', $this->review->rating ); |
| 132 | - $emptyStars = str_repeat( '☆', max( 0, Rating::MAX_RATING - $this->review->rating )); |
|
| 132 | + $emptyStars = str_repeat( '☆', max( 0, Rating::MAX_RATING - $this->review->rating ) ); |
|
| 133 | 133 | $stars = $solidStars.$emptyStars; |
| 134 | 134 | $stars = apply_filters( 'site-reviews/slack/stars', $stars, $this->review->rating, Rating::MAX_RATING ); |
| 135 | 135 | return ['title' => $stars]; |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | */ |
| 141 | 141 | protected function buildTitleField() |
| 142 | 142 | { |
| 143 | - return !empty( $this->review->title ) |
|
| 143 | + return !empty($this->review->title) |
|
| 144 | 144 | ? ['title' => $this->review->title] |
| 145 | 145 | : []; |
| 146 | 146 | } |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | public function callbackRegisterSettings( $input ) |
| 19 | 19 | { |
| 20 | - if( !is_array( $input )) { |
|
| 20 | + if( !is_array( $input ) ) { |
|
| 21 | 21 | $input = ['settings' => []]; |
| 22 | 22 | } |
| 23 | 23 | if( key( $input ) == 'settings' ) { |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | $options = $this->sanitizeSubmissions( $input, $options ); |
| 27 | 27 | $options = $this->sanitizeTranslations( $input, $options ); |
| 28 | 28 | if( filter_input( INPUT_POST, 'option_page' ) == Application::ID.'-settings' ) { |
| 29 | - glsr( Notice::class )->addSuccess( __( 'Settings updated.', 'site-reviews' )); |
|
| 29 | + glsr( Notice::class )->addSuccess( __( 'Settings updated.', 'site-reviews' ) ); |
|
| 30 | 30 | } |
| 31 | 31 | return $options; |
| 32 | 32 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | { |
| 42 | 42 | register_setting( Application::ID.'-settings', OptionManager::databaseKey(), [ |
| 43 | 43 | 'sanitize_callback' => [$this, 'callbackRegisterSettings'], |
| 44 | - ]); |
|
| 44 | + ] ); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | /** |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | if( trim( $inputForm['notification_message'] ) == '' ) { |
| 57 | 57 | $options['settings']['general']['notification_message'] = glsr()->defaults['settings']['general']['notification_message']; |
| 58 | 58 | } |
| 59 | - $options['settings']['general']['notifications'] = isset( $inputForm['notifications'] ) |
|
| 59 | + $options['settings']['general']['notifications'] = isset($inputForm['notifications']) |
|
| 60 | 60 | ? $inputForm['notifications'] |
| 61 | 61 | : []; |
| 62 | 62 | return $options; |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | protected function sanitizeSubmissions( array $input, array $options ) |
| 69 | 69 | { |
| 70 | 70 | $inputForm = $input['settings']['submissions']; |
| 71 | - $options['settings']['submissions']['required'] = isset( $inputForm['required'] ) |
|
| 71 | + $options['settings']['submissions']['required'] = isset($inputForm['required']) |
|
| 72 | 72 | ? $inputForm['required'] |
| 73 | 73 | : []; |
| 74 | 74 | return $options; |
@@ -79,14 +79,14 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | protected function sanitizeTranslations( array $input, array $options ) |
| 81 | 81 | { |
| 82 | - if( isset( $input['settings']['strings'] )) { |
|
| 83 | - $options['settings']['strings'] = array_values( array_filter( $input['settings']['strings'] )); |
|
| 82 | + if( isset($input['settings']['strings']) ) { |
|
| 83 | + $options['settings']['strings'] = array_values( array_filter( $input['settings']['strings'] ) ); |
|
| 84 | 84 | $allowedTags = ['a' => ['class' => [], 'href' => [], 'target' => []]]; |
| 85 | - array_walk( $options['settings']['strings'], function( &$string ) use( $allowedTags ) { |
|
| 86 | - if( isset( $string['s2'] )) { |
|
| 85 | + array_walk( $options['settings']['strings'], function( &$string ) use($allowedTags) { |
|
| 86 | + if( isset($string['s2']) ) { |
|
| 87 | 87 | $string['s2'] = wp_kses( $string['s2'], $allowedTags ); |
| 88 | 88 | } |
| 89 | - if( isset( $string['p2'] )) { |
|
| 89 | + if( isset($string['p2']) ) { |
|
| 90 | 90 | $string['p2'] = wp_kses( $string['p2'], $allowedTags ); |
| 91 | 91 | } |
| 92 | 92 | }); |
@@ -100,11 +100,11 @@ discard block |
||
| 100 | 100 | protected function isPolylangActiveAndSupported() |
| 101 | 101 | { |
| 102 | 102 | if( !glsr( Polylang::class )->isActive() ) { |
| 103 | - glsr( Notice::class )->addError( __( 'Please install/activate the Polylang plugin to enable integration.', 'site-reviews' )); |
|
| 103 | + glsr( Notice::class )->addError( __( 'Please install/activate the Polylang plugin to enable integration.', 'site-reviews' ) ); |
|
| 104 | 104 | return false; |
| 105 | 105 | } |
| 106 | 106 | else if( !glsr( Polylang::class )->isSupported() ) { |
| 107 | - glsr( Notice::class )->addError( __( 'Please update the Polylang plugin to v2.3.0 or greater to enable integration.', 'site-reviews' )); |
|
| 107 | + glsr( Notice::class )->addError( __( 'Please update the Polylang plugin to v2.3.0 or greater to enable integration.', 'site-reviews' ) ); |
|
| 108 | 108 | return false; |
| 109 | 109 | } |
| 110 | 110 | return true; |