@@ -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,17 +79,17 @@ 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 = [ |
| 85 | 85 | 'a' => ['class' => [], 'href' => [], 'target' => []], |
| 86 | 86 | 'span' => ['class' => []], |
| 87 | 87 | ]; |
| 88 | - array_walk( $options['settings']['strings'], function( &$string ) use( $allowedTags ) { |
|
| 89 | - if( isset( $string['s2'] )) { |
|
| 88 | + array_walk( $options['settings']['strings'], function( &$string ) use($allowedTags) { |
|
| 89 | + if( isset($string['s2']) ) { |
|
| 90 | 90 | $string['s2'] = wp_kses( $string['s2'], $allowedTags ); |
| 91 | 91 | } |
| 92 | - if( isset( $string['p2'] )) { |
|
| 92 | + if( isset($string['p2']) ) { |
|
| 93 | 93 | $string['p2'] = wp_kses( $string['p2'], $allowedTags ); |
| 94 | 94 | } |
| 95 | 95 | }); |
@@ -103,11 +103,11 @@ discard block |
||
| 103 | 103 | protected function isPolylangActiveAndSupported() |
| 104 | 104 | { |
| 105 | 105 | if( !glsr( Polylang::class )->isActive() ) { |
| 106 | - glsr( Notice::class )->addError( __( 'Please install/activate the Polylang plugin to enable integration.', 'site-reviews' )); |
|
| 106 | + glsr( Notice::class )->addError( __( 'Please install/activate the Polylang plugin to enable integration.', 'site-reviews' ) ); |
|
| 107 | 107 | return false; |
| 108 | 108 | } |
| 109 | 109 | else if( !glsr( Polylang::class )->isSupported() ) { |
| 110 | - glsr( Notice::class )->addError( __( 'Please update the Polylang plugin to v2.3.0 or greater to enable integration.', 'site-reviews' )); |
|
| 110 | + glsr( Notice::class )->addError( __( 'Please update the Polylang plugin to v2.3.0 or greater to enable integration.', 'site-reviews' ) ); |
|
| 111 | 111 | return false; |
| 112 | 112 | } |
| 113 | 113 | return true; |