@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | // Get posted data. |
| 83 | 83 | $plugin_slug = FrmAppHelper::get_post_param( 'plugin', '', 'sanitize_text_field' ); |
| 84 | 84 | |
| 85 | - if ( ! empty( get_plugins()[ $plugin_slug ] ) ) { |
|
| 85 | + if ( ! empty( get_plugins()[$plugin_slug] ) ) { |
|
| 86 | 86 | $activate = activate_plugin( $plugin_slug ); |
| 87 | 87 | } else { |
| 88 | 88 | // Include necessary files for plugin installation. |
@@ -163,6 +163,6 @@ discard block |
||
| 163 | 163 | * @return bool |
| 164 | 164 | */ |
| 165 | 165 | private static function is_plugin_installed( $plugin_file ) { |
| 166 | - return isset( get_plugins()[ $plugin_file ] ); |
|
| 166 | + return isset( get_plugins()[$plugin_file] ); |
|
| 167 | 167 | } |
| 168 | 168 | } |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | |
| 6 | 6 | add_filter( |
| 7 | 7 | 'document_title', |
| 8 | - function ( $title ) use ( $form ) { |
|
| 8 | + function( $title ) use ( $form ) { |
|
| 9 | 9 | $form_name = '' === $form->name ? FrmFormsHelper::get_no_title_text() : $form->name; |
| 10 | 10 | return get_bloginfo( 'name', 'display' ) . ' | ' . wp_strip_all_tags( $form_name ); |
| 11 | 11 | } |
@@ -75,7 +75,7 @@ |
||
| 75 | 75 | |
| 76 | 76 | foreach ( $forms as $form ) { |
| 77 | 77 | $form_title = '' === $form->name ? FrmFormsHelper::get_no_title_text() : FrmAppHelper::truncate( $form->name, 50 ); |
| 78 | - $options[ $form->id ] = esc_html( $form_title ); |
|
| 78 | + $options[$form->id] = esc_html( $form_title ); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | return $options; |
@@ -133,15 +133,15 @@ |
||
| 133 | 133 | return; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - if ( ! isset( $flows_data[ $key ] ) ) { |
|
| 137 | - $flows_data[ $key ] = array(); |
|
| 136 | + if ( ! isset( $flows_data[$key] ) ) { |
|
| 137 | + $flows_data[$key] = array(); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - if ( ! isset( $flows_data[ $key ][ $value ] ) ) { |
|
| 141 | - $flows_data[ $key ][ $value ] = 0; |
|
| 140 | + if ( ! isset( $flows_data[$key][$value] ) ) { |
|
| 141 | + $flows_data[$key][$value] = 0; |
|
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - $flows_data[ $key ][ $value ]++; |
|
| 144 | + $flows_data[$key][$value] ++; |
|
| 145 | 145 | update_option( self::FLOWS_ACTION_NAME, $flows_data ); |
| 146 | 146 | } |
| 147 | 147 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | $contextual_shortcodes = self::get_contextual_shortcodes(); |
| 75 | 75 | $result = array(); |
| 76 | 76 | foreach ( $contextual_shortcodes as $type => $shortcodes ) { |
| 77 | - $result[ $type ] = array_keys( $shortcodes ); |
|
| 77 | + $result[$type] = array_keys( $shortcodes ); |
|
| 78 | 78 | } |
| 79 | 79 | return $result; |
| 80 | 80 | } |
@@ -113,8 +113,8 @@ discard block |
||
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | $with_tags = $args['conditional_check'] ? 3 : 2; |
| 116 | - if ( ! empty( $shortcodes[ $with_tags ][ $short_key ] ) ) { |
|
| 117 | - $tag = str_replace( '[' . $prefix, '', $shortcodes[0][ $short_key ] ); |
|
| 116 | + if ( ! empty( $shortcodes[$with_tags][$short_key] ) ) { |
|
| 117 | + $tag = str_replace( '[' . $prefix, '', $shortcodes[0][$short_key] ); |
|
| 118 | 118 | $tag = str_replace( ']', '', $tag ); |
| 119 | 119 | $tag = str_replace( chr( 194 ) . chr( 160 ), ' ', $tag ); |
| 120 | 120 | $tags = preg_split( '/\s+/', $tag, 2 ); |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | $tag = $tags[0]; |
| 123 | 123 | } |
| 124 | 124 | } else { |
| 125 | - $tag = $shortcodes[ $with_tags - 1 ][ $short_key ]; |
|
| 125 | + $tag = $shortcodes[$with_tags - 1][$short_key]; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | return $tag; |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @param array $keys |
| 39 | 39 | */ |
| 40 | - self::$keys = apply_filters( |
|
| 40 | + self::$keys = apply_filters( |
|
| 41 | 41 | 'frm_application_data_keys', |
| 42 | 42 | array( 'key', 'name', 'description', 'link', 'categories', 'views', 'forms', 'used_addons' ) |
| 43 | 43 | ); |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | self::get_template_keys_with_local_png_images(), |
| 46 | 46 | self::get_template_keys_with_local_webp_images() |
| 47 | 47 | ); |
| 48 | - self::$categories = array(); |
|
| 48 | + self::$categories = array(); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -144,20 +144,20 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | $application = array(); |
| 146 | 146 | foreach ( self::$keys as $key ) { |
| 147 | - if ( ! isset( $this->api_data[ $key ] ) ) { |
|
| 147 | + if ( ! isset( $this->api_data[$key] ) ) { |
|
| 148 | 148 | continue; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - $value = $this->api_data[ $key ]; |
|
| 151 | + $value = $this->api_data[$key]; |
|
| 152 | 152 | |
| 153 | 153 | if ( 'icon' === $key ) { |
| 154 | 154 | // Icon is an array. The first array item is the image URL. |
| 155 | - $application[ $key ] = reset( $value ); |
|
| 155 | + $application[$key] = reset( $value ); |
|
| 156 | 156 | } elseif ( 'categories' === $key ) { |
| 157 | - $application[ $key ] = array_values( |
|
| 157 | + $application[$key] = array_values( |
|
| 158 | 158 | array_filter( |
| 159 | 159 | $value, |
| 160 | - function ( $category ) { |
|
| 160 | + function( $category ) { |
|
| 161 | 161 | return false === strpos( $category, '+Views' ); |
| 162 | 162 | } |
| 163 | 163 | ) |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | // Strip off the " Template" text at the end of the name as it takes up space. |
| 174 | 174 | $value = substr( $value, 0, -9 ); |
| 175 | 175 | } |
| 176 | - $application[ $key ] = $value; |
|
| 176 | + $application[$key] = $value; |
|
| 177 | 177 | }//end if |
| 178 | 178 | }//end foreach |
| 179 | 179 | |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | 'convertkit' => 'convertkit', |
| 172 | 172 | ); |
| 173 | 173 | |
| 174 | - $icon = array_key_exists( $slug, $icons_map ) ? 'frm_' . $icons_map[ $slug ] . '_icon' : 'frm_logo_icon'; |
|
| 174 | + $icon = array_key_exists( $slug, $icons_map ) ? 'frm_' . $icons_map[$slug] . '_icon' : 'frm_logo_icon'; |
|
| 175 | 175 | if ( 'ai' === $slug ) { |
| 176 | 176 | $icon = str_replace( '_', '-', $icon ); |
| 177 | 177 | } |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | ?> |
| 272 | 272 | <span style="color: <?php echo esc_attr( $color ); ?>;"> |
| 273 | 273 | <?php |
| 274 | - for ( $i = 0; $i < 5; $i++ ) { |
|
| 274 | + for ( $i = 0; $i < 5; $i ++ ) { |
|
| 275 | 275 | echo $icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 276 | 276 | } |
| 277 | 277 | ?> |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | } |
| 50 | 50 | $errors = array(); |
| 51 | 51 | if ( false !== strpos( $args['value'], '.@' ) || ! is_email( $args['value'] ) ) { |
| 52 | - $errors[ 'field' . $args['id'] ] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' ); |
|
| 52 | + $errors['field' . $args['id']] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' ); |
|
| 53 | 53 | } |
| 54 | 54 | return $errors; |
| 55 | 55 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | public static function load_admin_hooks() { |
| 37 | 37 | add_action( |
| 38 | 38 | 'admin_init', |
| 39 | - function () { |
|
| 39 | + function() { |
|
| 40 | 40 | self::fix_addon_hooks(); |
| 41 | 41 | } |
| 42 | 42 | ); |