Version Description
- August 9th 2018 =
Features/Enhancements
- Added: Support for Pods::fields() argument keyed which when set to true will return the array for relationship fields with the IDs used as keys, #5092 (@sc0ttkclark)
- Added: pods_shortcode_output filter to allow customization of shortcode output based on shortcode attributes, #5083 (@sc0ttkclark)
Bug Fixes
- Fixed: Fix compatibility issue with Polylang & WPML when getting the current language from the edit post and edit tax pages. #5060 (JoryHogeveen)
Download this release
Release Info
Developer | sc0ttkclark |
Plugin | Pods – Custom Content Types and Fields |
Version | 2.7.9 |
Comparing to | |
See all releases |
Code changes from version 2.7.6 to 2.7.9
- classes/Pods.php +11 -6
- classes/PodsAPI.php +72 -31
- classes/PodsAdmin.php +25 -10
- classes/PodsComponents.php +3 -3
- classes/PodsData.php +20 -9
- classes/PodsForm.php +26 -22
- classes/PodsI18n.php +105 -84
- classes/PodsInit.php +6 -4
- classes/PodsMeta.php +36 -25
- classes/PodsMigrate.php +3 -4
- classes/PodsUI.php +81 -62
- classes/PodsView.php +13 -11
- classes/fields/code.php +1 -1
- classes/fields/file.php +14 -8
- classes/fields/pick.php +7 -7
- classes/fields/time.php +10 -1
- classes/fields/wysiwyg.php +2 -1
- components/Advanced-Relationships.php +5 -5
- components/Helpers.php +3 -1
- components/Migrate-Packages/Migrate-Packages.php +3 -2
- components/Roles/Roles.php +3 -1
- components/Roles/ui/edit.php +3 -4
- components/Templates/Templates.php +4 -2
- components/Templates/includes/element-view_template.php +12 -13
- components/Templates/includes/functions-view_template.php +3 -1
- deprecated/classes/Pods.php +3 -1
- deprecated/list_filters.php +3 -1
- includes/data.php +10 -6
- includes/general.php +13 -1
- includes/media.php +4 -2
- init.php +2 -2
- phpcs-report-full.txt +0 -7144
classes/Pods.php
CHANGED
@@ -788,6 +788,7 @@ class Pods implements Iterator {
|
|
788 |
'get_meta' => false,
|
789 |
'output' => null,
|
790 |
'deprecated' => false,
|
|
|
791 |
// extra data to send to field handlers.
|
792 |
'args' => array(),
|
793 |
);
|
@@ -1158,10 +1159,11 @@ class Pods implements Iterator {
|
|
1158 |
}
|
1159 |
|
1160 |
if ( isset( $this->fields[ $params->name ], $this->fields[ $params->name ]['type'] ) ) {
|
|
|
1161 |
/**
|
1162 |
* Modify value returned by field() after its retrieved, but before its validated or formatted
|
1163 |
*
|
1164 |
-
* Filter name is set dynamically with name of field: "pods_pods_field_{
|
1165 |
*
|
1166 |
* @since unknown
|
1167 |
*
|
@@ -1170,7 +1172,7 @@ class Pods implements Iterator {
|
|
1170 |
* @param array $params Params array passed to field().
|
1171 |
* @param object|Pods $this Current Pods object.
|
1172 |
*/
|
1173 |
-
$v = apply_filters(
|
1174 |
|
1175 |
if ( null !== $v ) {
|
1176 |
return $v;
|
@@ -1829,7 +1831,7 @@ class Pods implements Iterator {
|
|
1829 |
}
|
1830 |
|
1831 |
$value = PodsForm::field_method( 'pick', 'simple_value', $field, $value, $last_options, $all_fields[ $pod ], 0, true );
|
1832 |
-
} elseif ( false === $params->in_form && ! empty( $value ) && is_array( $value ) ) {
|
1833 |
$value = array_values( $value );
|
1834 |
}
|
1835 |
|
@@ -4361,7 +4363,8 @@ class Pods implements Iterator {
|
|
4361 |
}
|
4362 |
}//end if
|
4363 |
|
4364 |
-
$
|
|
|
4365 |
|
4366 |
$icon = pods_v( 'ui_icon', $this->pod_data['options'] );
|
4367 |
|
@@ -4443,7 +4446,8 @@ class Pods implements Iterator {
|
|
4443 |
}
|
4444 |
|
4445 |
// @todo Customize the Add New / Manage links to point to their correct menu items.
|
4446 |
-
$
|
|
|
4447 |
|
4448 |
// Override UI options.
|
4449 |
foreach ( $options as $option => $value ) {
|
@@ -4455,8 +4459,9 @@ class Pods implements Iterator {
|
|
4455 |
return pods_ui( $this );
|
4456 |
}//end if
|
4457 |
|
|
|
4458 |
do_action( 'pods_admin_ui_custom', $this );
|
4459 |
-
do_action(
|
4460 |
|
4461 |
return null;
|
4462 |
}
|
788 |
'get_meta' => false,
|
789 |
'output' => null,
|
790 |
'deprecated' => false,
|
791 |
+
'keyed' => false,
|
792 |
// extra data to send to field handlers.
|
793 |
'args' => array(),
|
794 |
);
|
1159 |
}
|
1160 |
|
1161 |
if ( isset( $this->fields[ $params->name ], $this->fields[ $params->name ]['type'] ) ) {
|
1162 |
+
$field_type = $this->fields[ $params->name ]['type'];
|
1163 |
/**
|
1164 |
* Modify value returned by field() after its retrieved, but before its validated or formatted
|
1165 |
*
|
1166 |
+
* Filter name is set dynamically with name of field: "pods_pods_field_{field_type}"
|
1167 |
*
|
1168 |
* @since unknown
|
1169 |
*
|
1172 |
* @param array $params Params array passed to field().
|
1173 |
* @param object|Pods $this Current Pods object.
|
1174 |
*/
|
1175 |
+
$v = apply_filters( "pods_pods_field_{$field_type}", null, $this->fields[ $params->name ], $this->row, $params, $this );
|
1176 |
|
1177 |
if ( null !== $v ) {
|
1178 |
return $v;
|
1831 |
}
|
1832 |
|
1833 |
$value = PodsForm::field_method( 'pick', 'simple_value', $field, $value, $last_options, $all_fields[ $pod ], 0, true );
|
1834 |
+
} elseif ( false === $params->in_form && ! empty( $value ) && is_array( $value ) && false === $params->keyed ) {
|
1835 |
$value = array_values( $value );
|
1836 |
}
|
1837 |
|
4363 |
}
|
4364 |
}//end if
|
4365 |
|
4366 |
+
$pod_name = $this->pod;
|
4367 |
+
$manage = apply_filters( "pods_admin_ui_fields_{$pod_name}", apply_filters( 'pods_admin_ui_fields', $manage, $this->pod, $this ), $this->pod, $this );
|
4368 |
|
4369 |
$icon = pods_v( 'ui_icon', $this->pod_data['options'] );
|
4370 |
|
4446 |
}
|
4447 |
|
4448 |
// @todo Customize the Add New / Manage links to point to their correct menu items.
|
4449 |
+
$pod_name = $this->pod;
|
4450 |
+
$ui = apply_filters( "pods_admin_ui_{$pod_name}", apply_filters( 'pods_admin_ui', $ui, $this->pod, $this ), $this->pod, $this );
|
4451 |
|
4452 |
// Override UI options.
|
4453 |
foreach ( $options as $option => $value ) {
|
4459 |
return pods_ui( $this );
|
4460 |
}//end if
|
4461 |
|
4462 |
+
$pod_name = $this->pod;
|
4463 |
do_action( 'pods_admin_ui_custom', $this );
|
4464 |
+
do_action( "pods_admin_ui_custom_{$pod_name}", $this );
|
4465 |
|
4466 |
return null;
|
4467 |
}
|
classes/PodsAPI.php
CHANGED
@@ -1697,9 +1697,12 @@ class PodsAPI {
|
|
1697 |
$params = pods_sanitize( $params );
|
1698 |
}
|
1699 |
|
1700 |
-
$old_id
|
|
|
|
|
1701 |
|
1702 |
-
$old_fields
|
|
|
1703 |
|
1704 |
if ( isset( $params->name ) && ! isset( $params->object ) ) {
|
1705 |
$params->name = pods_clean_name( $params->name );
|
@@ -2175,7 +2178,8 @@ class PodsAPI {
|
|
2175 |
$built_in[ $built_in_type ][ $built_in_object ] = (int) $val;
|
2176 |
}
|
2177 |
|
2178 |
-
$lookup_option
|
|
|
2179 |
|
2180 |
$lookup_name = $pod['name'];
|
2181 |
|
@@ -2476,7 +2480,13 @@ class PodsAPI {
|
|
2476 |
|
2477 |
unset( $params->pod_data );
|
2478 |
|
2479 |
-
$old_id
|
|
|
|
|
|
|
|
|
|
|
|
|
2480 |
|
2481 |
if ( ! empty( $field ) ) {
|
2482 |
$old_id = pods_var( 'id', $field );
|
@@ -2634,7 +2644,8 @@ class PodsAPI {
|
|
2634 |
$object_fields = (array) pods_var_raw( 'object_fields', $pod, array(), null, true );
|
2635 |
|
2636 |
if ( 0 < $old_id && defined( 'PODS_FIELD_STRICT' ) && ! PODS_FIELD_STRICT ) {
|
2637 |
-
$params->id
|
|
|
2638 |
}
|
2639 |
|
2640 |
// Add new field
|
@@ -3312,6 +3323,7 @@ class PodsAPI {
|
|
3312 |
$params->track_changed_fields = false;
|
3313 |
}
|
3314 |
|
|
|
3315 |
/**
|
3316 |
* Override $params['track_changed_fields']
|
3317 |
*
|
@@ -3321,7 +3333,7 @@ class PodsAPI {
|
|
3321 |
*
|
3322 |
* @since 2.3.19
|
3323 |
*/
|
3324 |
-
$track_changed_fields = apply_filters(
|
3325 |
|
3326 |
$changed_fields = array();
|
3327 |
|
@@ -3517,7 +3529,8 @@ class PodsAPI {
|
|
3517 |
$active_columns =& $fields_active; // @deprecated 2.0.0
|
3518 |
$params->tbl_row_id =& $params->id; // @deprecated 2.0.0
|
3519 |
|
3520 |
-
$pre_save_helpers
|
|
|
3521 |
|
3522 |
$pieces = array(
|
3523 |
'fields',
|
@@ -3601,7 +3614,11 @@ class PodsAPI {
|
|
3601 |
}
|
3602 |
}
|
3603 |
|
3604 |
-
$table_data
|
|
|
|
|
|
|
|
|
3605 |
|
3606 |
$object_type = $pod['type'];
|
3607 |
|
@@ -3613,7 +3630,9 @@ class PodsAPI {
|
|
3613 |
$object_ID = 'term_id';
|
3614 |
}
|
3615 |
|
3616 |
-
$object_data
|
|
|
|
|
3617 |
|
3618 |
if ( 'settings' === $object_type ) {
|
3619 |
$object_data['option_id'] = $pod['name'];
|
@@ -3638,13 +3657,16 @@ class PodsAPI {
|
|
3638 |
$options = pods_var( 'options', $field_data, array() );
|
3639 |
|
3640 |
// WPML AJAX compatibility
|
3641 |
-
if ( is_admin()
|
3642 |
-
( isset( $_POST['action'] ) && 'wpml_save_job_ajax' === $_POST['action'] )
|
3643 |
-
( isset( $_GET['page'] ) && false !== strpos( $_GET['page'], '/menu/languages.php' )
|
3644 |
-
|
3645 |
-
|
3646 |
) {
|
3647 |
-
$options['unique']
|
|
|
|
|
|
|
3648 |
} else {
|
3649 |
// Validate value
|
3650 |
$validate = $this->handle_field_validation( $value, $field, $object_fields, $fields, $pod, $params );
|
@@ -4341,7 +4363,8 @@ class PodsAPI {
|
|
4341 |
}
|
4342 |
}
|
4343 |
|
4344 |
-
$related_pod_id
|
|
|
4345 |
|
4346 |
if ( 'pick' === $field['type'] && isset( PodsField_Pick::$related_data[ $field['id'] ] ) && ! empty( PodsField_Pick::$related_data[ $field['id'] ]['related_field'] ) ) {
|
4347 |
$related_pod_id = PodsField_Pick::$related_data[ $field['id'] ]['related_pod']['id'];
|
@@ -5494,7 +5517,8 @@ class PodsAPI {
|
|
5494 |
$bypass_helpers = true;
|
5495 |
}
|
5496 |
|
5497 |
-
$pre_delete_helpers
|
|
|
5498 |
|
5499 |
if ( false === $bypass_helpers ) {
|
5500 |
// Plugin hook
|
@@ -5827,7 +5851,8 @@ class PodsAPI {
|
|
5827 |
|
5828 |
if ( ! empty( $params->id ) || ! empty( $params->name ) ) {
|
5829 |
if ( ! isset( $params->name ) ) {
|
5830 |
-
$
|
|
|
5831 |
} else {
|
5832 |
$pod = get_posts( array(
|
5833 |
'name' => $params->name,
|
@@ -6034,7 +6059,8 @@ class PodsAPI {
|
|
6034 |
}
|
6035 |
|
6036 |
if ( ! isset( $params->name ) ) {
|
6037 |
-
$
|
|
|
6038 |
} else {
|
6039 |
$pod = get_posts( array(
|
6040 |
'name' => $params->name,
|
@@ -6543,7 +6569,8 @@ class PodsAPI {
|
|
6543 |
|
6544 |
if ( ( ! empty( $params->id ) || ! empty( $params->name ) ) && isset( $params->pod_id ) && ! empty( $params->pod_id ) ) {
|
6545 |
if ( ! isset( $params->name ) ) {
|
6546 |
-
$
|
|
|
6547 |
} else {
|
6548 |
$field = get_posts( array(
|
6549 |
'name' => $params->name,
|
@@ -6597,7 +6624,8 @@ class PodsAPI {
|
|
6597 |
if ( isset( $params->post_title ) ) {
|
6598 |
$_field = $params;
|
6599 |
} elseif ( isset( $params->id ) && ! empty( $params->id ) ) {
|
6600 |
-
$
|
|
|
6601 |
} else {
|
6602 |
if ( ! isset( $params->pod ) ) {
|
6603 |
$params->pod = '';
|
@@ -8091,10 +8119,14 @@ class PodsAPI {
|
|
8091 |
$info['type'] = 'pod';
|
8092 |
global $wpdb;
|
8093 |
|
8094 |
-
$info['
|
|
|
8095 |
|
8096 |
if ( is_array( $info['pod'] ) && 'pod' === pods_v( 'type', $info['pod'] ) ) {
|
8097 |
-
$info['
|
|
|
|
|
|
|
8098 |
|
8099 |
$slug_field = get_posts( array(
|
8100 |
'post_type' => '_pods_field',
|
@@ -8114,7 +8146,8 @@ class PodsAPI {
|
|
8114 |
if ( ! empty( $slug_field[0] ) ) {
|
8115 |
$slug_field = $slug_field[0];
|
8116 |
|
8117 |
-
$info['
|
|
|
8118 |
}
|
8119 |
|
8120 |
if ( 1 == pods_v( 'hierarchical', $info['pod']['options'], 0 ) ) {
|
@@ -8123,7 +8156,8 @@ class PodsAPI {
|
|
8123 |
if ( ! empty( $parent_field ) && isset( $info['pod']['fields'][ $parent_field ] ) ) {
|
8124 |
$info['object_hierarchical'] = true;
|
8125 |
|
8126 |
-
$info['
|
|
|
8127 |
$info['field_parent_select'] = '`' . $parent_field . '`.`id` AS `' . $info['field_parent'] . '`';
|
8128 |
}
|
8129 |
}
|
@@ -8221,8 +8255,9 @@ class PodsAPI {
|
|
8221 |
|
8222 |
$transient = 'pods_' . $wpdb->prefix . '_get_table_info_' . md5( $object_type . '_object_' . $object . '_name_' . $name . '_pod_' . $pod_name . '_field_' . $field_name );
|
8223 |
|
8224 |
-
$current_language
|
8225 |
-
$current_language_t_id
|
|
|
8226 |
|
8227 |
// Get current language data
|
8228 |
$lang_data = PodsInit::$i18n->get_current_language_data();
|
@@ -8399,12 +8434,16 @@ class PodsAPI {
|
|
8399 |
'nav_menu',
|
8400 |
'post_format'
|
8401 |
) ) || 'taxonomy' === pods_var_raw( 'type', $info['pod'] ) ) {
|
8402 |
-
$info['table']
|
|
|
8403 |
|
8404 |
$info['join']['tt'] = "LEFT JOIN `{$wpdb->term_taxonomy}` AS `tt` ON `tt`.`term_id` = `t`.`term_id`";
|
8405 |
$info['join']['tr'] = "LEFT JOIN `{$wpdb->term_relationships}` AS `tr` ON `tr`.`term_taxonomy_id` = `tt`.`term_taxonomy_id`";
|
8406 |
-
$info['
|
8407 |
-
$info['
|
|
|
|
|
|
|
8408 |
$info['field_slug'] = 'slug';
|
8409 |
$info['field_type'] = 'taxonomy';
|
8410 |
$info['field_parent'] = 'parent';
|
@@ -8597,7 +8636,9 @@ class PodsAPI {
|
|
8597 |
if ( ! empty( $field ) && is_array( $field ) ) {
|
8598 |
$info['table'] = pods_var_raw( 'pick_table', pods_var_raw( 'options', $field, $field ) );
|
8599 |
$info['field_id'] = pods_var_raw( 'pick_table_id', pods_var_raw( 'options', $field, $field ) );
|
8600 |
-
$info['
|
|
|
|
|
8601 |
}
|
8602 |
}
|
8603 |
|
1697 |
$params = pods_sanitize( $params );
|
1698 |
}
|
1699 |
|
1700 |
+
$old_id = null;
|
1701 |
+
$old_name = null;
|
1702 |
+
$old_storage = null;
|
1703 |
|
1704 |
+
$old_fields = array();
|
1705 |
+
$old_options = array();
|
1706 |
|
1707 |
if ( isset( $params->name ) && ! isset( $params->object ) ) {
|
1708 |
$params->name = pods_clean_name( $params->name );
|
2178 |
$built_in[ $built_in_type ][ $built_in_object ] = (int) $val;
|
2179 |
}
|
2180 |
|
2181 |
+
$lookup_option = false;
|
2182 |
+
$lookup_built_in = false;
|
2183 |
|
2184 |
$lookup_name = $pod['name'];
|
2185 |
|
2480 |
|
2481 |
unset( $params->pod_data );
|
2482 |
|
2483 |
+
$old_id = null;
|
2484 |
+
$old_name = null;
|
2485 |
+
$old_type = null;
|
2486 |
+
$old_definition = null;
|
2487 |
+
$old_simple = null;
|
2488 |
+
$old_options = null;
|
2489 |
+
$old_sister_id = null;
|
2490 |
|
2491 |
if ( ! empty( $field ) ) {
|
2492 |
$old_id = pods_var( 'id', $field );
|
2644 |
$object_fields = (array) pods_var_raw( 'object_fields', $pod, array(), null, true );
|
2645 |
|
2646 |
if ( 0 < $old_id && defined( 'PODS_FIELD_STRICT' ) && ! PODS_FIELD_STRICT ) {
|
2647 |
+
$params->id = $old_id;
|
2648 |
+
$field['id'] = $old_id;
|
2649 |
}
|
2650 |
|
2651 |
// Add new field
|
3323 |
$params->track_changed_fields = false;
|
3324 |
}
|
3325 |
|
3326 |
+
$pod_name = $params->pod;
|
3327 |
/**
|
3328 |
* Override $params['track_changed_fields']
|
3329 |
*
|
3333 |
*
|
3334 |
* @since 2.3.19
|
3335 |
*/
|
3336 |
+
$track_changed_fields = apply_filters( "pods_api_save_pod_item_track_changed_fields_{$pod_name}", (boolean) $params->track_changed_fields, $params );
|
3337 |
|
3338 |
$changed_fields = array();
|
3339 |
|
3529 |
$active_columns =& $fields_active; // @deprecated 2.0.0
|
3530 |
$params->tbl_row_id =& $params->id; // @deprecated 2.0.0
|
3531 |
|
3532 |
+
$pre_save_helpers = array();
|
3533 |
+
$post_save_helpers = array();
|
3534 |
|
3535 |
$pieces = array(
|
3536 |
'fields',
|
3614 |
}
|
3615 |
}
|
3616 |
|
3617 |
+
$table_data = array();
|
3618 |
+
$table_formats = array();
|
3619 |
+
$update_values = array();
|
3620 |
+
$rel_fields = array();
|
3621 |
+
$rel_field_ids = array();
|
3622 |
|
3623 |
$object_type = $pod['type'];
|
3624 |
|
3630 |
$object_ID = 'term_id';
|
3631 |
}
|
3632 |
|
3633 |
+
$object_data = array();
|
3634 |
+
$object_meta = array();
|
3635 |
+
$post_term_data = array();
|
3636 |
|
3637 |
if ( 'settings' === $object_type ) {
|
3638 |
$object_data['option_id'] = $pod['name'];
|
3657 |
$options = pods_var( 'options', $field_data, array() );
|
3658 |
|
3659 |
// WPML AJAX compatibility
|
3660 |
+
if ( is_admin()
|
3661 |
+
&& ( isset( $_POST['action'] ) && 'wpml_save_job_ajax' === $_POST['action'] )
|
3662 |
+
|| ( isset( $_GET['page'] ) && false !== strpos( $_GET['page'], '/menu/languages.php' )
|
3663 |
+
&& isset( $_POST['icl_ajx_action'] ) && isset( $_POST['_icl_nonce'] )
|
3664 |
+
&& wp_verify_nonce( $_POST['_icl_nonce'], $_POST['icl_ajx_action'] . '_nonce' ) )
|
3665 |
) {
|
3666 |
+
$options['unique'] = 0;
|
3667 |
+
$fields[ $field ]['options']['unique'] = 0;
|
3668 |
+
$options['required'] = 0;
|
3669 |
+
$fields[ $field ]['options']['required'] = 0;
|
3670 |
} else {
|
3671 |
// Validate value
|
3672 |
$validate = $this->handle_field_validation( $value, $field, $object_fields, $fields, $pod, $params );
|
4363 |
}
|
4364 |
}
|
4365 |
|
4366 |
+
$related_pod_id = 0;
|
4367 |
+
$related_field_id = 0;
|
4368 |
|
4369 |
if ( 'pick' === $field['type'] && isset( PodsField_Pick::$related_data[ $field['id'] ] ) && ! empty( PodsField_Pick::$related_data[ $field['id'] ]['related_field'] ) ) {
|
4370 |
$related_pod_id = PodsField_Pick::$related_data[ $field['id'] ]['related_pod']['id'];
|
5517 |
$bypass_helpers = true;
|
5518 |
}
|
5519 |
|
5520 |
+
$pre_delete_helpers = array();
|
5521 |
+
$post_delete_helpers = array();
|
5522 |
|
5523 |
if ( false === $bypass_helpers ) {
|
5524 |
// Plugin hook
|
5851 |
|
5852 |
if ( ! empty( $params->id ) || ! empty( $params->name ) ) {
|
5853 |
if ( ! isset( $params->name ) ) {
|
5854 |
+
$dummy = (int) $params->id;
|
5855 |
+
$pod = get_post( $dummy );
|
5856 |
} else {
|
5857 |
$pod = get_posts( array(
|
5858 |
'name' => $params->name,
|
6059 |
}
|
6060 |
|
6061 |
if ( ! isset( $params->name ) ) {
|
6062 |
+
$dummy = (int) $params->id;
|
6063 |
+
$pod = get_post( $dummy );
|
6064 |
} else {
|
6065 |
$pod = get_posts( array(
|
6066 |
'name' => $params->name,
|
6569 |
|
6570 |
if ( ( ! empty( $params->id ) || ! empty( $params->name ) ) && isset( $params->pod_id ) && ! empty( $params->pod_id ) ) {
|
6571 |
if ( ! isset( $params->name ) ) {
|
6572 |
+
$dummy = (int) $params->id;
|
6573 |
+
$field = get_post( $dummy );
|
6574 |
} else {
|
6575 |
$field = get_posts( array(
|
6576 |
'name' => $params->name,
|
6624 |
if ( isset( $params->post_title ) ) {
|
6625 |
$_field = $params;
|
6626 |
} elseif ( isset( $params->id ) && ! empty( $params->id ) ) {
|
6627 |
+
$dummy = (int) $params->id;
|
6628 |
+
$_field = get_post( $dummy );
|
6629 |
} else {
|
6630 |
if ( ! isset( $params->pod ) ) {
|
6631 |
$params->pod = '';
|
8119 |
$info['type'] = 'pod';
|
8120 |
global $wpdb;
|
8121 |
|
8122 |
+
$info['meta_table'] = $wpdb->prefix . 'pods_' . ( empty( $object ) ? $name : $object );
|
8123 |
+
$info['table'] = $info['meta_table'];
|
8124 |
|
8125 |
if ( is_array( $info['pod'] ) && 'pod' === pods_v( 'type', $info['pod'] ) ) {
|
8126 |
+
$info['meta_field_value'] = pods_v( 'pod_index', $info['pod']['options'], 'id', true );
|
8127 |
+
$info['pod_field_index'] = $info['meta_field_value'];
|
8128 |
+
$info['field_index'] = $info['meta_field_value'];
|
8129 |
+
$info['meta_field_index'] = $info['meta_field_value'];
|
8130 |
|
8131 |
$slug_field = get_posts( array(
|
8132 |
'post_type' => '_pods_field',
|
8146 |
if ( ! empty( $slug_field[0] ) ) {
|
8147 |
$slug_field = $slug_field[0];
|
8148 |
|
8149 |
+
$info['pod_field_slug'] = $slug_field->post_name;
|
8150 |
+
$info['field_slug'] = $slug_field->post_name;
|
8151 |
}
|
8152 |
|
8153 |
if ( 1 == pods_v( 'hierarchical', $info['pod']['options'], 0 ) ) {
|
8156 |
if ( ! empty( $parent_field ) && isset( $info['pod']['fields'][ $parent_field ] ) ) {
|
8157 |
$info['object_hierarchical'] = true;
|
8158 |
|
8159 |
+
$info['field_parent'] = $parent_field . '_select';
|
8160 |
+
$info['pod_field_parent'] = $info['field_parent'];
|
8161 |
$info['field_parent_select'] = '`' . $parent_field . '`.`id` AS `' . $info['field_parent'] . '`';
|
8162 |
}
|
8163 |
}
|
8255 |
|
8256 |
$transient = 'pods_' . $wpdb->prefix . '_get_table_info_' . md5( $object_type . '_object_' . $object . '_name_' . $name . '_pod_' . $pod_name . '_field_' . $field_name );
|
8257 |
|
8258 |
+
$current_language = false;
|
8259 |
+
$current_language_t_id = 0;
|
8260 |
+
$current_language_tt_id = 0;
|
8261 |
|
8262 |
// Get current language data
|
8263 |
$lang_data = PodsInit::$i18n->get_current_language_data();
|
8434 |
'nav_menu',
|
8435 |
'post_format'
|
8436 |
) ) || 'taxonomy' === pods_var_raw( 'type', $info['pod'] ) ) {
|
8437 |
+
$info['table'] = $wpdb->terms;
|
8438 |
+
$info['meta_table'] = $wpdb->terms;
|
8439 |
|
8440 |
$info['join']['tt'] = "LEFT JOIN `{$wpdb->term_taxonomy}` AS `tt` ON `tt`.`term_id` = `t`.`term_id`";
|
8441 |
$info['join']['tr'] = "LEFT JOIN `{$wpdb->term_relationships}` AS `tr` ON `tr`.`term_taxonomy_id` = `tt`.`term_taxonomy_id`";
|
8442 |
+
$info['meta_field_id'] = 'term_id';
|
8443 |
+
$info['field_id'] = 'term_id';
|
8444 |
+
$info['meta_field_value'] = 'name';
|
8445 |
+
$info['field_index'] = 'name';
|
8446 |
+
$info['meta_field_index'] = 'name';
|
8447 |
$info['field_slug'] = 'slug';
|
8448 |
$info['field_type'] = 'taxonomy';
|
8449 |
$info['field_parent'] = 'parent';
|
8636 |
if ( ! empty( $field ) && is_array( $field ) ) {
|
8637 |
$info['table'] = pods_var_raw( 'pick_table', pods_var_raw( 'options', $field, $field ) );
|
8638 |
$info['field_id'] = pods_var_raw( 'pick_table_id', pods_var_raw( 'options', $field, $field ) );
|
8639 |
+
$info['meta_field_value'] = pods_var_raw( 'pick_table_index', pods_var_raw( 'options', $field, $field ) );
|
8640 |
+
$info['field_index'] = $info['meta_field_value'];
|
8641 |
+
$info['meta_field_index'] = $info['meta_field_value'];
|
8642 |
}
|
8643 |
}
|
8644 |
|
classes/PodsAdmin.php
CHANGED
@@ -214,7 +214,9 @@ class PodsAdmin {
|
|
214 |
continue;
|
215 |
}
|
216 |
|
217 |
-
$
|
|
|
|
|
218 |
$pod = apply_filters( 'pods_advanced_content_type_pod_data', $pod, $pod['name'] );
|
219 |
|
220 |
if ( 1 === (int) pods_v( 'show_in_menu', $pod['options'], 0 ) ) {
|
@@ -789,15 +791,18 @@ class PodsAdmin {
|
|
789 |
'actions_disabled' => $actions_disabled,
|
790 |
);
|
791 |
|
792 |
-
$
|
|
|
|
|
793 |
|
794 |
// Force disabled actions, do not pass go, do not collect $two_hundred
|
795 |
$ui['actions_disabled'] = $actions_disabled;
|
796 |
|
797 |
pods_ui( $ui );
|
798 |
} else {
|
|
|
799 |
do_action( 'pods_admin_ui_custom', $pod );
|
800 |
-
do_action(
|
801 |
}//end if
|
802 |
}
|
803 |
|
@@ -1146,6 +1151,9 @@ class PodsAdmin {
|
|
1146 |
|
1147 |
$addtl_args = compact( array( 'fields', 'labels', 'admin_ui', 'advanced' ) );
|
1148 |
|
|
|
|
|
|
|
1149 |
/**
|
1150 |
* Add or modify tabs in Pods editor for a specific Pod
|
1151 |
*
|
@@ -1155,12 +1163,12 @@ class PodsAdmin {
|
|
1155 |
*
|
1156 |
* @since unknown
|
1157 |
*/
|
1158 |
-
$tabs = apply_filters(
|
1159 |
|
1160 |
/**
|
1161 |
* Add or modify tabs for any Pod in Pods editor of a specific post type.
|
1162 |
*/
|
1163 |
-
$tabs = apply_filters(
|
1164 |
|
1165 |
/**
|
1166 |
* Add or modify tabs in Pods editor for all pods.
|
@@ -1611,6 +1619,8 @@ class PodsAdmin {
|
|
1611 |
),
|
1612 |
);
|
1613 |
|
|
|
|
|
1614 |
$options['advanced'] = array(
|
1615 |
'public' => array(
|
1616 |
'label' => __( 'Public', 'pods' ),
|
@@ -1754,7 +1764,7 @@ class PodsAdmin {
|
|
1754 |
'help' => __( 'help', 'pods' ),
|
1755 |
'type' => 'pick',
|
1756 |
'pick_object' => 'post-status',
|
1757 |
-
'default' => apply_filters(
|
1758 |
),
|
1759 |
);
|
1760 |
} elseif ( 'taxonomy' === $pod['type'] ) {
|
@@ -2202,6 +2212,9 @@ class PodsAdmin {
|
|
2202 |
);
|
2203 |
}//end if
|
2204 |
|
|
|
|
|
|
|
2205 |
/**
|
2206 |
* Add admin fields to the Pods editor for a specific Pod
|
2207 |
*
|
@@ -2210,7 +2223,7 @@ class PodsAdmin {
|
|
2210 |
*
|
2211 |
* @since unkown
|
2212 |
*/
|
2213 |
-
$options = apply_filters(
|
2214 |
|
2215 |
/**
|
2216 |
* Add admin fields to the Pods editor for any Pod of a specific content type.
|
@@ -2218,7 +2231,7 @@ class PodsAdmin {
|
|
2218 |
* @param array $options The Options fields.
|
2219 |
* @param object $pod Current Pods object.
|
2220 |
*/
|
2221 |
-
$options = apply_filters(
|
2222 |
|
2223 |
/**
|
2224 |
* Add admin fields to the Pods editor for all Pods
|
@@ -2315,7 +2328,7 @@ class PodsAdmin {
|
|
2315 |
* @param array $options Tabs, indexed by label,
|
2316 |
* @param object|Pods $pod Pods object for the Pod this UI is for.
|
2317 |
*/
|
2318 |
-
$options['additional-field'][ $type ] = apply_filters(
|
2319 |
$options['additional-field'][ $type ] = apply_filters( 'pods_admin_setup_edit_additional_field_options', $options['additional-field'][ $type ], $type, $options, $pod );
|
2320 |
}//end foreach
|
2321 |
|
@@ -3209,7 +3222,9 @@ class PodsAdmin {
|
|
3209 |
|
3210 |
$params->method = $method->name;
|
3211 |
|
3212 |
-
$
|
|
|
|
|
3213 |
|
3214 |
$api = pods_api();
|
3215 |
|
214 |
continue;
|
215 |
}
|
216 |
|
217 |
+
$pod_name = $pod['name'];
|
218 |
+
|
219 |
+
$pod = apply_filters( "pods_advanced_content_type_pod_data_{$pod_name}", $pod, $pod['name'] );
|
220 |
$pod = apply_filters( 'pods_advanced_content_type_pod_data', $pod, $pod['name'] );
|
221 |
|
222 |
if ( 1 === (int) pods_v( 'show_in_menu', $pod['options'], 0 ) ) {
|
791 |
'actions_disabled' => $actions_disabled,
|
792 |
);
|
793 |
|
794 |
+
$pod_pod_name = $pod->pod;
|
795 |
+
|
796 |
+
$ui = apply_filters( "pods_admin_ui_{$pod_pod_name}", apply_filters( 'pods_admin_ui', $ui, $pod->pod, $pod ), $pod->pod, $pod );
|
797 |
|
798 |
// Force disabled actions, do not pass go, do not collect $two_hundred
|
799 |
$ui['actions_disabled'] = $actions_disabled;
|
800 |
|
801 |
pods_ui( $ui );
|
802 |
} else {
|
803 |
+
$pod_pod_name = $pod->pod;
|
804 |
do_action( 'pods_admin_ui_custom', $pod );
|
805 |
+
do_action( "pods_admin_ui_custom_{$pod_pod_name}", $pod );
|
806 |
}//end if
|
807 |
}
|
808 |
|
1151 |
|
1152 |
$addtl_args = compact( array( 'fields', 'labels', 'admin_ui', 'advanced' ) );
|
1153 |
|
1154 |
+
$pod_type = $pod['type'];
|
1155 |
+
$pod_name = $pod['name'];
|
1156 |
+
|
1157 |
/**
|
1158 |
* Add or modify tabs in Pods editor for a specific Pod
|
1159 |
*
|
1163 |
*
|
1164 |
* @since unknown
|
1165 |
*/
|
1166 |
+
$tabs = apply_filters( "pods_admin_setup_edit_tabs_{$pod_type}_{$pod_name}", $tabs, $pod, $addtl_args );
|
1167 |
|
1168 |
/**
|
1169 |
* Add or modify tabs for any Pod in Pods editor of a specific post type.
|
1170 |
*/
|
1171 |
+
$tabs = apply_filters( "pods_admin_setup_edit_tabs_{$pod_type}", $tabs, $pod, $addtl_args );
|
1172 |
|
1173 |
/**
|
1174 |
* Add or modify tabs in Pods editor for all pods.
|
1619 |
),
|
1620 |
);
|
1621 |
|
1622 |
+
$post_type_name = pods_v( 'name', $pod, 'post_type', true );
|
1623 |
+
|
1624 |
$options['advanced'] = array(
|
1625 |
'public' => array(
|
1626 |
'label' => __( 'Public', 'pods' ),
|
1764 |
'help' => __( 'help', 'pods' ),
|
1765 |
'type' => 'pick',
|
1766 |
'pick_object' => 'post-status',
|
1767 |
+
'default' => apply_filters( "pods_api_default_status_{$post_type_name}", 'draft', $pod ),
|
1768 |
),
|
1769 |
);
|
1770 |
} elseif ( 'taxonomy' === $pod['type'] ) {
|
2212 |
);
|
2213 |
}//end if
|
2214 |
|
2215 |
+
$pod_type = $pod['type'];
|
2216 |
+
$pod_name = $pod['name'];
|
2217 |
+
|
2218 |
/**
|
2219 |
* Add admin fields to the Pods editor for a specific Pod
|
2220 |
*
|
2223 |
*
|
2224 |
* @since unkown
|
2225 |
*/
|
2226 |
+
$options = apply_filters( "pods_admin_setup_edit_options_{$pod_type}_{$pod_name}", $options, $pod );
|
2227 |
|
2228 |
/**
|
2229 |
* Add admin fields to the Pods editor for any Pod of a specific content type.
|
2231 |
* @param array $options The Options fields.
|
2232 |
* @param object $pod Current Pods object.
|
2233 |
*/
|
2234 |
+
$options = apply_filters( "pods_admin_setup_edit_options_{$pod_type}", $options, $pod );
|
2235 |
|
2236 |
/**
|
2237 |
* Add admin fields to the Pods editor for all Pods
|
2328 |
* @param array $options Tabs, indexed by label,
|
2329 |
* @param object|Pods $pod Pods object for the Pod this UI is for.
|
2330 |
*/
|
2331 |
+
$options['additional-field'][ $type ] = apply_filters( "pods_admin_setup_edit_{$type}_additional_field_options", $options['additional-field'][ $type ], $type, $options, $pod );
|
2332 |
$options['additional-field'][ $type ] = apply_filters( 'pods_admin_setup_edit_additional_field_options', $options['additional-field'][ $type ], $type, $options, $pod );
|
2333 |
}//end foreach
|
2334 |
|
3222 |
|
3223 |
$params->method = $method->name;
|
3224 |
|
3225 |
+
$method_name = $method->name;
|
3226 |
+
|
3227 |
+
$params = apply_filters( "pods_api_{$method_name}", $params, $method );
|
3228 |
|
3229 |
$api = pods_api();
|
3230 |
|
classes/PodsComponents.php
CHANGED
@@ -111,7 +111,7 @@ class PodsComponents {
|
|
111 |
foreach ( $this->components as $component => $component_data ) {
|
112 |
$component_id = $component_data['ID'];
|
113 |
|
114 |
-
$component_data['MustUse'] = apply_filters(
|
115 |
|
116 |
if ( empty( $component_data['MustUse'] ) && ( ! isset( $this->settings['components'][ $component ] ) || 0 === $this->settings['components'][ $component ] ) ) {
|
117 |
continue;
|
@@ -254,7 +254,7 @@ class PodsComponents {
|
|
254 |
foreach ( (array) $this->components as $component => $component_data ) {
|
255 |
$component_id = $component_data['ID'];
|
256 |
|
257 |
-
$component_data['MustUse'] = apply_filters(
|
258 |
|
259 |
if ( false === $component_data['MustUse'] && ( ! isset( $this->settings['components'][ $component ] ) || 0 === $this->settings['components'][ $component ] ) ) {
|
260 |
continue;
|
@@ -760,7 +760,7 @@ class PodsComponents {
|
|
760 |
// Cleaning up $params
|
761 |
unset( $params->action, $params->component, $params->method, $params->_wpnonce );
|
762 |
|
763 |
-
$params = (object) apply_filters(
|
764 |
|
765 |
$output = false;
|
766 |
|
111 |
foreach ( $this->components as $component => $component_data ) {
|
112 |
$component_id = $component_data['ID'];
|
113 |
|
114 |
+
$component_data['MustUse'] = apply_filters( "pods_component_require_{$component_id}", $component_data['MustUse'], $component_data );
|
115 |
|
116 |
if ( empty( $component_data['MustUse'] ) && ( ! isset( $this->settings['components'][ $component ] ) || 0 === $this->settings['components'][ $component ] ) ) {
|
117 |
continue;
|
254 |
foreach ( (array) $this->components as $component => $component_data ) {
|
255 |
$component_id = $component_data['ID'];
|
256 |
|
257 |
+
$component_data['MustUse'] = apply_filters( "pods_component_require_{$component_id}", $component_data['MustUse'], $component_data );
|
258 |
|
259 |
if ( false === $component_data['MustUse'] && ( ! isset( $this->settings['components'][ $component ] ) || 0 === $this->settings['components'][ $component ] ) ) {
|
260 |
continue;
|
760 |
// Cleaning up $params
|
761 |
unset( $params->action, $params->component, $params->method, $params->_wpnonce );
|
762 |
|
763 |
+
$params = (object) apply_filters( "pods_component_ajax_{$component}_{$method}", $params, $component, $method );
|
764 |
|
765 |
$output = false;
|
766 |
|
classes/PodsData.php
CHANGED
@@ -638,11 +638,13 @@ class PodsData {
|
|
638 |
}
|
639 |
|
640 |
$wheres = array();
|
641 |
-
$
|
|
|
642 |
|
643 |
foreach ( (array) array_keys( $where ) as $field ) {
|
644 |
if ( ! empty( $where_format ) ) {
|
645 |
-
$form =
|
|
|
646 |
} elseif ( isset( self::$field_types[ $field ] ) ) {
|
647 |
$form = self::$field_types[ $field ];
|
648 |
} elseif ( isset( $wpdb->field_types[ $field ] ) ) {
|
@@ -678,7 +680,8 @@ class PodsData {
|
|
678 |
|
679 |
global $wpdb;
|
680 |
|
681 |
-
$cache_key =
|
|
|
682 |
|
683 |
/**
|
684 |
* Filter select parameters before the query
|
@@ -1103,7 +1106,8 @@ class PodsData {
|
|
1103 |
// Search.
|
1104 |
if ( ! empty( $params->search ) && ! empty( $params->fields ) ) {
|
1105 |
if ( false !== $params->search_query && 0 < strlen( $params->search_query ) ) {
|
1106 |
-
$where
|
|
|
1107 |
|
1108 |
if ( false !== $params->search_across ) {
|
1109 |
foreach ( $params->fields as $key => $field ) {
|
@@ -1222,7 +1226,8 @@ class PodsData {
|
|
1222 |
|
1223 |
// Filter.
|
1224 |
foreach ( $params->filters as $filter ) {
|
1225 |
-
$where
|
|
|
1226 |
|
1227 |
if ( ! isset( $params->fields[ $filter ] ) ) {
|
1228 |
continue;
|
@@ -1376,13 +1381,17 @@ class PodsData {
|
|
1376 |
|
1377 |
preg_match_all( '/`?[\w\-]+`?(?:\\.`?[\w\-]+`?)+(?=[^"\']*(?:"[^"]*"[^"]*|\'[^\']*\'[^\']*)*$)/', $haystack, $found, PREG_PATTERN_ORDER );
|
1378 |
|
1379 |
-
$found
|
1380 |
-
$find
|
|
|
|
|
1381 |
|
1382 |
foreach ( $found as $key => $value ) {
|
1383 |
$value = str_replace( '`', '', $value );
|
1384 |
$value = explode( '.', $value );
|
1385 |
-
|
|
|
|
|
1386 |
|
1387 |
if ( 't' === $value[0] ) {
|
1388 |
continue;
|
@@ -2058,7 +2067,9 @@ class PodsData {
|
|
2058 |
$filter = 'raw';
|
2059 |
$term = $id;
|
2060 |
|
2061 |
-
|
|
|
|
|
2062 |
$_term = $wpdb->get_row( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND {$term_where} LIMIT 1", $taxonomy, $term ) );
|
2063 |
|
2064 |
if ( $_term ) {
|
638 |
}
|
639 |
|
640 |
$wheres = array();
|
641 |
+
$where_format = (array) $where_format;
|
642 |
+
$where_formats = $where_format;
|
643 |
|
644 |
foreach ( (array) array_keys( $where ) as $field ) {
|
645 |
if ( ! empty( $where_format ) ) {
|
646 |
+
$form = array_shift( $where_formats );
|
647 |
+
$form = $form ? $form : $where_format[0];
|
648 |
} elseif ( isset( self::$field_types[ $field ] ) ) {
|
649 |
$form = self::$field_types[ $field ];
|
650 |
} elseif ( isset( $wpdb->field_types[ $field ] ) ) {
|
680 |
|
681 |
global $wpdb;
|
682 |
|
683 |
+
$cache_key = false;
|
684 |
+
$results = false;
|
685 |
|
686 |
/**
|
687 |
* Filter select parameters before the query
|
1106 |
// Search.
|
1107 |
if ( ! empty( $params->search ) && ! empty( $params->fields ) ) {
|
1108 |
if ( false !== $params->search_query && 0 < strlen( $params->search_query ) ) {
|
1109 |
+
$where = array();
|
1110 |
+
$having = array();
|
1111 |
|
1112 |
if ( false !== $params->search_across ) {
|
1113 |
foreach ( $params->fields as $key => $field ) {
|
1226 |
|
1227 |
// Filter.
|
1228 |
foreach ( $params->filters as $filter ) {
|
1229 |
+
$where = array();
|
1230 |
+
$having = array();
|
1231 |
|
1232 |
if ( ! isset( $params->fields[ $filter ] ) ) {
|
1233 |
continue;
|
1381 |
|
1382 |
preg_match_all( '/`?[\w\-]+`?(?:\\.`?[\w\-]+`?)+(?=[^"\']*(?:"[^"]*"[^"]*|\'[^\']*\'[^\']*)*$)/', $haystack, $found, PREG_PATTERN_ORDER );
|
1383 |
|
1384 |
+
$found = (array) @current( $found );
|
1385 |
+
$find = array();
|
1386 |
+
$replace = array();
|
1387 |
+
$traverse = array();
|
1388 |
|
1389 |
foreach ( $found as $key => $value ) {
|
1390 |
$value = str_replace( '`', '', $value );
|
1391 |
$value = explode( '.', $value );
|
1392 |
+
|
1393 |
+
$last_value = array_pop( $value );
|
1394 |
+
$dot = $last_value;
|
1395 |
|
1396 |
if ( 't' === $value[0] ) {
|
1397 |
continue;
|
2067 |
$filter = 'raw';
|
2068 |
$term = $id;
|
2069 |
|
2070 |
+
$_term = wp_cache_get( $term, $taxonomy );
|
2071 |
+
|
2072 |
+
if ( 'id' !== $mode || ! $_term ) {
|
2073 |
$_term = $wpdb->get_row( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND {$term_where} LIMIT 1", $taxonomy, $term ) );
|
2074 |
|
2075 |
if ( $_term ) {
|
classes/PodsForm.php
CHANGED
@@ -129,7 +129,7 @@ class PodsForm {
|
|
129 |
|
130 |
$output = ob_get_clean();
|
131 |
|
132 |
-
return apply_filters(
|
133 |
}
|
134 |
|
135 |
/**
|
@@ -168,7 +168,7 @@ class PodsForm {
|
|
168 |
|
169 |
$output = ob_get_clean();
|
170 |
|
171 |
-
return apply_filters(
|
172 |
}
|
173 |
|
174 |
/**
|
@@ -201,7 +201,7 @@ class PodsForm {
|
|
201 |
}
|
202 |
|
203 |
$options = self::options( $type, $options );
|
204 |
-
$options = apply_filters(
|
205 |
|
206 |
if ( null === $value || ( '' === $value && 'boolean' === $type ) || ( ! empty( $pod ) && empty( $id ) ) ) {
|
207 |
$value = self::default_value( $value, $type, $name, $options, $pod, $id );
|
@@ -216,7 +216,7 @@ class PodsForm {
|
|
216 |
return false;
|
217 |
}
|
218 |
|
219 |
-
$value = apply_filters(
|
220 |
$form_field_type = self::$field_type;
|
221 |
|
222 |
ob_start();
|
@@ -236,7 +236,8 @@ class PodsForm {
|
|
236 |
|
237 |
// @todo Move into DFV field method or PodsObject later
|
238 |
if ( ( ! isset( $options['data'] ) || empty( $options['data'] ) ) && is_object( self::$loaded[ $type ] ) && method_exists( self::$loaded[ $type ], 'data' ) ) {
|
239 |
-
$
|
|
|
240 |
}
|
241 |
|
242 |
/**
|
@@ -246,7 +247,7 @@ class PodsForm {
|
|
246 |
*
|
247 |
* @deprecated 2.7.0
|
248 |
*/
|
249 |
-
if ( true === apply_filters(
|
250 |
/**
|
251 |
* pods_form_ui_field_{$type} action leaves too much to be done by developer.
|
252 |
*
|
@@ -254,7 +255,7 @@ class PodsForm {
|
|
254 |
*
|
255 |
* @deprecated 2.7.0
|
256 |
*/
|
257 |
-
do_action(
|
258 |
} elseif ( ! empty( $helper ) && 0 < strlen( pods_v( 'code', $helper ) ) && false === strpos( $helper['code'], '$this->' ) && ( ! defined( 'PODS_DISABLE_EVAL' ) || ! PODS_DISABLE_EVAL ) ) {
|
259 |
/**
|
260 |
* Input helpers are deprecated and not guaranteed to work properly.
|
@@ -277,7 +278,7 @@ class PodsForm {
|
|
277 |
*
|
278 |
* @deprecated 2.7.0
|
279 |
*/
|
280 |
-
do_action(
|
281 |
}//end if
|
282 |
|
283 |
$output = ob_get_clean();
|
@@ -287,7 +288,7 @@ class PodsForm {
|
|
287 |
*
|
288 |
* It is not intended for replacing but augmenting input markup.
|
289 |
*/
|
290 |
-
return apply_filters(
|
291 |
}
|
292 |
|
293 |
/**
|
@@ -468,7 +469,7 @@ class PodsForm {
|
|
468 |
*/
|
469 |
public static function attributes( $attributes, $name = null, $type = null, $options = null ) {
|
470 |
|
471 |
-
$attributes = (array) apply_filters(
|
472 |
|
473 |
foreach ( $attributes as $attribute => $value ) {
|
474 |
if ( null === $value ) {
|
@@ -491,7 +492,7 @@ class PodsForm {
|
|
491 |
*/
|
492 |
public static function data( $data, $name = null, $type = null, $options = null ) {
|
493 |
|
494 |
-
$data = (array) apply_filters(
|
495 |
|
496 |
foreach ( $data as $key => $value ) {
|
497 |
if ( null === $value ) {
|
@@ -591,7 +592,7 @@ class PodsForm {
|
|
591 |
$attributes['maxlength'] = $max_length;
|
592 |
}
|
593 |
|
594 |
-
$attributes = (array) apply_filters(
|
595 |
|
596 |
return $attributes;
|
597 |
}
|
@@ -703,7 +704,7 @@ class PodsForm {
|
|
703 |
self::field_loader( $type );
|
704 |
}
|
705 |
|
706 |
-
$options = apply_filters(
|
707 |
|
708 |
$first_field = current( $options );
|
709 |
|
@@ -756,7 +757,7 @@ class PodsForm {
|
|
756 |
|
757 |
self::field_loader( $type );
|
758 |
|
759 |
-
$options = apply_filters(
|
760 |
|
761 |
$first_field = current( $options );
|
762 |
|
@@ -866,7 +867,7 @@ class PodsForm {
|
|
866 |
self::field_loader( $type );
|
867 |
|
868 |
if ( method_exists( self::$loaded[ $type ], 'options' ) ) {
|
869 |
-
$options = apply_filters(
|
870 |
}
|
871 |
}
|
872 |
}//end if
|
@@ -914,9 +915,12 @@ class PodsForm {
|
|
914 |
*/
|
915 |
public static function dependencies( $options, $prefix = '' ) {
|
916 |
|
917 |
-
$options
|
918 |
-
$classes
|
919 |
-
$
|
|
|
|
|
|
|
920 |
|
921 |
if ( isset( $options['depends-on'] ) ) {
|
922 |
$depends_on = (array) $options['depends-on'];
|
@@ -1089,7 +1093,7 @@ class PodsForm {
|
|
1089 |
}//end if
|
1090 |
}//end if
|
1091 |
|
1092 |
-
$value = apply_filters(
|
1093 |
|
1094 |
return $value;
|
1095 |
}
|
@@ -1115,7 +1119,7 @@ class PodsForm {
|
|
1115 |
$regex = self::$loaded[ $type ]->regex( $options );
|
1116 |
}
|
1117 |
|
1118 |
-
$regex = apply_filters(
|
1119 |
|
1120 |
return $regex;
|
1121 |
}
|
@@ -1141,7 +1145,7 @@ class PodsForm {
|
|
1141 |
$prepare = self::$loaded[ $type ]->prepare( $options );
|
1142 |
}
|
1143 |
|
1144 |
-
$prepare = apply_filters(
|
1145 |
|
1146 |
return $prepare;
|
1147 |
}
|
@@ -1173,7 +1177,7 @@ class PodsForm {
|
|
1173 |
$validate = self::$loaded[ $type ]->validate( $value, $name, $options, $fields, $pod, $id, $params );
|
1174 |
}
|
1175 |
|
1176 |
-
$validate = apply_filters(
|
1177 |
|
1178 |
return $validate;
|
1179 |
}
|
129 |
|
130 |
$output = ob_get_clean();
|
131 |
|
132 |
+
return apply_filters( "pods_form_ui_{$type}", $output, $name, $label, $help, $attributes, $options );
|
133 |
}
|
134 |
|
135 |
/**
|
168 |
|
169 |
$output = ob_get_clean();
|
170 |
|
171 |
+
return apply_filters( "pods_form_ui_{$type}", $output, $name, $message, $attributes, $options );
|
172 |
}
|
173 |
|
174 |
/**
|
201 |
}
|
202 |
|
203 |
$options = self::options( $type, $options );
|
204 |
+
$options = apply_filters( "pods_form_ui_field_{$type}_options", $options, $value, $name, $pod, $id );
|
205 |
|
206 |
if ( null === $value || ( '' === $value && 'boolean' === $type ) || ( ! empty( $pod ) && empty( $id ) ) ) {
|
207 |
$value = self::default_value( $value, $type, $name, $options, $pod, $id );
|
216 |
return false;
|
217 |
}
|
218 |
|
219 |
+
$value = apply_filters( "pods_form_ui_field_{$type}_value", $value, $name, $options, $pod, $id );
|
220 |
$form_field_type = self::$field_type;
|
221 |
|
222 |
ob_start();
|
236 |
|
237 |
// @todo Move into DFV field method or PodsObject later
|
238 |
if ( ( ! isset( $options['data'] ) || empty( $options['data'] ) ) && is_object( self::$loaded[ $type ] ) && method_exists( self::$loaded[ $type ], 'data' ) ) {
|
239 |
+
$options['data'] = self::$loaded[ $type ]->data( $name, $value, $options, $pod, $id, true );
|
240 |
+
$data = $options['data'];
|
241 |
}
|
242 |
|
243 |
/**
|
247 |
*
|
248 |
* @deprecated 2.7.0
|
249 |
*/
|
250 |
+
if ( true === apply_filters( "pods_form_ui_field_{$type}_override", false, $name, $value, $options, $pod, $id ) ) {
|
251 |
/**
|
252 |
* pods_form_ui_field_{$type} action leaves too much to be done by developer.
|
253 |
*
|
255 |
*
|
256 |
* @deprecated 2.7.0
|
257 |
*/
|
258 |
+
do_action( "pods_form_ui_field_{$type}", $name, $value, $options, $pod, $id );
|
259 |
} elseif ( ! empty( $helper ) && 0 < strlen( pods_v( 'code', $helper ) ) && false === strpos( $helper['code'], '$this->' ) && ( ! defined( 'PODS_DISABLE_EVAL' ) || ! PODS_DISABLE_EVAL ) ) {
|
260 |
/**
|
261 |
* Input helpers are deprecated and not guaranteed to work properly.
|
278 |
*
|
279 |
* @deprecated 2.7.0
|
280 |
*/
|
281 |
+
do_action( "pods_form_ui_field_{$type}", $name, $value, $options, $pod, $id );
|
282 |
}//end if
|
283 |
|
284 |
$output = ob_get_clean();
|
288 |
*
|
289 |
* It is not intended for replacing but augmenting input markup.
|
290 |
*/
|
291 |
+
return apply_filters( "pods_form_ui_field_{$type}", $output, $name, $value, $options, $pod, $id );
|
292 |
}
|
293 |
|
294 |
/**
|
469 |
*/
|
470 |
public static function attributes( $attributes, $name = null, $type = null, $options = null ) {
|
471 |
|
472 |
+
$attributes = (array) apply_filters( "pods_form_ui_field_{$type}_attributes", $attributes, $name, $options );
|
473 |
|
474 |
foreach ( $attributes as $attribute => $value ) {
|
475 |
if ( null === $value ) {
|
492 |
*/
|
493 |
public static function data( $data, $name = null, $type = null, $options = null ) {
|
494 |
|
495 |
+
$data = (array) apply_filters( "pods_form_ui_field_{$type}_data", $data, $name, $options );
|
496 |
|
497 |
foreach ( $data as $key => $value ) {
|
498 |
if ( null === $value ) {
|
592 |
$attributes['maxlength'] = $max_length;
|
593 |
}
|
594 |
|
595 |
+
$attributes = (array) apply_filters( "pods_form_ui_field_{$type}_merge_attributes", $attributes, $name, $options );
|
596 |
|
597 |
return $attributes;
|
598 |
}
|
704 |
self::field_loader( $type );
|
705 |
}
|
706 |
|
707 |
+
$options = apply_filters( "pods_field_{$type}_options", (array) self::$loaded[ $type ]->options(), $type );
|
708 |
|
709 |
$first_field = current( $options );
|
710 |
|
757 |
|
758 |
self::field_loader( $type );
|
759 |
|
760 |
+
$options = apply_filters( "pods_field_{$type}_ui_options", (array) self::$loaded[ $type ]->ui_options(), $type );
|
761 |
|
762 |
$first_field = current( $options );
|
763 |
|
867 |
self::field_loader( $type );
|
868 |
|
869 |
if ( method_exists( self::$loaded[ $type ], 'options' ) ) {
|
870 |
+
$options = apply_filters( "pods_field_{$type}_options", (array) self::$loaded[ $type ]->options(), $type );
|
871 |
}
|
872 |
}
|
873 |
}//end if
|
915 |
*/
|
916 |
public static function dependencies( $options, $prefix = '' ) {
|
917 |
|
918 |
+
$options = (array) $options;
|
919 |
+
$classes = array();
|
920 |
+
$data = array();
|
921 |
+
$depends_on = array();
|
922 |
+
$excludes_on = array();
|
923 |
+
$wildcard_on = array();
|
924 |
|
925 |
if ( isset( $options['depends-on'] ) ) {
|
926 |
$depends_on = (array) $options['depends-on'];
|
1093 |
}//end if
|
1094 |
}//end if
|
1095 |
|
1096 |
+
$value = apply_filters( "pods_form_display_{$type}", $value, $name, $options, $pod, $id, $traverse );
|
1097 |
|
1098 |
return $value;
|
1099 |
}
|
1119 |
$regex = self::$loaded[ $type ]->regex( $options );
|
1120 |
}
|
1121 |
|
1122 |
+
$regex = apply_filters( "pods_field_{$type}_regex", $regex, $options, $type );
|
1123 |
|
1124 |
return $regex;
|
1125 |
}
|
1145 |
$prepare = self::$loaded[ $type ]->prepare( $options );
|
1146 |
}
|
1147 |
|
1148 |
+
$prepare = apply_filters( "pods_field_{$type}_prepare", $prepare, $options, $type );
|
1149 |
|
1150 |
return $prepare;
|
1151 |
}
|
1177 |
$validate = self::$loaded[ $type ]->validate( $value, $name, $options, $fields, $pod, $id, $params );
|
1178 |
}
|
1179 |
|
1180 |
+
$validate = apply_filters( "pods_field_{$type}_validate", $validate, $value, $name, $options, $fields, $pod, $id, $type, $params );
|
1181 |
|
1182 |
return $validate;
|
1183 |
}
|
classes/PodsI18n.php
CHANGED
@@ -257,8 +257,8 @@ final class PodsI18n {
|
|
257 |
}
|
258 |
|
259 |
/**
|
260 |
-
* @var $sitepress
|
261 |
-
* @var $polylang
|
262 |
*/
|
263 |
/*
|
264 |
* @todo wpml-comp Remove global object usage
|
@@ -269,122 +269,144 @@ final class PodsI18n {
|
|
269 |
$translator = false;
|
270 |
$current_language = false;
|
271 |
|
272 |
-
// Multilingual support
|
273 |
if ( did_action( 'wpml_loaded' ) && apply_filters( 'wpml_setting', true, 'auto_adjust_ids' ) ) {
|
274 |
-
// WPML support
|
275 |
$translator = 'WPML';
|
276 |
|
277 |
-
// Get the global current language (if set)
|
278 |
$wpml_language = apply_filters( 'wpml_current_language', null );
|
279 |
-
$current_language = (
|
280 |
|
281 |
} elseif ( ( function_exists( 'PLL' ) || is_object( $polylang ) ) && function_exists( 'pll_current_language' ) ) {
|
282 |
-
// Polylang support
|
283 |
$translator = 'PLL';
|
284 |
|
285 |
-
// Get the global current language (if set)
|
286 |
$current_language = pll_current_language( 'slug' );
|
287 |
}
|
288 |
|
289 |
/**
|
290 |
-
* Admin functions that overwrite the current language
|
291 |
*
|
292 |
* @since 2.6.6
|
293 |
*/
|
294 |
if ( is_admin() && ! empty( $translator ) ) {
|
295 |
-
if (
|
296 |
/**
|
297 |
-
* Polylang support
|
298 |
* Get the current user's preferred language.
|
299 |
-
* This is a user meta setting that will overwrite the language returned from pll_current_language()
|
300 |
*
|
301 |
-
* @see polylang/admin/admin-base.php
|
302 |
*/
|
303 |
$current_language = get_user_meta( get_current_user_id(), 'pll_filter_content', true );
|
304 |
}
|
305 |
|
306 |
-
// Get current language based on the object language if available
|
307 |
-
|
308 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
|
310 |
-
/**
|
311 |
-
* Overwrite the current language if needed for post types
|
312 |
-
*/
|
313 |
-
if ( isset( $current_screen->base ) && ( $current_screen->base == 'post' || $current_screen->base == 'edit' ) ) {
|
314 |
-
if ( ! empty( $_GET['post'] ) ) {
|
315 |
/**
|
316 |
-
*
|
317 |
-
*
|
318 |
-
* We need to overwrite this when the current object is not-translatable to enable relationships with different languages
|
319 |
*/
|
320 |
-
if (
|
321 |
-
// Overwrite the current language
|
322 |
-
$current_language =
|
323 |
}
|
324 |
|
325 |
/**
|
326 |
-
* Polylang
|
327 |
-
*
|
328 |
-
* We only want the related objects if they are not translatable OR the same language as the current object
|
329 |
*/
|
330 |
-
if (
|
331 |
-
|
332 |
-
$current_language = pll_get_post_language( (int) $_GET['post'] );
|
333 |
}
|
334 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
|
|
|
|
|
|
|
|
|
|
|
336 |
/**
|
337 |
-
*
|
338 |
-
* In
|
339 |
-
*
|
340 |
*/
|
341 |
-
if (
|
342 |
-
|
|
|
343 |
}
|
344 |
|
345 |
/**
|
346 |
-
*
|
|
|
347 |
*/
|
348 |
-
|
349 |
-
|
350 |
-
if ( ! empty( $_GET['taxonomy'] ) ) {
|
351 |
-
/*
|
352 |
-
* @todo wpml-comp API call for taxonomy needed!
|
353 |
-
* Suggested API call:
|
354 |
-
* add_filter( 'wpml_is_translated_taxonomy', $_GET['taxonomy'], 10, 2 );
|
355 |
-
*/
|
356 |
/**
|
357 |
-
*
|
358 |
-
*
|
359 |
-
* We need to overwrite this when the current object is not-translatable to enable relationships with different languages
|
360 |
*/
|
361 |
-
if ( $
|
362 |
-
// Overwrite the current language
|
363 |
-
$current_language =
|
364 |
}
|
365 |
|
366 |
/**
|
367 |
-
* Polylang
|
368 |
-
*
|
369 |
-
* We only want the related objects if they are not translatable OR the same language as the current object
|
370 |
*/
|
371 |
-
if (
|
372 |
-
|
373 |
-
$current_language = pll_get_term_language( (int) $_GET['tag_ID'] );
|
374 |
}
|
375 |
-
}//end if
|
376 |
-
|
377 |
-
/**
|
378 |
-
* Polylang support (1.0.1+)
|
379 |
-
* In polylang the preferred language could be anything.
|
380 |
-
* When we're adding a new object and language is set we only want the related objects if they are not translatable OR the same language
|
381 |
-
*/
|
382 |
-
if ( $translator == 'PLL' && ! empty( $_GET['new_lang'] ) && ! empty( $_GET['taxonomy'] ) && pll_is_translated_taxonomy( sanitize_text_field( $_GET['taxonomy'] ) ) ) {
|
383 |
-
$current_language = $_GET['new_lang'];
|
384 |
}
|
385 |
}//end if
|
386 |
}//end if
|
387 |
-
|
|
|
388 |
|
389 |
$current_language = pods_sanitize( sanitize_text_field( $current_language ) );
|
390 |
|
@@ -398,21 +420,21 @@ final class PodsI18n {
|
|
398 |
);
|
399 |
|
400 |
/**
|
401 |
-
* Polylang support
|
402 |
-
* Get the language taxonomy object for the current language
|
403 |
*/
|
404 |
-
if (
|
405 |
$current_language_t = false;
|
406 |
|
407 |
-
// Get the language term object
|
408 |
if ( function_exists( 'PLL' ) && isset( PLL()->model ) && method_exists( PLL()->model, 'get_language' ) ) {
|
409 |
-
// Polylang 1.8 and newer
|
410 |
$current_language_t = PLL()->model->get_language( $current_language );
|
411 |
} elseif ( is_object( $polylang ) && isset( $polylang->model ) && method_exists( $polylang->model, 'get_language' ) ) {
|
412 |
// Polylang 1.2 - 1.7.x
|
413 |
$current_language_t = $polylang->model->get_language( $current_language );
|
414 |
} elseif ( is_object( $polylang ) && method_exists( $polylang, 'get_language' ) ) {
|
415 |
-
// Polylang 1.1.x and older
|
416 |
$current_language_t = $polylang->get_language( $current_language );
|
417 |
}
|
418 |
|
@@ -432,16 +454,15 @@ final class PodsI18n {
|
|
432 |
*
|
433 |
* @since 2.6.6
|
434 |
*
|
435 |
-
* @param array|false
|
436 |
-
*
|
437 |
-
*
|
438 |
-
*
|
439 |
-
*
|
440 |
-
*
|
441 |
-
* @type WP_Term $term Language term object
|
442 |
* }
|
443 |
*
|
444 |
-
* @param string|boolean $translator Language plugin used
|
445 |
*/
|
446 |
$lang_data = apply_filters( 'pods_get_current_language', $lang_data, $translator );
|
447 |
|
257 |
}
|
258 |
|
259 |
/**
|
260 |
+
* @var \SitePress $sitepress object
|
261 |
+
* @var \Polylang $polylang object
|
262 |
*/
|
263 |
/*
|
264 |
* @todo wpml-comp Remove global object usage
|
269 |
$translator = false;
|
270 |
$current_language = false;
|
271 |
|
272 |
+
// Multilingual support.
|
273 |
if ( did_action( 'wpml_loaded' ) && apply_filters( 'wpml_setting', true, 'auto_adjust_ids' ) ) {
|
274 |
+
// WPML support.
|
275 |
$translator = 'WPML';
|
276 |
|
277 |
+
// Get the global current language (if set).
|
278 |
$wpml_language = apply_filters( 'wpml_current_language', null );
|
279 |
+
$current_language = ( 'all' !== $wpml_language ) ? $wpml_language : '';
|
280 |
|
281 |
} elseif ( ( function_exists( 'PLL' ) || is_object( $polylang ) ) && function_exists( 'pll_current_language' ) ) {
|
282 |
+
// Polylang support.
|
283 |
$translator = 'PLL';
|
284 |
|
285 |
+
// Get the global current language (if set).
|
286 |
$current_language = pll_current_language( 'slug' );
|
287 |
}
|
288 |
|
289 |
/**
|
290 |
+
* Admin functions that overwrite the current language.
|
291 |
*
|
292 |
* @since 2.6.6
|
293 |
*/
|
294 |
if ( is_admin() && ! empty( $translator ) ) {
|
295 |
+
if ( 'PLL' === $translator ) {
|
296 |
/**
|
297 |
+
* Polylang support.
|
298 |
* Get the current user's preferred language.
|
299 |
+
* This is a user meta setting that will overwrite the language returned from pll_current_language().
|
300 |
*
|
301 |
+
* @see \PLL_Admin_Base::init_user() (polylang/admin/admin-base.php)
|
302 |
*/
|
303 |
$current_language = get_user_meta( get_current_user_id(), 'pll_filter_content', true );
|
304 |
}
|
305 |
|
306 |
+
// Get current language based on the object language if available.
|
307 |
+
$page = basename( $_SERVER['SCRIPT_NAME'] );
|
308 |
+
|
309 |
+
/**
|
310 |
+
* Overwrite the current language if needed for post types.
|
311 |
+
*/
|
312 |
+
if ( 'post.php' === $page || 'edit.php' === $page ) {
|
313 |
+
|
314 |
+
$current_post = ( ! empty( $_GET['post'] ) ) ? (int) $_GET['post'] : 0;
|
315 |
+
|
316 |
+
if ( $current_post ) {
|
317 |
+
|
318 |
+
$current_post_type = get_post_type( $current_post );
|
319 |
+
|
320 |
+
/**
|
321 |
+
* WPML support.
|
322 |
+
* In WPML the current language is always set to default on an edit screen.
|
323 |
+
* We need to overwrite this when the current object is not-translatable to enable relationships with different languages.
|
324 |
+
*/
|
325 |
+
if ( 'WPML' === $translator && ! apply_filters( 'wpml_is_translated_post_type', false, $current_post_type ) ) {
|
326 |
+
// Overwrite the current language to nothing if this is a NOT-translatable post_type.
|
327 |
+
$current_language = '';
|
328 |
+
}
|
329 |
+
|
330 |
+
/**
|
331 |
+
* Polylang support.
|
332 |
+
* In polylang the preferred language could be anything.
|
333 |
+
*/
|
334 |
+
if ( 'PLL' === $translator && pll_is_translated_post_type( $current_post_type ) ) {
|
335 |
|
|
|
|
|
|
|
|
|
|
|
336 |
/**
|
337 |
+
* Polylang (1.5.4+).
|
338 |
+
* We only want the related objects if they are not translatable OR the same language as the current object.
|
|
|
339 |
*/
|
340 |
+
if ( function_exists( 'pll_get_post_language' ) ) {
|
341 |
+
// Overwrite the current language if this is a translatable post_type.
|
342 |
+
$current_language = pll_get_post_language( $current_post );
|
343 |
}
|
344 |
|
345 |
/**
|
346 |
+
* Polylang (1.0.1+).
|
347 |
+
* When we're adding a new object and language is set we only want the related objects if they are not translatable OR the same language.
|
|
|
348 |
*/
|
349 |
+
if ( ! empty( $_GET['new_lang'] ) ) {
|
350 |
+
$current_language = $_GET['new_lang'];
|
|
|
351 |
}
|
352 |
+
}
|
353 |
+
}
|
354 |
+
} //end if
|
355 |
+
|
356 |
+
/**
|
357 |
+
* Overwrite the current language if needed for taxonomies.
|
358 |
+
*/
|
359 |
+
elseif ( 'term.php' === $page || 'edit-tags.php' === $page ) {
|
360 |
+
|
361 |
+
$current_taxonomy = ( ! empty( $_GET['taxonomy'] ) ) ? sanitize_text_field( $_GET['taxonomy'] ) : '';
|
362 |
+
|
363 |
+
// @todo MAYBE: Similar function like get_post_type for taxonomies so we don't need to check for $_GET['taxonomy']
|
364 |
+
if ( $current_taxonomy ) {
|
365 |
+
|
366 |
+
$current_tag_id = ( ! empty( $_GET['tag_ID'] ) ) ? (int) $_GET['tag_ID'] : 0;
|
367 |
|
368 |
+
/*
|
369 |
+
* @todo wpml-comp API call for taxonomy needed!
|
370 |
+
* Suggested API call:
|
371 |
+
* add_filter( 'wpml_is_translated_taxonomy', $_GET['taxonomy'], 10, 2 );
|
372 |
+
*/
|
373 |
/**
|
374 |
+
* WPML support.
|
375 |
+
* In WPML the current language is always set to default on an edit screen.
|
376 |
+
* We need to overwrite this when the current object is not-translatable to enable relationships with different languages.
|
377 |
*/
|
378 |
+
if ( 'WPML' === $translator && method_exists( $sitepress, 'is_translated_taxonomy' ) && ! $sitepress->is_translated_taxonomy( $current_taxonomy ) ) {
|
379 |
+
// Overwrite the current language to nothing if this is a NOT-translatable taxonomy.
|
380 |
+
$current_language = '';
|
381 |
}
|
382 |
|
383 |
/**
|
384 |
+
* Polylang support.
|
385 |
+
* In polylang the preferred language could be anything.
|
386 |
*/
|
387 |
+
if ( 'PLL' === $translator && pll_is_translated_taxonomy( $current_taxonomy ) ) {
|
388 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
/**
|
390 |
+
* Polylang (1.5.4+).
|
391 |
+
* We only want the related objects if they are not translatable OR the same language as the current object.
|
|
|
392 |
*/
|
393 |
+
if ( $current_tag_id && function_exists( 'pll_get_term_language' ) ) {
|
394 |
+
// Overwrite the current language if this is a translatable taxonomy
|
395 |
+
$current_language = pll_get_term_language( $current_tag_id );
|
396 |
}
|
397 |
|
398 |
/**
|
399 |
+
* Polylang (1.0.1+).
|
400 |
+
* When we're adding a new object and language is set we only want the related objects if they are not translatable OR the same language.
|
|
|
401 |
*/
|
402 |
+
if ( ! empty( $_GET['new_lang'] ) ) {
|
403 |
+
$current_language = $_GET['new_lang'];
|
|
|
404 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
}
|
406 |
}//end if
|
407 |
}//end if
|
408 |
+
|
409 |
+
}//end if (admin)
|
410 |
|
411 |
$current_language = pods_sanitize( sanitize_text_field( $current_language ) );
|
412 |
|
420 |
);
|
421 |
|
422 |
/**
|
423 |
+
* Polylang support.
|
424 |
+
* Get the language taxonomy object for the current language.
|
425 |
*/
|
426 |
+
if ( 'PLL' === $translator ) {
|
427 |
$current_language_t = false;
|
428 |
|
429 |
+
// Get the language term object.
|
430 |
if ( function_exists( 'PLL' ) && isset( PLL()->model ) && method_exists( PLL()->model, 'get_language' ) ) {
|
431 |
+
// Polylang 1.8 and newer.
|
432 |
$current_language_t = PLL()->model->get_language( $current_language );
|
433 |
} elseif ( is_object( $polylang ) && isset( $polylang->model ) && method_exists( $polylang->model, 'get_language' ) ) {
|
434 |
// Polylang 1.2 - 1.7.x
|
435 |
$current_language_t = $polylang->model->get_language( $current_language );
|
436 |
} elseif ( is_object( $polylang ) && method_exists( $polylang, 'get_language' ) ) {
|
437 |
+
// Polylang 1.1.x and older.
|
438 |
$current_language_t = $polylang->get_language( $current_language );
|
439 |
}
|
440 |
|
454 |
*
|
455 |
* @since 2.6.6
|
456 |
*
|
457 |
+
* @param array|false $lang_data {
|
458 |
+
* Language data
|
459 |
+
* @type string $language Language slug
|
460 |
+
* @type int $t_id Language term_id
|
461 |
+
* @type int $tt_id Language term_taxonomy_id
|
462 |
+
* @type WP_Term $term Language term object
|
|
|
463 |
* }
|
464 |
*
|
465 |
+
* @param string|boolean $translator Language plugin used.
|
466 |
*/
|
467 |
$lang_data = apply_filters( 'pods_get_current_language', $lang_data, $translator );
|
468 |
|
classes/PodsInit.php
CHANGED
@@ -499,8 +499,10 @@ class PodsInit {
|
|
499 |
'taxonomies' => array(),
|
500 |
);
|
501 |
|
502 |
-
$pods_post_types =
|
503 |
-
$
|
|
|
|
|
504 |
|
505 |
$post_format_post_types = array();
|
506 |
|
@@ -955,7 +957,7 @@ class PodsInit {
|
|
955 |
* @param string $taxonomy Taxonomy name
|
956 |
* @param array $ct_post_types Associated Post Types
|
957 |
*/
|
958 |
-
$options = apply_filters(
|
959 |
|
960 |
/**
|
961 |
* Allow filtering of taxonomy options.
|
@@ -999,7 +1001,7 @@ class PodsInit {
|
|
999 |
* @param array $options Post type options
|
1000 |
* @param string $post_type Post type name
|
1001 |
*/
|
1002 |
-
$options = apply_filters(
|
1003 |
|
1004 |
/**
|
1005 |
* Allow filtering of post type options.
|
499 |
'taxonomies' => array(),
|
500 |
);
|
501 |
|
502 |
+
$pods_post_types = array();
|
503 |
+
$pods_taxonomies = array();
|
504 |
+
$supported_post_types = array();
|
505 |
+
$supported_taxonomies = array();
|
506 |
|
507 |
$post_format_post_types = array();
|
508 |
|
957 |
* @param string $taxonomy Taxonomy name
|
958 |
* @param array $ct_post_types Associated Post Types
|
959 |
*/
|
960 |
+
$options = apply_filters( "pods_register_taxonomy_{$taxonomy}", $options, $taxonomy, $ct_post_types );
|
961 |
|
962 |
/**
|
963 |
* Allow filtering of taxonomy options.
|
1001 |
* @param array $options Post type options
|
1002 |
* @param string $post_type Post type name
|
1003 |
*/
|
1004 |
+
$options = apply_filters( "pods_register_post_type_{$post_type}", $options, $post_type );
|
1005 |
|
1006 |
/**
|
1007 |
* Allow filtering of post type options.
|
classes/PodsMeta.php
CHANGED
@@ -329,7 +329,7 @@ class PodsMeta {
|
|
329 |
pods_transient_set( 'pods_pod_' . $pod_name, $pod );
|
330 |
}
|
331 |
|
332 |
-
self
|
333 |
}
|
334 |
}
|
335 |
|
@@ -491,13 +491,17 @@ class PodsMeta {
|
|
491 |
}
|
492 |
|
493 |
if ( in_array( $type, array( 'wp-links', 'link' ), true ) ) {
|
494 |
-
$object_type =
|
|
|
495 |
} elseif ( in_array( $type, array( 'wp-media', 'media' ), true ) ) {
|
496 |
-
$object_type =
|
|
|
497 |
} elseif ( in_array( $type, array( 'wp-users', 'user' ), true ) ) {
|
498 |
-
$object_type =
|
|
|
499 |
} elseif ( in_array( $type, array( 'wp-comments', 'comment' ), true ) ) {
|
500 |
-
$object_type =
|
|
|
501 |
} elseif ( 'taxonomy' === $type ) {
|
502 |
$object_type = 'taxonomy';
|
503 |
if ( ! $obj ) {
|
@@ -586,13 +590,17 @@ class PodsMeta {
|
|
586 |
}
|
587 |
|
588 |
if ( in_array( $type, array( 'wp-links', 'link' ), true ) ) {
|
589 |
-
$object_type =
|
|
|
590 |
} elseif ( in_array( $type, array( 'wp-media', 'media' ), true ) ) {
|
591 |
-
$object_type =
|
|
|
592 |
} elseif ( in_array( $type, array( 'wp-users', 'user' ), true ) ) {
|
593 |
-
$object_type =
|
|
|
594 |
} elseif ( in_array( $type, array( 'wp-comments', 'comment' ), true ) ) {
|
595 |
-
$object_type =
|
|
|
596 |
} elseif ( 'taxonomy' === $type ) {
|
597 |
$object_type = 'taxonomy';
|
598 |
if ( ! method_exists( $obj, 'get_taxonomy' ) ) {
|
@@ -780,9 +788,11 @@ class PodsMeta {
|
|
780 |
'priority' => $priority
|
781 |
);
|
782 |
|
|
|
|
|
783 |
// Filter group data, pass vars separately for reference down the line (in case array changed by other filter)
|
784 |
-
$group = apply_filters(
|
785 |
-
$group = apply_filters(
|
786 |
$group = apply_filters( 'pods_meta_group_add', $group, $pod, $label, $fields );
|
787 |
|
788 |
self::$groups[ $pod['type'] ][ $object_name ][] = $group;
|
@@ -1085,7 +1095,7 @@ class PodsMeta {
|
|
1085 |
$pod_type = 'media';
|
1086 |
}
|
1087 |
|
1088 |
-
do_action( '
|
1089 |
|
1090 |
$hidden_fields = array();
|
1091 |
|
@@ -1161,7 +1171,8 @@ class PodsMeta {
|
|
1161 |
$dep_classes = $dep_options['classes'];
|
1162 |
$dep_data = $dep_options['data'];
|
1163 |
|
1164 |
-
|
|
|
1165 |
?>
|
1166 |
<tr class="form-field pods-field pods-field-input <?php echo esc_attr( 'pods-form-ui-row-type-' . $field['type'] . ' pods-form-ui-row-name-' . PodsForm::clean( $field['name'], true ) ); ?> <?php echo esc_attr( $dep_classes ); ?>" <?php PodsForm::data( $dep_data ); ?>">
|
1167 |
<th scope="row" valign="top"><?php echo PodsForm::label( 'pods_meta_' . $field['name'], $field['label'], $field['help'], $field ); ?></th>
|
@@ -1179,14 +1190,14 @@ class PodsMeta {
|
|
1179 |
</td>
|
1180 |
</tr>
|
1181 |
<?php
|
1182 |
-
do_action(
|
1183 |
}
|
1184 |
}
|
1185 |
?>
|
1186 |
</table>
|
1187 |
|
1188 |
<?php
|
1189 |
-
do_action( '
|
1190 |
|
1191 |
foreach ( $hidden_fields as $hidden_field ) {
|
1192 |
$field_data = $hidden_field['field'];
|
@@ -1476,7 +1487,7 @@ class PodsMeta {
|
|
1476 |
}
|
1477 |
}
|
1478 |
|
1479 |
-
$form_fields = apply_filters( '
|
1480 |
|
1481 |
return $form_fields;
|
1482 |
}
|
@@ -1627,7 +1638,7 @@ class PodsMeta {
|
|
1627 |
wp_enqueue_style( 'pods-form' );
|
1628 |
wp_enqueue_script( 'pods' );
|
1629 |
|
1630 |
-
do_action( '
|
1631 |
|
1632 |
$taxonomy_name = $taxonomy;
|
1633 |
|
@@ -1705,7 +1716,7 @@ class PodsMeta {
|
|
1705 |
}
|
1706 |
}
|
1707 |
|
1708 |
-
do_action( '
|
1709 |
}
|
1710 |
|
1711 |
/**
|
@@ -1853,7 +1864,7 @@ class PodsMeta {
|
|
1853 |
wp_enqueue_style( 'pods-form' );
|
1854 |
wp_enqueue_script( 'pods' );
|
1855 |
|
1856 |
-
do_action( '
|
1857 |
|
1858 |
$groups = $this->groups_get( 'user', 'user' );
|
1859 |
|
@@ -1940,7 +1951,7 @@ class PodsMeta {
|
|
1940 |
}
|
1941 |
}
|
1942 |
|
1943 |
-
do_action( '
|
1944 |
}
|
1945 |
|
1946 |
/**
|
@@ -2081,7 +2092,7 @@ class PodsMeta {
|
|
2081 |
wp_enqueue_style( 'pods-form' );
|
2082 |
wp_enqueue_script( 'pods' );
|
2083 |
|
2084 |
-
do_action( '
|
2085 |
|
2086 |
$groups = $this->groups_get( 'comment', 'comment' );
|
2087 |
|
@@ -2139,7 +2150,7 @@ class PodsMeta {
|
|
2139 |
}
|
2140 |
}
|
2141 |
|
2142 |
-
do_action( '
|
2143 |
}
|
2144 |
|
2145 |
/**
|
@@ -2212,7 +2223,7 @@ class PodsMeta {
|
|
2212 |
}
|
2213 |
}
|
2214 |
|
2215 |
-
$form_fields = apply_filters( '
|
2216 |
|
2217 |
return $form_fields;
|
2218 |
}
|
@@ -2279,7 +2290,7 @@ class PodsMeta {
|
|
2279 |
wp_enqueue_style( 'pods-form' );
|
2280 |
wp_enqueue_script( 'pods' );
|
2281 |
|
2282 |
-
do_action( '
|
2283 |
|
2284 |
$hidden_fields = array();
|
2285 |
|
@@ -2344,7 +2355,7 @@ class PodsMeta {
|
|
2344 |
echo PodsForm::field( 'pods_meta_' . $field_data['name'], $hidden_field['value'], 'hidden', $field_data );
|
2345 |
}
|
2346 |
|
2347 |
-
do_action( '
|
2348 |
}
|
2349 |
|
2350 |
/**
|
329 |
pods_transient_set( 'pods_pod_' . $pod_name, $pod );
|
330 |
}
|
331 |
|
332 |
+
self::${$type} = array_merge( self::${$type}, $objects );
|
333 |
}
|
334 |
}
|
335 |
|
491 |
}
|
492 |
|
493 |
if ( in_array( $type, array( 'wp-links', 'link' ), true ) ) {
|
494 |
+
$object_type = 'link';
|
495 |
+
$object = 'link';
|
496 |
} elseif ( in_array( $type, array( 'wp-media', 'media' ), true ) ) {
|
497 |
+
$object_type = 'media';
|
498 |
+
$object = 'media';
|
499 |
} elseif ( in_array( $type, array( 'wp-users', 'user' ), true ) ) {
|
500 |
+
$object_type = 'user';
|
501 |
+
$object = 'user';
|
502 |
} elseif ( in_array( $type, array( 'wp-comments', 'comment' ), true ) ) {
|
503 |
+
$object_type = 'comment';
|
504 |
+
$object = 'comment';
|
505 |
} elseif ( 'taxonomy' === $type ) {
|
506 |
$object_type = 'taxonomy';
|
507 |
if ( ! $obj ) {
|
590 |
}
|
591 |
|
592 |
if ( in_array( $type, array( 'wp-links', 'link' ), true ) ) {
|
593 |
+
$object_type = 'link';
|
594 |
+
$object = 'link';
|
595 |
} elseif ( in_array( $type, array( 'wp-media', 'media' ), true ) ) {
|
596 |
+
$object_type = 'media';
|
597 |
+
$object = 'media';
|
598 |
} elseif ( in_array( $type, array( 'wp-users', 'user' ), true ) ) {
|
599 |
+
$object_type = 'user';
|
600 |
+
$object = 'user';
|
601 |
} elseif ( in_array( $type, array( 'wp-comments', 'comment' ), true ) ) {
|
602 |
+
$object_type = 'comment';
|
603 |
+
$object = 'comment';
|
604 |
} elseif ( 'taxonomy' === $type ) {
|
605 |
$object_type = 'taxonomy';
|
606 |
if ( ! method_exists( $obj, 'get_taxonomy' ) ) {
|
788 |
'priority' => $priority
|
789 |
);
|
790 |
|
791 |
+
$pod_type = $pod['type'];
|
792 |
+
|
793 |
// Filter group data, pass vars separately for reference down the line (in case array changed by other filter)
|
794 |
+
$group = apply_filters( "pods_meta_group_add_{$pod_type}_{$object_name}", $group, $pod, $label, $fields );
|
795 |
+
$group = apply_filters( "pods_meta_group_add_{$pod_type}", $group, $pod, $label, $fields );
|
796 |
$group = apply_filters( 'pods_meta_group_add', $group, $pod, $label, $fields );
|
797 |
|
798 |
self::$groups[ $pod['type'] ][ $object_name ][] = $group;
|
1095 |
$pod_type = 'media';
|
1096 |
}
|
1097 |
|
1098 |
+
do_action( 'pods_meta_meta_post', $post );
|
1099 |
|
1100 |
$hidden_fields = array();
|
1101 |
|
1171 |
$dep_classes = $dep_options['classes'];
|
1172 |
$dep_data = $dep_options['data'];
|
1173 |
|
1174 |
+
$field_name = $field['name'];
|
1175 |
+
do_action( "pods_meta_meta_post_{$field_name}", $post, $field, $pod );
|
1176 |
?>
|
1177 |
<tr class="form-field pods-field pods-field-input <?php echo esc_attr( 'pods-form-ui-row-type-' . $field['type'] . ' pods-form-ui-row-name-' . PodsForm::clean( $field['name'], true ) ); ?> <?php echo esc_attr( $dep_classes ); ?>" <?php PodsForm::data( $dep_data ); ?>">
|
1178 |
<th scope="row" valign="top"><?php echo PodsForm::label( 'pods_meta_' . $field['name'], $field['label'], $field['help'], $field ); ?></th>
|
1190 |
</td>
|
1191 |
</tr>
|
1192 |
<?php
|
1193 |
+
do_action( "pods_meta_meta_post_{$field_name}_post", $post, $field, $pod );
|
1194 |
}
|
1195 |
}
|
1196 |
?>
|
1197 |
</table>
|
1198 |
|
1199 |
<?php
|
1200 |
+
do_action( 'pods_meta_meta_post_post', $post );
|
1201 |
|
1202 |
foreach ( $hidden_fields as $hidden_field ) {
|
1203 |
$field_data = $hidden_field['field'];
|
1487 |
}
|
1488 |
}
|
1489 |
|
1490 |
+
$form_fields = apply_filters( 'pods_meta_meta_media', $form_fields );
|
1491 |
|
1492 |
return $form_fields;
|
1493 |
}
|
1638 |
wp_enqueue_style( 'pods-form' );
|
1639 |
wp_enqueue_script( 'pods' );
|
1640 |
|
1641 |
+
do_action( 'pods_meta_meta_taxonomy', $tag, $taxonomy );
|
1642 |
|
1643 |
$taxonomy_name = $taxonomy;
|
1644 |
|
1716 |
}
|
1717 |
}
|
1718 |
|
1719 |
+
do_action( 'pods_meta_meta_taxonomy_post', $tag, $taxonomy );
|
1720 |
}
|
1721 |
|
1722 |
/**
|
1864 |
wp_enqueue_style( 'pods-form' );
|
1865 |
wp_enqueue_script( 'pods' );
|
1866 |
|
1867 |
+
do_action( 'pods_meta_meta_user', $user_id );
|
1868 |
|
1869 |
$groups = $this->groups_get( 'user', 'user' );
|
1870 |
|
1951 |
}
|
1952 |
}
|
1953 |
|
1954 |
+
do_action( 'pods_meta_meta_user_post', $user_id );
|
1955 |
}
|
1956 |
|
1957 |
/**
|
2092 |
wp_enqueue_style( 'pods-form' );
|
2093 |
wp_enqueue_script( 'pods' );
|
2094 |
|
2095 |
+
do_action( 'pods_meta_meta_comment_new_logged_in', $commenter, $user_identity );
|
2096 |
|
2097 |
$groups = $this->groups_get( 'comment', 'comment' );
|
2098 |
|
2150 |
}
|
2151 |
}
|
2152 |
|
2153 |
+
do_action( 'pods_meta_meta_comment_new_logged_in_post', $commenter, $user_identity );
|
2154 |
}
|
2155 |
|
2156 |
/**
|
2223 |
}
|
2224 |
}
|
2225 |
|
2226 |
+
$form_fields = apply_filters( 'pods_meta_meta_comment_new', $form_fields );
|
2227 |
|
2228 |
return $form_fields;
|
2229 |
}
|
2290 |
wp_enqueue_style( 'pods-form' );
|
2291 |
wp_enqueue_script( 'pods' );
|
2292 |
|
2293 |
+
do_action( 'pods_meta_meta_comment', $comment, $metabox );
|
2294 |
|
2295 |
$hidden_fields = array();
|
2296 |
|
2355 |
echo PodsForm::field( 'pods_meta_' . $field_data['name'], $hidden_field['value'], 'hidden', $field_data );
|
2356 |
}
|
2357 |
|
2358 |
+
do_action( 'pods_meta_meta_comment_post', $comment, $metabox );
|
2359 |
}
|
2360 |
|
2361 |
/**
|
classes/PodsMigrate.php
CHANGED
@@ -850,10 +850,9 @@ class PodsMigrate {
|
|
850 |
}
|
851 |
|
852 |
/*
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
EXAMPLES
|
857 |
//// minimal import (if your fields match on both your pods and tables)
|
858 |
$import = array('my_pod' => array('table' => 'my_table')); // if your table name doesn't match the pod name
|
859 |
$import = array('my_pod'); // if your table name matches your pod name
|
850 |
}
|
851 |
|
852 |
/*
|
853 |
+
The real enchilada!
|
854 |
+
|
855 |
+
EXAMPLES
|
|
|
856 |
//// minimal import (if your fields match on both your pods and tables)
|
857 |
$import = array('my_pod' => array('table' => 'my_table')); // if your table name doesn't match the pod name
|
858 |
$import = array('my_pod'); // if your table name matches your pod name
|
classes/PodsUI.php
CHANGED
@@ -525,7 +525,8 @@ class PodsUI {
|
|
525 |
// @todo This is also done in setup(), maybe a better / more central way?
|
526 |
if ( is_object( $this->pod ) && ! empty( $this->pod->pod_data['options'] ) ) {
|
527 |
$pod_options = $this->pod->pod_data['options'];
|
528 |
-
$
|
|
|
529 |
$pod_options = apply_filters( 'pods_advanced_content_type_pod_data', $pod_options, $this->pod->pod_data['name'] );
|
530 |
|
531 |
$this->label = array_merge( $this->label, $pod_options );
|
@@ -1025,7 +1026,8 @@ class PodsUI {
|
|
1025 |
|
1026 |
if ( is_object( $this->pod ) ) {
|
1027 |
$pod_data = $this->pod->pod_data;
|
1028 |
-
$
|
|
|
1029 |
$pod_data = apply_filters( 'pods_advanced_content_type_pod_data', $pod_data, $this->pod->pod_data['name'] );
|
1030 |
|
1031 |
$this->label = array_merge( $this->label, $pod_data['options'] );
|
@@ -1618,14 +1620,16 @@ class PodsUI {
|
|
1618 |
if ( $this->restricted( $this->action ) ) {
|
1619 |
return $this->error( sprintf( __( '<strong>Error:</strong> You do not have access to this %s.', 'pods' ), $this->item ) );
|
1620 |
}
|
|
|
|
|
|
|
|
|
|
|
1621 |
?>
|
1622 |
<div class="wrap pods-ui">
|
1623 |
-
<div id="icon-edit-pages" class="icon32"
|
1624 |
-
|
1625 |
-
|
1626 |
-
?>
|
1627 |
-
style="background-position:0 0;background-size:100%;background-image:url(<?php echo esc_url( $this->icon ); ?>);"<?php } ?>>
|
1628 |
-
<br /></div>
|
1629 |
<h2>
|
1630 |
<?php
|
1631 |
echo wp_kses_post( $this->header['add'] );
|
@@ -1675,14 +1679,16 @@ class PodsUI {
|
|
1675 |
if ( $this->restricted( $this->action ) ) {
|
1676 |
return $this->error( sprintf( __( '<strong>Error:</strong> You do not have access to this %s.', 'pods' ), $this->item ) );
|
1677 |
}
|
|
|
|
|
|
|
|
|
|
|
1678 |
?>
|
1679 |
<div class="wrap pods-ui">
|
1680 |
-
<div id="icon-edit-pages" class="icon32"
|
1681 |
-
|
1682 |
-
|
1683 |
-
?>
|
1684 |
-
style="background-position:0 0;background-size:100%;background-image:url(<?php echo esc_url( $this->icon ); ?>);"<?php } ?>>
|
1685 |
-
<br /></div>
|
1686 |
<h2>
|
1687 |
<?php
|
1688 |
echo wp_kses_post( $this->do_template( $duplicate ? $this->header['duplicate'] : $this->header['edit'] ) );
|
@@ -1692,7 +1698,7 @@ class PodsUI {
|
|
1692 |
array(
|
1693 |
'action' . $this->num => 'add',
|
1694 |
'id' . $this->num => '',
|
1695 |
-
'do' . $this->num
|
1696 |
), self::$allowed, $this->exclusion()
|
1697 |
);
|
1698 |
|
@@ -1989,14 +1995,16 @@ class PodsUI {
|
|
1989 |
|
1990 |
unset( $view_fields );
|
1991 |
// Cleanup
|
|
|
|
|
|
|
|
|
|
|
1992 |
?>
|
1993 |
<div class="wrap pods-ui">
|
1994 |
-
<div id="icon-edit-pages" class="icon32"
|
1995 |
-
|
1996 |
-
|
1997 |
-
?>
|
1998 |
-
style="background-position:0 0;background-size:100%;background-image:url(<?php echo esc_url( $this->icon ); ?>);"<?php } ?>>
|
1999 |
-
<br /></div>
|
2000 |
<h2>
|
2001 |
<?php
|
2002 |
echo wp_kses_post( $this->do_template( $this->header['view'] ) );
|
@@ -2006,7 +2014,7 @@ class PodsUI {
|
|
2006 |
array(
|
2007 |
'action' . $this->num => 'add',
|
2008 |
'id' . $this->num => '',
|
2009 |
-
'do' . $this->num
|
2010 |
), self::$allowed, $this->exclusion()
|
2011 |
);
|
2012 |
|
@@ -2234,7 +2242,8 @@ class PodsUI {
|
|
2234 |
continue;
|
2235 |
}
|
2236 |
|
2237 |
-
|
|
|
2238 |
$check = $callback;
|
2239 |
} elseif ( is_object( $this->pod ) ) {
|
2240 |
$check = $this->pod->delete( $id );
|
@@ -2450,7 +2459,8 @@ class PodsUI {
|
|
2450 |
$value = null;
|
2451 |
|
2452 |
// use PodsData to get field
|
2453 |
-
|
|
|
2454 |
return $callback;
|
2455 |
}
|
2456 |
|
@@ -2803,14 +2813,19 @@ class PodsUI {
|
|
2803 |
$this->screen_meta();
|
2804 |
|
2805 |
if ( true === $reorder ) {
|
2806 |
-
wp_enqueue_script( 'jquery-ui-sortable' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2807 |
?>
|
2808 |
<div class="wrap pods-admin pods-ui">
|
2809 |
-
<div id="icon-edit-pages" class="icon32"
|
2810 |
-
|
2811 |
-
|
2812 |
-
?>
|
2813 |
-
style="background-position:0 0;background-size:100%;background-image:url(<?php echo esc_url( $this->icon ); ?>);"<?php } ?>><br /></div>
|
2814 |
<h2>
|
2815 |
<?php
|
2816 |
if ( true === $reorder ) {
|
@@ -3134,20 +3149,17 @@ class PodsUI {
|
|
3134 |
</form>
|
3135 |
<?php
|
3136 |
} elseif ( ! in_array( 'export', $this->actions_disabled ) && ! in_array( 'export', $this->actions_hidden ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3137 |
?>
|
3138 |
<div class="alignleft actions">
|
3139 |
-
<input type="button" value="<?php echo esc_attr( sprintf( __( 'Export all %s', 'pods' ), $this->items ) ); ?>" class="button" onclick="document.location=';
|
3140 |
-
<?php
|
3141 |
-
echo pods_slash(
|
3142 |
-
pods_query_arg(
|
3143 |
-
array(
|
3144 |
-
'action_bulk' . $this->num => 'export',
|
3145 |
-
'_wpnonce' => wp_create_nonce( 'pods-ui-action-bulk' ),
|
3146 |
-
), self::$allowed, $this->exclusion()
|
3147 |
-
)
|
3148 |
-
);
|
3149 |
-
?>
|
3150 |
-
';" />
|
3151 |
</div>
|
3152 |
<?php
|
3153 |
}//end if
|
@@ -3357,7 +3369,9 @@ class PodsUI {
|
|
3357 |
|
3358 |
$data_filter = 'filter_' . $filter;
|
3359 |
|
3360 |
-
$start
|
|
|
|
|
3361 |
|
3362 |
if ( in_array( $filter_field['type'], array( 'date', 'datetime', 'time' ) ) ) {
|
3363 |
$start = pods_var_raw( 'filter_' . $filter . '_start', 'get', '', null, true );
|
@@ -4441,8 +4455,10 @@ class PodsUI {
|
|
4441 |
*/
|
4442 |
public function screen_meta() {
|
4443 |
|
4444 |
-
$screen_html =
|
4445 |
-
$
|
|
|
|
|
4446 |
if ( ! empty( $this->screen_options ) && ! empty( $this->help ) ) {
|
4447 |
foreach ( $this->ui_page as $page ) {
|
4448 |
if ( isset( $this->screen_options[ $page ] ) ) {
|
@@ -4771,7 +4787,8 @@ class PodsUI {
|
|
4771 |
$value = call_user_func_array( $tag[1], array( $value, $field_name, $this->row, &$this ) );
|
4772 |
}
|
4773 |
|
4774 |
-
$before =
|
|
|
4775 |
|
4776 |
if ( isset( $tag[2] ) && ! empty( $tag[2] ) ) {
|
4777 |
$before = $tag[2];
|
@@ -4911,27 +4928,28 @@ class PodsUI {
|
|
4911 |
if ( pods_is_admin( array( 'pods', 'pods_content' ) ) ) {
|
4912 |
$restricted = false;
|
4913 |
} elseif ( 'manage' === $action ) {
|
4914 |
-
if ( ! in_array( 'edit', $this->actions_disabled ) && current_user_can( 'pods_edit_' . $this->pod->pod )
|
4915 |
$restricted = false;
|
4916 |
-
} elseif ( ! in_array( 'delete', $this->actions_disabled ) && current_user_can( 'pods_delete_' . $this->pod->pod )
|
4917 |
$restricted = false;
|
4918 |
-
} elseif ( current_user_can( 'pods_' . $action . '_' . $this->pod->pod )
|
4919 |
$restricted = false;
|
4920 |
}
|
4921 |
-
} elseif ( current_user_can( 'pods_' . $action . '_' . $this->pod->pod )
|
4922 |
$restricted = false;
|
4923 |
}
|
4924 |
}//end if
|
4925 |
/*
|
4926 |
-
|
4927 |
-
|
4928 |
-
|
4929 |
-
|
4930 |
-
|
4931 |
-
|
4932 |
-
|
4933 |
-
|
4934 |
-
|
|
|
4935 |
}//end if
|
4936 |
|
4937 |
if ( $restricted && ! empty( $restrict ) ) {
|
@@ -5080,9 +5098,10 @@ class PodsUI {
|
|
5080 |
$okay = false;
|
5081 |
}
|
5082 |
/*
|
5083 |
-
|
5084 |
-
|
5085 |
-
|
|
|
5086 |
|
5087 |
if ( ! $okay && ! empty( $row ) ) {
|
5088 |
foreach ( $this->restrict['author_restrict'] as $key => $val ) {
|
525 |
// @todo This is also done in setup(), maybe a better / more central way?
|
526 |
if ( is_object( $this->pod ) && ! empty( $this->pod->pod_data['options'] ) ) {
|
527 |
$pod_options = $this->pod->pod_data['options'];
|
528 |
+
$pod_name = $this->pod->pod_data['name'];
|
529 |
+
$pod_options = apply_filters( "pods_advanced_content_type_pod_data_{$pod_name}", $pod_options, $this->pod->pod_data['name'] );
|
530 |
$pod_options = apply_filters( 'pods_advanced_content_type_pod_data', $pod_options, $this->pod->pod_data['name'] );
|
531 |
|
532 |
$this->label = array_merge( $this->label, $pod_options );
|
1026 |
|
1027 |
if ( is_object( $this->pod ) ) {
|
1028 |
$pod_data = $this->pod->pod_data;
|
1029 |
+
$pod_name = $this->pod->pod_data['name'];
|
1030 |
+
$pod_data = apply_filters( "pods_advanced_content_type_pod_data_{$pod_name}", $pod_data, $this->pod->pod_data['name'] );
|
1031 |
$pod_data = apply_filters( 'pods_advanced_content_type_pod_data', $pod_data, $this->pod->pod_data['name'] );
|
1032 |
|
1033 |
$this->label = array_merge( $this->label, $pod_data['options'] );
|
1620 |
if ( $this->restricted( $this->action ) ) {
|
1621 |
return $this->error( sprintf( __( '<strong>Error:</strong> You do not have access to this %s.', 'pods' ), $this->item ) );
|
1622 |
}
|
1623 |
+
|
1624 |
+
$icon_style = '';
|
1625 |
+
if ( false !== $this->icon ) {
|
1626 |
+
$icon_style = ' style="background-position:0 0;background-size:100%;background-image:url(' . esc_url( $this->icon ) . ');"';
|
1627 |
+
}
|
1628 |
?>
|
1629 |
<div class="wrap pods-ui">
|
1630 |
+
<div id="icon-edit-pages" class="icon32"<?php echo $icon_style; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>>
|
1631 |
+
<br />
|
1632 |
+
</div>
|
|
|
|
|
|
|
1633 |
<h2>
|
1634 |
<?php
|
1635 |
echo wp_kses_post( $this->header['add'] );
|
1679 |
if ( $this->restricted( $this->action ) ) {
|
1680 |
return $this->error( sprintf( __( '<strong>Error:</strong> You do not have access to this %s.', 'pods' ), $this->item ) );
|
1681 |
}
|
1682 |
+
|
1683 |
+
$icon_style = '';
|
1684 |
+
if ( false !== $this->icon ) {
|
1685 |
+
$icon_style = ' style="background-position:0 0;background-size:100%;background-image:url(' . esc_url( $this->icon ) . ');"';
|
1686 |
+
}
|
1687 |
?>
|
1688 |
<div class="wrap pods-ui">
|
1689 |
+
<div id="icon-edit-pages" class="icon32"<?php echo $icon_style; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>>
|
1690 |
+
<br />
|
1691 |
+
</div>
|
|
|
|
|
|
|
1692 |
<h2>
|
1693 |
<?php
|
1694 |
echo wp_kses_post( $this->do_template( $duplicate ? $this->header['duplicate'] : $this->header['edit'] ) );
|
1698 |
array(
|
1699 |
'action' . $this->num => 'add',
|
1700 |
'id' . $this->num => '',
|
1701 |
+
'do' . $this->num => '',
|
1702 |
), self::$allowed, $this->exclusion()
|
1703 |
);
|
1704 |
|
1995 |
|
1996 |
unset( $view_fields );
|
1997 |
// Cleanup
|
1998 |
+
|
1999 |
+
$icon_style = '';
|
2000 |
+
if ( false !== $this->icon ) {
|
2001 |
+
$icon_style = ' style="background-position:0 0;background-size:100%;background-image:url(' . esc_url( $this->icon ) . ');"';
|
2002 |
+
}
|
2003 |
?>
|
2004 |
<div class="wrap pods-ui">
|
2005 |
+
<div id="icon-edit-pages" class="icon32"<?php echo $icon_style; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>>
|
2006 |
+
<br />
|
2007 |
+
</div>
|
|
|
|
|
|
|
2008 |
<h2>
|
2009 |
<?php
|
2010 |
echo wp_kses_post( $this->do_template( $this->header['view'] ) );
|
2014 |
array(
|
2015 |
'action' . $this->num => 'add',
|
2016 |
'id' . $this->num => '',
|
2017 |
+
'do' . $this->num => '',
|
2018 |
), self::$allowed, $this->exclusion()
|
2019 |
);
|
2020 |
|
2242 |
continue;
|
2243 |
}
|
2244 |
|
2245 |
+
$callback = $this->callback( 'delete', $id );
|
2246 |
+
if ( $callback ) {
|
2247 |
$check = $callback;
|
2248 |
} elseif ( is_object( $this->pod ) ) {
|
2249 |
$check = $this->pod->delete( $id );
|
2459 |
$value = null;
|
2460 |
|
2461 |
// use PodsData to get field
|
2462 |
+
$callback = $this->callback( 'get_field', $field );
|
2463 |
+
if ( $callback ) {
|
2464 |
return $callback;
|
2465 |
}
|
2466 |
|
2813 |
$this->screen_meta();
|
2814 |
|
2815 |
if ( true === $reorder ) {
|
2816 |
+
wp_enqueue_script( 'jquery-ui-sortable' );
|
2817 |
+
}
|
2818 |
+
|
2819 |
+
$icon_style = '';
|
2820 |
+
if ( false !== $this->icon ) {
|
2821 |
+
$icon_style = ' style="background-position:0 0;background-size:100%;background-image:url(' . esc_url( $this->icon ) . ');"';
|
2822 |
+
}
|
2823 |
+
|
2824 |
?>
|
2825 |
<div class="wrap pods-admin pods-ui">
|
2826 |
+
<div id="icon-edit-pages" class="icon32"<?php echo $icon_style; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>>
|
2827 |
+
<br />
|
2828 |
+
</div>
|
|
|
|
|
2829 |
<h2>
|
2830 |
<?php
|
2831 |
if ( true === $reorder ) {
|
3149 |
</form>
|
3150 |
<?php
|
3151 |
} elseif ( ! in_array( 'export', $this->actions_disabled ) && ! in_array( 'export', $this->actions_hidden ) ) {
|
3152 |
+
$export_document_location = pods_slash(
|
3153 |
+
pods_query_arg(
|
3154 |
+
array(
|
3155 |
+
'action_bulk' . $this->num => 'export',
|
3156 |
+
'_wpnonce' => wp_create_nonce( 'pods-ui-action-bulk' ),
|
3157 |
+
), self::$allowed, $this->exclusion()
|
3158 |
+
)
|
3159 |
+
);
|
3160 |
?>
|
3161 |
<div class="alignleft actions">
|
3162 |
+
<input type="button" value="<?php echo esc_attr( sprintf( __( 'Export all %s', 'pods' ), $this->items ) ); ?>" class="button" onclick="document.location='<?php echo $export_document_location; ?>';" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3163 |
</div>
|
3164 |
<?php
|
3165 |
}//end if
|
3369 |
|
3370 |
$data_filter = 'filter_' . $filter;
|
3371 |
|
3372 |
+
$start = '';
|
3373 |
+
$end = '';
|
3374 |
+
$value_label = '';
|
3375 |
|
3376 |
if ( in_array( $filter_field['type'], array( 'date', 'datetime', 'time' ) ) ) {
|
3377 |
$start = pods_var_raw( 'filter_' . $filter . '_start', 'get', '', null, true );
|
4455 |
*/
|
4456 |
public function screen_meta() {
|
4457 |
|
4458 |
+
$screen_html = '';
|
4459 |
+
$help_html = '';
|
4460 |
+
$screen_link = '';
|
4461 |
+
$help_link = '';
|
4462 |
if ( ! empty( $this->screen_options ) && ! empty( $this->help ) ) {
|
4463 |
foreach ( $this->ui_page as $page ) {
|
4464 |
if ( isset( $this->screen_options[ $page ] ) ) {
|
4787 |
$value = call_user_func_array( $tag[1], array( $value, $field_name, $this->row, &$this ) );
|
4788 |
}
|
4789 |
|
4790 |
+
$before = '';
|
4791 |
+
$after = '';
|
4792 |
|
4793 |
if ( isset( $tag[2] ) && ! empty( $tag[2] ) ) {
|
4794 |
$before = $tag[2];
|
4928 |
if ( pods_is_admin( array( 'pods', 'pods_content' ) ) ) {
|
4929 |
$restricted = false;
|
4930 |
} elseif ( 'manage' === $action ) {
|
4931 |
+
if ( ! in_array( 'edit', $this->actions_disabled ) && ( current_user_can( 'pods_edit_' . $this->pod->pod ) || current_user_can( 'pods_edit_others_' . $this->pod->pod ) ) ) {
|
4932 |
$restricted = false;
|
4933 |
+
} elseif ( ! in_array( 'delete', $this->actions_disabled ) && ( current_user_can( 'pods_delete_' . $this->pod->pod ) || current_user_can( 'pods_delete_others_' . $this->pod->pod ) ) ) {
|
4934 |
$restricted = false;
|
4935 |
+
} elseif ( current_user_can( 'pods_' . $action . '_' . $this->pod->pod ) || current_user_can( 'pods_' . $action . '_others_' . $this->pod->pod ) ) {
|
4936 |
$restricted = false;
|
4937 |
}
|
4938 |
+
} elseif ( current_user_can( 'pods_' . $action . '_' . $this->pod->pod ) || current_user_can( 'pods_' . $action . '_others_' . $this->pod->pod ) ) {
|
4939 |
$restricted = false;
|
4940 |
}
|
4941 |
}//end if
|
4942 |
/*
|
4943 |
+
@todo determine proper logic for non-pods capabilities
|
4944 |
+
else {
|
4945 |
+
$restricted = true;
|
4946 |
+
|
4947 |
+
if ( pods_is_admin( array( 'pods', 'pods_content' ) ) )
|
4948 |
+
$restricted = false;
|
4949 |
+
elseif ( current_user_can( 'pods_' . $action . '_others_' . $_tbd ) )
|
4950 |
+
$restricted = false;
|
4951 |
+
}
|
4952 |
+
*/
|
4953 |
}//end if
|
4954 |
|
4955 |
if ( $restricted && ! empty( $restrict ) ) {
|
5098 |
$okay = false;
|
5099 |
}
|
5100 |
/*
|
5101 |
+
@todo determine proper logic for non-pods capabilities
|
5102 |
+
elseif ( !current_user_can( 'pods_' . $action . '_' . $_tbd ) )
|
5103 |
+
$okay = false;
|
5104 |
+
*/
|
5105 |
|
5106 |
if ( ! $okay && ! empty( $row ) ) {
|
5107 |
foreach ( $this->restrict['author_restrict'] as $key => $val ) {
|
classes/PodsView.php
CHANGED
@@ -120,7 +120,7 @@ class PodsView {
|
|
120 |
self::set( 'pods-view-' . $cache_key . $view_id, $output, $expires, $cache_mode, 'pods_view' );
|
121 |
}
|
122 |
|
123 |
-
$output = apply_filters(
|
124 |
$output = apply_filters( 'pods_view_output', $output, $view, $data, $expires, $cache_mode );
|
125 |
|
126 |
return $output;
|
@@ -211,7 +211,7 @@ class PodsView {
|
|
211 |
} elseif ( 'option-cache' === $cache_mode && ! in_array( $cache_mode, $nocache ) ) {
|
212 |
global $_wp_using_ext_object_cache;
|
213 |
|
214 |
-
$pre = apply_filters(
|
215 |
|
216 |
if ( false !== $pre ) {
|
217 |
$value = $pre;
|
@@ -263,7 +263,7 @@ class PodsView {
|
|
263 |
}//end if
|
264 |
|
265 |
if ( false !== $value ) {
|
266 |
-
$value = apply_filters(
|
267 |
}
|
268 |
} else {
|
269 |
$value = false;
|
@@ -278,7 +278,7 @@ class PodsView {
|
|
278 |
}
|
279 |
}
|
280 |
|
281 |
-
$value = apply_filters(
|
282 |
|
283 |
return $value;
|
284 |
}
|
@@ -335,7 +335,7 @@ class PodsView {
|
|
335 |
} elseif ( 'option-cache' === $cache_mode ) {
|
336 |
global $_wp_using_ext_object_cache;
|
337 |
|
338 |
-
$value = apply_filters(
|
339 |
|
340 |
if ( $_wp_using_ext_object_cache ) {
|
341 |
$result = wp_cache_set( $key, $value, ( empty( $group ) ? 'pods_option_cache' : $group ) );
|
@@ -363,12 +363,12 @@ class PodsView {
|
|
363 |
}//end if
|
364 |
|
365 |
if ( $result ) {
|
366 |
-
do_action(
|
367 |
do_action( 'setted_transient', $key );
|
368 |
}
|
369 |
}//end if
|
370 |
|
371 |
-
do_action(
|
372 |
|
373 |
return $value;
|
374 |
}
|
@@ -406,7 +406,8 @@ class PodsView {
|
|
406 |
$group_key = $group . '_';
|
407 |
}
|
408 |
|
409 |
-
$full_key
|
|
|
410 |
|
411 |
if ( true !== $key ) {
|
412 |
// Get proper cache key
|
@@ -450,7 +451,7 @@ class PodsView {
|
|
450 |
} elseif ( 'option-cache' === $cache_mode ) {
|
451 |
global $_wp_using_ext_object_cache;
|
452 |
|
453 |
-
do_action(
|
454 |
|
455 |
if ( $_wp_using_ext_object_cache ) {
|
456 |
$result = wp_cache_delete( $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
|
@@ -472,7 +473,7 @@ class PodsView {
|
|
472 |
}
|
473 |
}//end if
|
474 |
|
475 |
-
do_action(
|
476 |
|
477 |
return true;
|
478 |
}
|
@@ -488,7 +489,8 @@ class PodsView {
|
|
488 |
public static function get_template_part( $_view, $_data = null ) {
|
489 |
|
490 |
/*
|
491 |
-
|
|
|
492 |
if ( 0 === strpos( $_view, 'http://' ) || 0 === strpos( $_view, 'https://' ) ) {
|
493 |
$_view = apply_filters( 'pods_view_url_include', $_view );
|
494 |
|
120 |
self::set( 'pods-view-' . $cache_key . $view_id, $output, $expires, $cache_mode, 'pods_view' );
|
121 |
}
|
122 |
|
123 |
+
$output = apply_filters( "pods_view_output_{$cache_key}", $output, $view, $data, $expires, $cache_mode );
|
124 |
$output = apply_filters( 'pods_view_output', $output, $view, $data, $expires, $cache_mode );
|
125 |
|
126 |
return $output;
|
211 |
} elseif ( 'option-cache' === $cache_mode && ! in_array( $cache_mode, $nocache ) ) {
|
212 |
global $_wp_using_ext_object_cache;
|
213 |
|
214 |
+
$pre = apply_filters( "pre_transient_{$key}", false );
|
215 |
|
216 |
if ( false !== $pre ) {
|
217 |
$value = $pre;
|
263 |
}//end if
|
264 |
|
265 |
if ( false !== $value ) {
|
266 |
+
$value = apply_filters( "transient_{$key}", $value );
|
267 |
}
|
268 |
} else {
|
269 |
$value = false;
|
278 |
}
|
279 |
}
|
280 |
|
281 |
+
$value = apply_filters( "pods_view_get_{$cache_mode}", $value, $original_key, $group );
|
282 |
|
283 |
return $value;
|
284 |
}
|
335 |
} elseif ( 'option-cache' === $cache_mode ) {
|
336 |
global $_wp_using_ext_object_cache;
|
337 |
|
338 |
+
$value = apply_filters( "pre_set_transient_{$key}", $value );
|
339 |
|
340 |
if ( $_wp_using_ext_object_cache ) {
|
341 |
$result = wp_cache_set( $key, $value, ( empty( $group ) ? 'pods_option_cache' : $group ) );
|
363 |
}//end if
|
364 |
|
365 |
if ( $result ) {
|
366 |
+
do_action( "set_transient_{$key}" );
|
367 |
do_action( 'setted_transient', $key );
|
368 |
}
|
369 |
}//end if
|
370 |
|
371 |
+
do_action( "pods_view_set_{$cache_mode}", $original_key, $value, $expires, $group );
|
372 |
|
373 |
return $value;
|
374 |
}
|
406 |
$group_key = $group . '_';
|
407 |
}
|
408 |
|
409 |
+
$full_key = $key;
|
410 |
+
$original_key = $key;
|
411 |
|
412 |
if ( true !== $key ) {
|
413 |
// Get proper cache key
|
451 |
} elseif ( 'option-cache' === $cache_mode ) {
|
452 |
global $_wp_using_ext_object_cache;
|
453 |
|
454 |
+
do_action( "delete_transient_{$key}", $key );
|
455 |
|
456 |
if ( $_wp_using_ext_object_cache ) {
|
457 |
$result = wp_cache_delete( $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
|
473 |
}
|
474 |
}//end if
|
475 |
|
476 |
+
do_action( "pods_view_clear_{$cache_mode}", $original_key, $group );
|
477 |
|
478 |
return true;
|
479 |
}
|
489 |
public static function get_template_part( $_view, $_data = null ) {
|
490 |
|
491 |
/*
|
492 |
+
To be reviewed later, should have more checks and restrictions like a whitelist etc.
|
493 |
+
|
494 |
if ( 0 === strpos( $_view, 'http://' ) || 0 === strpos( $_view, 'https://' ) ) {
|
495 |
$_view = apply_filters( 'pods_view_url_include', $_view );
|
496 |
|
classes/fields/code.php
CHANGED
@@ -114,7 +114,7 @@ class PodsField_Code extends PodsField {
|
|
114 |
|
115 |
$field_type = 'codemirror';
|
116 |
|
117 |
-
do_action(
|
118 |
do_action( 'pods_form_ui_field_code', $field_type, $name, $value, $options, $pod, $id );
|
119 |
|
120 |
pods_view( PODS_DIR . 'ui/fields/' . $field_type . '.php', compact( array_keys( get_defined_vars() ) ) );
|
114 |
|
115 |
$field_type = 'codemirror';
|
116 |
|
117 |
+
do_action( "pods_form_ui_field_code_{$field_type}", $name, $value, $options, $pod, $id );
|
118 |
do_action( 'pods_form_ui_field_code', $field_type, $name, $value, $options, $pod, $id );
|
119 |
|
120 |
pods_view( PODS_DIR . 'ui/fields/' . $field_type . '.php', compact( array_keys( get_defined_vars() ) ) );
|
classes/fields/file.php
CHANGED
@@ -58,6 +58,8 @@ class PodsField_File extends PodsField {
|
|
58 |
$image_sizes[ $size ] = ucwords( str_replace( '-', ' ', $size ) );
|
59 |
}
|
60 |
|
|
|
|
|
61 |
$options = array(
|
62 |
static::$type . '_format_type' => array(
|
63 |
'label' => __( 'Upload Limit', 'pods' ),
|
@@ -74,7 +76,8 @@ class PodsField_File extends PodsField {
|
|
74 |
'default' => 'attachment',
|
75 |
'type' => 'pick',
|
76 |
'data' => apply_filters(
|
77 |
-
|
|
|
78 |
'attachment' => __( 'Upload and/or Select (Media Library)', 'pods' ),
|
79 |
'plupload' => __( 'Upload only (Plupload)', 'pods' ),
|
80 |
)
|
@@ -122,10 +125,11 @@ class PodsField_File extends PodsField {
|
|
122 |
),
|
123 |
static::$type . '_type' => array(
|
124 |
'label' => __( 'Restrict File Types', 'pods' ),
|
125 |
-
'default' => apply_filters(
|
126 |
'type' => 'pick',
|
127 |
'data' => apply_filters(
|
128 |
-
|
|
|
129 |
'images' => __( 'Images (jpg, jpeg, png, gif)', 'pods' ),
|
130 |
'video' => __( 'Video (mpg, mov, flv, mp4, etc..)', 'pods' ),
|
131 |
'audio' => __( 'Audio (mp3, m4a, wav, wma, etc..)', 'pods' ),
|
@@ -140,17 +144,18 @@ class PodsField_File extends PodsField {
|
|
140 |
'label' => __( 'Allowed File Extensions', 'pods' ),
|
141 |
'description' => __( 'Separate file extensions with a comma (ex. jpg,png,mp4,mov)', 'pods' ),
|
142 |
'depends-on' => array( static::$type . '_type' => 'other' ),
|
143 |
-
'default' => apply_filters(
|
144 |
'type' => 'text',
|
145 |
),
|
146 |
static::$type . '_field_template' => array(
|
147 |
'label' => __( 'List Style', 'pods' ),
|
148 |
'help' => __( 'You can choose which style you would like the files to appear within the form.', 'pods' ),
|
149 |
'depends-on' => array( static::$type . '_type' => 'images' ),
|
150 |
-
'default' => apply_filters(
|
151 |
'type' => 'pick',
|
152 |
'data' => apply_filters(
|
153 |
-
|
|
|
154 |
'rows' => __( 'Rows', 'pods' ),
|
155 |
'tiles' => __( 'Tiles', 'pods' ),
|
156 |
)
|
@@ -652,7 +657,8 @@ class PodsField_File extends PodsField {
|
|
652 |
$value = array( $value );
|
653 |
}
|
654 |
|
655 |
-
$
|
|
|
656 |
|
657 |
return $this->images( $id, $value, $name, $options, $pod, $image_size );
|
658 |
|
@@ -710,7 +716,7 @@ class PodsField_File extends PodsField {
|
|
710 |
$data[ $image_size ] = ucwords( str_replace( '-', ' ', $image_size ) );
|
711 |
}
|
712 |
|
713 |
-
return apply_filters( '
|
714 |
|
715 |
}
|
716 |
|
58 |
$image_sizes[ $size ] = ucwords( str_replace( '-', ' ', $size ) );
|
59 |
}
|
60 |
|
61 |
+
$type = static::$type;
|
62 |
+
|
63 |
$options = array(
|
64 |
static::$type . '_format_type' => array(
|
65 |
'label' => __( 'Upload Limit', 'pods' ),
|
76 |
'default' => 'attachment',
|
77 |
'type' => 'pick',
|
78 |
'data' => apply_filters(
|
79 |
+
"pods_form_ui_field_{$type}_uploader_options",
|
80 |
+
array(
|
81 |
'attachment' => __( 'Upload and/or Select (Media Library)', 'pods' ),
|
82 |
'plupload' => __( 'Upload only (Plupload)', 'pods' ),
|
83 |
)
|
125 |
),
|
126 |
static::$type . '_type' => array(
|
127 |
'label' => __( 'Restrict File Types', 'pods' ),
|
128 |
+
'default' => apply_filters( "pods_form_ui_field_{$type}_type_default", 'images' ),
|
129 |
'type' => 'pick',
|
130 |
'data' => apply_filters(
|
131 |
+
"pods_form_ui_field_{$type}_type_options",
|
132 |
+
array(
|
133 |
'images' => __( 'Images (jpg, jpeg, png, gif)', 'pods' ),
|
134 |
'video' => __( 'Video (mpg, mov, flv, mp4, etc..)', 'pods' ),
|
135 |
'audio' => __( 'Audio (mp3, m4a, wav, wma, etc..)', 'pods' ),
|
144 |
'label' => __( 'Allowed File Extensions', 'pods' ),
|
145 |
'description' => __( 'Separate file extensions with a comma (ex. jpg,png,mp4,mov)', 'pods' ),
|
146 |
'depends-on' => array( static::$type . '_type' => 'other' ),
|
147 |
+
'default' => apply_filters( "pods_form_ui_field_{$type}_extensions_default", '' ),
|
148 |
'type' => 'text',
|
149 |
),
|
150 |
static::$type . '_field_template' => array(
|
151 |
'label' => __( 'List Style', 'pods' ),
|
152 |
'help' => __( 'You can choose which style you would like the files to appear within the form.', 'pods' ),
|
153 |
'depends-on' => array( static::$type . '_type' => 'images' ),
|
154 |
+
'default' => apply_filters( "pods_form_ui_field_{$type}_template_default", 'rows' ),
|
155 |
'type' => 'pick',
|
156 |
'data' => apply_filters(
|
157 |
+
"pods_form_ui_field_{$type}_type_templates",
|
158 |
+
array(
|
159 |
'rows' => __( 'Rows', 'pods' ),
|
160 |
'tiles' => __( 'Tiles', 'pods' ),
|
161 |
)
|
657 |
$value = array( $value );
|
658 |
}
|
659 |
|
660 |
+
$type = static::$type;
|
661 |
+
$image_size = apply_filters( "pods_form_ui_field_{$type}_ui_image_size", 'thumbnail', $id, $value, $name, $options, $pod );
|
662 |
|
663 |
return $this->images( $id, $value, $name, $options, $pod, $image_size );
|
664 |
|
716 |
$data[ $image_size ] = ucwords( str_replace( '-', ' ', $image_size ) );
|
717 |
}
|
718 |
|
719 |
+
return apply_filters( 'pods_form_ui_field_pick_data_image_sizes', $data, $name, $value, $options, $pod, $id );
|
720 |
|
721 |
}
|
722 |
|
classes/fields/pick.php
CHANGED
@@ -2579,7 +2579,7 @@ class PodsField_Pick extends PodsField {
|
|
2579 |
$data[ $post_status->name ] = $post_status->label;
|
2580 |
}
|
2581 |
|
2582 |
-
return apply_filters( '
|
2583 |
|
2584 |
}
|
2585 |
|
@@ -2606,7 +2606,7 @@ class PodsField_Pick extends PodsField {
|
|
2606 |
$data[ $key ] = $wp_roles->role_names[ $key ];
|
2607 |
}
|
2608 |
|
2609 |
-
return apply_filters( '
|
2610 |
|
2611 |
}
|
2612 |
|
@@ -2710,7 +2710,7 @@ class PodsField_Pick extends PodsField {
|
|
2710 |
$data[ $capability ] = $capability;
|
2711 |
}
|
2712 |
|
2713 |
-
return apply_filters( '
|
2714 |
|
2715 |
}
|
2716 |
|
@@ -2737,7 +2737,7 @@ class PodsField_Pick extends PodsField {
|
|
2737 |
$data[ $image_size ] = ucwords( str_replace( '-', ' ', $image_size ) );
|
2738 |
}
|
2739 |
|
2740 |
-
return apply_filters( '
|
2741 |
|
2742 |
}
|
2743 |
|
@@ -3023,7 +3023,7 @@ class PodsField_Pick extends PodsField {
|
|
3023 |
'AX' => __( 'Åland Islands' ),
|
3024 |
);
|
3025 |
|
3026 |
-
return apply_filters( '
|
3027 |
|
3028 |
}
|
3029 |
|
@@ -3096,7 +3096,7 @@ class PodsField_Pick extends PodsField {
|
|
3096 |
'WY' => __( 'Wyoming' ),
|
3097 |
);
|
3098 |
|
3099 |
-
return apply_filters( '
|
3100 |
|
3101 |
}
|
3102 |
|
@@ -3131,7 +3131,7 @@ class PodsField_Pick extends PodsField {
|
|
3131 |
'YT' => __( 'Yukon' ),
|
3132 |
);
|
3133 |
|
3134 |
-
return apply_filters( '
|
3135 |
|
3136 |
}
|
3137 |
|
2579 |
$data[ $post_status->name ] = $post_status->label;
|
2580 |
}
|
2581 |
|
2582 |
+
return apply_filters( 'pods_form_ui_field_pick_data_post_stati', $data, $name, $value, $options, $pod, $id );
|
2583 |
|
2584 |
}
|
2585 |
|
2606 |
$data[ $key ] = $wp_roles->role_names[ $key ];
|
2607 |
}
|
2608 |
|
2609 |
+
return apply_filters( 'pods_form_ui_field_pick_data_roles', $data, $name, $value, $options, $pod, $id );
|
2610 |
|
2611 |
}
|
2612 |
|
2710 |
$data[ $capability ] = $capability;
|
2711 |
}
|
2712 |
|
2713 |
+
return apply_filters( 'pods_form_ui_field_pick_data_capabilities', $data, $name, $value, $options, $pod, $id );
|
2714 |
|
2715 |
}
|
2716 |
|
2737 |
$data[ $image_size ] = ucwords( str_replace( '-', ' ', $image_size ) );
|
2738 |
}
|
2739 |
|
2740 |
+
return apply_filters( 'pods_form_ui_field_pick_data_image_sizes', $data, $name, $value, $options, $pod, $id );
|
2741 |
|
2742 |
}
|
2743 |
|
3023 |
'AX' => __( 'Åland Islands' ),
|
3024 |
);
|
3025 |
|
3026 |
+
return apply_filters( 'pods_form_ui_field_pick_data_countries', $data, $name, $value, $options, $pod, $id );
|
3027 |
|
3028 |
}
|
3029 |
|
3096 |
'WY' => __( 'Wyoming' ),
|
3097 |
);
|
3098 |
|
3099 |
+
return apply_filters( 'pods_form_ui_field_pick_data_us_states', $data, $name, $value, $options, $pod, $id );
|
3100 |
|
3101 |
}
|
3102 |
|
3131 |
'YT' => __( 'Yukon' ),
|
3132 |
);
|
3133 |
|
3134 |
+
return apply_filters( 'pods_form_ui_field_pick_data_ca_provinces', $data, $name, $value, $options, $pod, $id );
|
3135 |
|
3136 |
}
|
3137 |
|
classes/fields/time.php
CHANGED
@@ -160,6 +160,15 @@ class PodsField_Time extends PodsField_DateTime {
|
|
160 |
return $schema;
|
161 |
}
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
/**
|
164 |
* Convert value to the correct format for display.
|
165 |
*
|
@@ -180,7 +189,7 @@ class PodsField_Time extends PodsField_DateTime {
|
|
180 |
$format = $this->convert_format( $format, array( 'source' => 'jquery_ui' ) );
|
181 |
}
|
182 |
|
183 |
-
if ( !
|
184 |
// Try default storage format.
|
185 |
$date = $this->createFromFormat( static::$storage_format, (string) $value );
|
186 |
|
160 |
return $schema;
|
161 |
}
|
162 |
|
163 |
+
/**
|
164 |
+
* {@inheritdoc}
|
165 |
+
*/
|
166 |
+
public function is_empty( $value = null ) {
|
167 |
+
|
168 |
+
$value = trim ( $value );
|
169 |
+
return empty( $value );
|
170 |
+
}
|
171 |
+
|
172 |
/**
|
173 |
* Convert value to the correct format for display.
|
174 |
*
|
189 |
$format = $this->convert_format( $format, array( 'source' => 'jquery_ui' ) );
|
190 |
}
|
191 |
|
192 |
+
if ( ! $this->is_empty( $value ) ) {
|
193 |
// Try default storage format.
|
194 |
$date = $this->createFromFormat( static::$storage_format, (string) $value );
|
195 |
|
classes/fields/wysiwyg.php
CHANGED
@@ -240,7 +240,8 @@ class PodsField_WYSIWYG extends PodsField {
|
|
240 |
$field_type = 'cleditor';
|
241 |
} else {
|
242 |
// Support custom WYSIWYG integration
|
243 |
-
|
|
|
244 |
do_action( 'pods_form_ui_field_wysiwyg', pods_v( static::$type . '_editor', $options ), $name, $value, $options, $pod, $id );
|
245 |
|
246 |
return;
|
240 |
$field_type = 'cleditor';
|
241 |
} else {
|
242 |
// Support custom WYSIWYG integration
|
243 |
+
$editor_type = pods_v( static::$type . '_editor', $options );
|
244 |
+
do_action( "pods_form_ui_field_wysiwyg_{$editor_type}", $name, $value, $options, $pod, $id );
|
245 |
do_action( 'pods_form_ui_field_wysiwyg', pods_v( static::$type . '_editor', $options ), $name, $value, $options, $pod, $id );
|
246 |
|
247 |
return;
|
components/Advanced-Relationships.php
CHANGED
@@ -115,7 +115,7 @@ class Pods_Advanced_Relationships extends PodsComponent {
|
|
115 |
$data[ $theme->Template ] = $theme->Name;
|
116 |
}
|
117 |
|
118 |
-
return apply_filters( '
|
119 |
}
|
120 |
|
121 |
/**
|
@@ -157,7 +157,7 @@ class Pods_Advanced_Relationships extends PodsComponent {
|
|
157 |
$data[ $page_template_file ] = $page_template;
|
158 |
}
|
159 |
|
160 |
-
return apply_filters( '
|
161 |
}
|
162 |
|
163 |
/**
|
@@ -185,7 +185,7 @@ class Pods_Advanced_Relationships extends PodsComponent {
|
|
185 |
}
|
186 |
}
|
187 |
|
188 |
-
return apply_filters( '
|
189 |
}
|
190 |
|
191 |
/**
|
@@ -217,7 +217,7 @@ class Pods_Advanced_Relationships extends PodsComponent {
|
|
217 |
$data[ $post_type->name ] = $post_type->label;
|
218 |
}
|
219 |
|
220 |
-
return apply_filters( '
|
221 |
}
|
222 |
|
223 |
/**
|
@@ -249,7 +249,7 @@ class Pods_Advanced_Relationships extends PodsComponent {
|
|
249 |
$data[ $taxonomy->name ] = $taxonomy->label;
|
250 |
}
|
251 |
|
252 |
-
return apply_filters( '
|
253 |
}
|
254 |
|
255 |
}
|
115 |
$data[ $theme->Template ] = $theme->Name;
|
116 |
}
|
117 |
|
118 |
+
return apply_filters( 'pods_form_ui_field_pick_data_themes', $data, $name, $value, $options, $pod, $id );
|
119 |
}
|
120 |
|
121 |
/**
|
157 |
$data[ $page_template_file ] = $page_template;
|
158 |
}
|
159 |
|
160 |
+
return apply_filters( 'pods_form_ui_field_pick_data_page_templates', $data, $name, $value, $options, $pod, $id );
|
161 |
}
|
162 |
|
163 |
/**
|
185 |
}
|
186 |
}
|
187 |
|
188 |
+
return apply_filters( 'pods_form_ui_field_pick_data_sidebars', $data, $name, $value, $options, $pod, $id );
|
189 |
}
|
190 |
|
191 |
/**
|
217 |
$data[ $post_type->name ] = $post_type->label;
|
218 |
}
|
219 |
|
220 |
+
return apply_filters( 'pods_form_ui_field_pick_data_post_types', $data, $name, $value, $options, $pod, $id );
|
221 |
}
|
222 |
|
223 |
/**
|
249 |
$data[ $taxonomy->name ] = $taxonomy->label;
|
250 |
}
|
251 |
|
252 |
+
return apply_filters( 'pods_form_ui_field_pick_data_taxonomies', $data, $name, $value, $options, $pod, $id );
|
253 |
}
|
254 |
|
255 |
}
|
components/Helpers.php
CHANGED
@@ -510,10 +510,12 @@ class Pods_Helpers extends PodsComponent {
|
|
510 |
}
|
511 |
}//end if
|
512 |
|
|
|
|
|
513 |
$out = ob_get_clean();
|
514 |
|
515 |
$out = apply_filters( 'pods_helpers_post_helper', $out, $params, $helper );
|
516 |
-
$out = apply_filters(
|
517 |
|
518 |
return $out;
|
519 |
}
|
510 |
}
|
511 |
}//end if
|
512 |
|
513 |
+
$slug = $helper['slug'];
|
514 |
+
|
515 |
$out = ob_get_clean();
|
516 |
|
517 |
$out = apply_filters( 'pods_helpers_post_helper', $out, $params, $helper );
|
518 |
+
$out = apply_filters( "pods_helpers_post_helper_{$slug}", $out, $params, $helper );
|
519 |
|
520 |
return $out;
|
521 |
}
|
components/Migrate-Packages/Migrate-Packages.php
CHANGED
@@ -384,12 +384,13 @@ class Pods_Migrate_Packages extends PodsComponent {
|
|
384 |
}
|
385 |
|
386 |
if ( isset( $existing_fields[ $field['name'] ] ) ) {
|
387 |
-
|
388 |
array(
|
389 |
'name' => $field['name'],
|
390 |
'pod' => $pod['name'],
|
391 |
)
|
392 |
-
)
|
|
|
393 |
$pod['fields'][ $k ]['id'] = $existing_field['id'];
|
394 |
}
|
395 |
}
|
384 |
}
|
385 |
|
386 |
if ( isset( $existing_fields[ $field['name'] ] ) ) {
|
387 |
+
$existing_field = pods_api()->load_field(
|
388 |
array(
|
389 |
'name' => $field['name'],
|
390 |
'pod' => $pod['name'],
|
391 |
)
|
392 |
+
);
|
393 |
+
if ( $existing_field ) {
|
394 |
$pod['fields'][ $k ]['id'] = $existing_field['id'];
|
395 |
}
|
396 |
}
|
components/Roles/Roles.php
CHANGED
@@ -176,7 +176,9 @@ class Pods_Roles extends PodsComponent {
|
|
176 |
|
177 |
$capabilities = $this->get_capabilities();
|
178 |
|
179 |
-
$role_name
|
|
|
|
|
180 |
|
181 |
foreach ( $wp_roles->role_objects as $key => $role ) {
|
182 |
if ( $key != $id ) {
|
176 |
|
177 |
$capabilities = $this->get_capabilities();
|
178 |
|
179 |
+
$role_name = null;
|
180 |
+
$role_label = null;
|
181 |
+
$role_capabilities = null;
|
182 |
|
183 |
foreach ( $wp_roles->role_objects as $key => $role ) {
|
184 |
if ( $key != $id ) {
|
components/Roles/ui/edit.php
CHANGED
@@ -128,7 +128,7 @@
|
|
128 |
</ul>
|
129 |
|
130 |
<p>
|
131 |
-
<a href="#add-capability" id="add-capability" class="button"
|
132 |
</p>
|
133 |
</div>
|
134 |
</div>
|
@@ -139,9 +139,8 @@
|
|
139 |
</div>
|
140 |
<!-- /#normal-sortables -->
|
141 |
|
142 |
-
|
143 |
-
|
144 |
-
/#advanced-sortables -->
|
145 |
|
146 |
</div>
|
147 |
<!-- /#post-body-content -->
|
128 |
</ul>
|
129 |
|
130 |
<p>
|
131 |
+
<a href="#add-capability" id="add-capability" class="button"><?php _e( 'Add Another Custom Capability', 'pods' ); ?></a>
|
132 |
</p>
|
133 |
</div>
|
134 |
</div>
|
139 |
</div>
|
140 |
<!-- /#normal-sortables -->
|
141 |
|
142 |
+
<!-- <div id="advanced-sortables" class="meta-box-sortables ui-sortable"></div> -->
|
143 |
+
<!-- /#advanced-sortables -->
|
|
|
144 |
|
145 |
</div>
|
146 |
<!-- /#post-body-content -->
|
components/Templates/Templates.php
CHANGED
@@ -518,8 +518,10 @@ class Pods_Templates extends PodsComponent {
|
|
518 |
}
|
519 |
}
|
520 |
|
|
|
|
|
521 |
$code = apply_filters( 'pods_templates_pre_template', $code, $template, $obj );
|
522 |
-
$code = apply_filters(
|
523 |
|
524 |
ob_start();
|
525 |
|
@@ -553,7 +555,7 @@ class Pods_Templates extends PodsComponent {
|
|
553 |
$out = ob_get_clean();
|
554 |
|
555 |
$out = apply_filters( 'pods_templates_post_template', $out, $code, $template, $obj );
|
556 |
-
$out = apply_filters(
|
557 |
|
558 |
return $out;
|
559 |
}
|
518 |
}
|
519 |
}
|
520 |
|
521 |
+
$slug = $template['slug'];
|
522 |
+
|
523 |
$code = apply_filters( 'pods_templates_pre_template', $code, $template, $obj );
|
524 |
+
$code = apply_filters( "pods_templates_pre_template_{$slug}", $code, $template, $obj );
|
525 |
|
526 |
ob_start();
|
527 |
|
555 |
$out = ob_get_clean();
|
556 |
|
557 |
$out = apply_filters( 'pods_templates_post_template', $out, $code, $template, $obj );
|
558 |
+
$out = apply_filters( "pods_templates_post_template_{$slug}", $out, $code, $template, $obj );
|
559 |
|
560 |
return $out;
|
561 |
}
|
components/Templates/includes/element-view_template.php
CHANGED
@@ -5,19 +5,18 @@
|
|
5 |
* @package Pods_templates
|
6 |
*/
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
?>
|
9 |
<div class="pods-compat-container">
|
10 |
-
<textarea id="content" name="content">
|
11 |
-
<?php
|
12 |
-
if ( isset( $content ) ) {
|
13 |
-
// WordPress will already call esc_textarea() if richedit is off, don't escape twice (see #3462)
|
14 |
-
if ( ! user_can_richedit() ) {
|
15 |
-
// phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
16 |
-
echo $content;
|
17 |
-
} else {
|
18 |
-
echo esc_textarea( $content );
|
19 |
-
}
|
20 |
-
}
|
21 |
-
?>
|
22 |
-
</textarea>
|
23 |
</div>
|
5 |
* @package Pods_templates
|
6 |
*/
|
7 |
|
8 |
+
$pods_output = '';
|
9 |
+
if ( isset( $content ) ) {
|
10 |
+
|
11 |
+
// WordPress will already call esc_textarea() if richedit is off, don't escape twice (see #3462)
|
12 |
+
if ( ! user_can_richedit() ) {
|
13 |
+
// phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
14 |
+
$pods_output = $content;
|
15 |
+
} else {
|
16 |
+
$pods_output = esc_textarea( $content );
|
17 |
+
}
|
18 |
+
}
|
19 |
?>
|
20 |
<div class="pods-compat-container">
|
21 |
+
<textarea id="content" name="content"><?php echo $pods_output; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?></textarea>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
</div>
|
components/Templates/includes/functions-view_template.php
CHANGED
@@ -404,7 +404,9 @@ function frontier_pseudo_magic_tags( $template, $data, $pod = null, $skip_unknow
|
|
404 |
|
405 |
$field_name = $tag[0];
|
406 |
|
407 |
-
$helper_name =
|
|
|
|
|
408 |
|
409 |
if ( isset( $data[ $field_name ] ) ) {
|
410 |
$value = $data[ $field_name ];
|
404 |
|
405 |
$field_name = $tag[0];
|
406 |
|
407 |
+
$helper_name = '';
|
408 |
+
$before = '';
|
409 |
+
$after = '';
|
410 |
|
411 |
if ( isset( $data[ $field_name ] ) ) {
|
412 |
$value = $data[ $field_name ];
|
deprecated/classes/Pods.php
CHANGED
@@ -147,7 +147,9 @@ class Pods_Deprecated {
|
|
147 |
$pick_val = $pick_pod['name'];
|
148 |
}
|
149 |
|
150 |
-
$pick_table =
|
|
|
|
|
151 |
|
152 |
$pick_field_id = 'id';
|
153 |
$pick_field_name = 'name';
|
147 |
$pick_val = $pick_pod['name'];
|
148 |
}
|
149 |
|
150 |
+
$pick_table = '';
|
151 |
+
$pick_join = '';
|
152 |
+
$pick_where = '';
|
153 |
|
154 |
$pick_field_id = 'id';
|
155 |
$pick_field_name = 'name';
|
deprecated/list_filters.php
CHANGED
@@ -22,7 +22,9 @@
|
|
22 |
$pick_object = $pick_pod['type'];
|
23 |
$pick_val = $pick_pod['object'];
|
24 |
}
|
25 |
-
$pick_table =
|
|
|
|
|
26 |
$pick_column_id = 'id';
|
27 |
switch ( $pick_object ) {
|
28 |
case 'pod':
|
22 |
$pick_object = $pick_pod['type'];
|
23 |
$pick_val = $pick_pod['object'];
|
24 |
}
|
25 |
+
$pick_table = '';
|
26 |
+
$pick_join = '';
|
27 |
+
$pick_where = '';
|
28 |
$pick_column_id = 'id';
|
29 |
switch ( $pick_object ) {
|
30 |
case 'pod':
|
includes/data.php
CHANGED
@@ -403,7 +403,8 @@ function pods_v( $var = null, $type = 'get', $default = null, $strict = false, $
|
|
403 |
$output = get_stylesheet_directory_uri();
|
404 |
break;
|
405 |
case 'site-url':
|
406 |
-
$blog_id =
|
|
|
407 |
$path = '';
|
408 |
|
409 |
if ( is_array( $var ) ) {
|
@@ -421,7 +422,8 @@ function pods_v( $var = null, $type = 'get', $default = null, $strict = false, $
|
|
421 |
$output = get_site_url( $blog_id, $path, $scheme );
|
422 |
break;
|
423 |
case 'home-url':
|
424 |
-
$blog_id =
|
|
|
425 |
$path = '';
|
426 |
|
427 |
if ( is_array( $var ) ) {
|
@@ -439,7 +441,8 @@ function pods_v( $var = null, $type = 'get', $default = null, $strict = false, $
|
|
439 |
$output = get_home_url( $blog_id, $path, $scheme );
|
440 |
break;
|
441 |
case 'admin-url':
|
442 |
-
$blog_id =
|
|
|
443 |
$path = '';
|
444 |
|
445 |
if ( is_array( $var ) ) {
|
@@ -463,7 +466,8 @@ function pods_v( $var = null, $type = 'get', $default = null, $strict = false, $
|
|
463 |
$output = content_url( $var );
|
464 |
break;
|
465 |
case 'plugins-url':
|
466 |
-
$path
|
|
|
467 |
|
468 |
if ( is_array( $var ) ) {
|
469 |
if ( isset( $var[0] ) ) {
|
@@ -785,7 +789,7 @@ function pods_v( $var = null, $type = 'get', $default = null, $strict = false, $
|
|
785 |
$output = apply_filters( 'pods_var_post_id', $post_id, $default, $var, $strict, $params );
|
786 |
break;
|
787 |
default:
|
788 |
-
$output = apply_filters(
|
789 |
}//end switch
|
790 |
}//end if
|
791 |
|
@@ -973,7 +977,7 @@ function pods_v_set( $value, $var, $type = 'get' ) {
|
|
973 |
$ret = $pods->save( $var, $value );
|
974 |
}
|
975 |
} else {
|
976 |
-
$ret = apply_filters(
|
977 |
}//end if
|
978 |
}//end if
|
979 |
|
403 |
$output = get_stylesheet_directory_uri();
|
404 |
break;
|
405 |
case 'site-url':
|
406 |
+
$blog_id = null;
|
407 |
+
$scheme = null;
|
408 |
$path = '';
|
409 |
|
410 |
if ( is_array( $var ) ) {
|
422 |
$output = get_site_url( $blog_id, $path, $scheme );
|
423 |
break;
|
424 |
case 'home-url':
|
425 |
+
$blog_id = null;
|
426 |
+
$scheme = null;
|
427 |
$path = '';
|
428 |
|
429 |
if ( is_array( $var ) ) {
|
441 |
$output = get_home_url( $blog_id, $path, $scheme );
|
442 |
break;
|
443 |
case 'admin-url':
|
444 |
+
$blog_id = null;
|
445 |
+
$scheme = null;
|
446 |
$path = '';
|
447 |
|
448 |
if ( is_array( $var ) ) {
|
466 |
$output = content_url( $var );
|
467 |
break;
|
468 |
case 'plugins-url':
|
469 |
+
$path = '';
|
470 |
+
$plugin = '';
|
471 |
|
472 |
if ( is_array( $var ) ) {
|
473 |
if ( isset( $var[0] ) ) {
|
789 |
$output = apply_filters( 'pods_var_post_id', $post_id, $default, $var, $strict, $params );
|
790 |
break;
|
791 |
default:
|
792 |
+
$output = apply_filters( "pods_var_{$type}", $default, $var, $strict, $params );
|
793 |
}//end switch
|
794 |
}//end if
|
795 |
|
977 |
$ret = $pods->save( $var, $value );
|
978 |
}
|
979 |
} else {
|
980 |
+
$ret = apply_filters( "pods_var_set_{$type}", $value, $var );
|
981 |
}//end if
|
982 |
}//end if
|
983 |
|
includes/general.php
CHANGED
@@ -777,7 +777,8 @@ function pods_shortcode( $tags, $content = null ) {
|
|
777 |
|
778 |
if ( ! empty( $pod ) ) {
|
779 |
$tags['name'] = get_post_type();
|
780 |
-
$id =
|
|
|
781 |
}
|
782 |
}
|
783 |
|
@@ -999,6 +1000,17 @@ function pods_shortcode( $tags, $content = null ) {
|
|
999 |
$return = do_shortcode( $return );
|
1000 |
}
|
1001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
return $return;
|
1003 |
}
|
1004 |
|
777 |
|
778 |
if ( ! empty( $pod ) ) {
|
779 |
$tags['name'] = get_post_type();
|
780 |
+
$id = get_the_ID();
|
781 |
+
$tags['id'] = get_the_ID();
|
782 |
}
|
783 |
}
|
784 |
|
1000 |
$return = do_shortcode( $return );
|
1001 |
}
|
1002 |
|
1003 |
+
/**
|
1004 |
+
* Allow customization of shortcode output based on shortcode attributes.
|
1005 |
+
*
|
1006 |
+
* @since 2.7.9
|
1007 |
+
*
|
1008 |
+
* @param string $return Shortcode output to return.
|
1009 |
+
* @param array $tags Shortcode attributes.
|
1010 |
+
* @param Pods $pod Pods object.
|
1011 |
+
*/
|
1012 |
+
$return = apply_filters( 'pods_shortcode_output', $return, $tags, $pod );
|
1013 |
+
|
1014 |
return $return;
|
1015 |
}
|
1016 |
|
includes/media.php
CHANGED
@@ -210,7 +210,9 @@ function pods_attachment_import( $url, $post_parent = null, $featured = false )
|
|
210 |
|
211 |
$title = substr( $filename, 0, ( strrpos( $filename, '.' ) ) );
|
212 |
|
213 |
-
|
|
|
|
|
214 |
return 0;
|
215 |
}
|
216 |
|
@@ -252,7 +254,7 @@ function pods_attachment_import( $url, $post_parent = null, $featured = false )
|
|
252 |
require_once ABSPATH . 'wp-admin/includes/media.php';
|
253 |
require_once ABSPATH . 'wp-admin/includes/image.php';
|
254 |
|
255 |
-
wp_update_attachment_metadata( $attachment_id,
|
256 |
|
257 |
if ( 0 < $post_parent && $featured ) {
|
258 |
update_post_meta( $post_parent, '_thumbnail_id', $attachment_id );
|
210 |
|
211 |
$title = substr( $filename, 0, ( strrpos( $filename, '.' ) ) );
|
212 |
|
213 |
+
$uploads = wp_upload_dir( current_time( 'mysql' ) );
|
214 |
+
|
215 |
+
if ( ! ( $uploads && false === $uploads['error'] ) ) {
|
216 |
return 0;
|
217 |
}
|
218 |
|
254 |
require_once ABSPATH . 'wp-admin/includes/media.php';
|
255 |
require_once ABSPATH . 'wp-admin/includes/image.php';
|
256 |
|
257 |
+
wp_update_attachment_metadata( $attachment_id, wp_generate_attachment_metadata( $attachment_id, $new_file ) );
|
258 |
|
259 |
if ( 0 < $post_parent && $featured ) {
|
260 |
update_post_meta( $post_parent, '_thumbnail_id', $attachment_id );
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pods - Custom Content Types and Fields
|
4 |
Plugin URI: https://pods.io/
|
5 |
Description: Pods is a framework for creating, managing, and deploying customized content types and fields
|
6 |
-
Version: 2.7.
|
7 |
Author: Pods Framework Team
|
8 |
Author URI: https://pods.io/about/
|
9 |
Text Domain: pods
|
@@ -36,7 +36,7 @@ if ( defined( 'PODS_VERSION' ) || defined( 'PODS_DIR' ) ) {
|
|
36 |
add_action( 'init', 'pods_deactivate_pods_ui' );
|
37 |
} else {
|
38 |
// Current version
|
39 |
-
define( 'PODS_VERSION', '2.7.
|
40 |
|
41 |
// Version tracking between DB updates themselves
|
42 |
define( 'PODS_DB_VERSION', '2.3.5' );
|
3 |
Plugin Name: Pods - Custom Content Types and Fields
|
4 |
Plugin URI: https://pods.io/
|
5 |
Description: Pods is a framework for creating, managing, and deploying customized content types and fields
|
6 |
+
Version: 2.7.9
|
7 |
Author: Pods Framework Team
|
8 |
Author URI: https://pods.io/about/
|
9 |
Text Domain: pods
|
36 |
add_action( 'init', 'pods_deactivate_pods_ui' );
|
37 |
} else {
|
38 |
// Current version
|
39 |
+
define( 'PODS_VERSION', '2.7.9' );
|
40 |
|
41 |
// Version tracking between DB updates themselves
|
42 |
define( 'PODS_DB_VERSION', '2.3.5' );
|
phpcs-report-full.txt
DELETED
@@ -1,10394 +0,0 @@
|
|
1 |
-
|
2 |
-
FILE: ui/front/pagination/paginate.php
|
3 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4 |
-
FOUND 2 ERRORS AFFECTING 2 LINES
|
5 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
7 |
-
15 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'paginate_links'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
8 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
9 |
-
|
10 |
-
|
11 |
-
FILE: ui/front/pagination/advanced.php
|
12 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
13 |
-
FOUND 15 ERRORS AFFECTING 15 LINES
|
14 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
15 |
-
3 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
16 |
-
10 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
17 |
-
13 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
18 |
-
22 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
19 |
-
28 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
20 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$i". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
21 |
-
35 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
22 |
-
41 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
23 |
-
44 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$i". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
24 |
-
47 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
25 |
-
54 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
26 |
-
60 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
27 |
-
66 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
28 |
-
70 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
29 |
-
73 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
30 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
31 |
-
|
32 |
-
|
33 |
-
FILE: ui/front/pagination/simple.php
|
34 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
35 |
-
FOUND 4 ERRORS AFFECTING 4 LINES
|
36 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
37 |
-
7 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
38 |
-
10 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
39 |
-
17 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
40 |
-
21 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
41 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
42 |
-
|
43 |
-
|
44 |
-
FILE: ui/front/pagination/list.php
|
45 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
46 |
-
FOUND 2 ERRORS AFFECTING 2 LINES
|
47 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
48 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
49 |
-
16 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'paginate_links'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
50 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
51 |
-
|
52 |
-
|
53 |
-
FILE: ui/front/widgets.php
|
54 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
55 |
-
FOUND 9 ERRORS AFFECTING 6 LINES
|
56 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
57 |
-
2 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$before_widget'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
58 |
-
5 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$before_title'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
59 |
-
5 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$title'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
60 |
-
5 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after_title'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
61 |
-
9 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$before_content'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
62 |
-
12 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_shortcode'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
63 |
-
12 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
64 |
-
15 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after_content'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
65 |
-
18 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after_widget'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
66 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
67 |
-
|
68 |
-
|
69 |
-
FILE: ui/front/view.php
|
70 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
71 |
-
FOUND 8 ERRORS AND 2 WARNINGS AFFECTING 7 LINES
|
72 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
73 |
-
14 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
74 |
-
24 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
75 |
-
26 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
76 |
-
26 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
77 |
-
27 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
78 |
-
27 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 4 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
79 |
-
27 | WARNING | [ ] Words in hook names should be separated using underscores. Expected: 'pods_field_html_class', but found: 'pods-field-html-class'.
|
80 |
-
| | (WordPress.NamingConventions.ValidHookName.UseUnderscores)
|
81 |
-
31 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
82 |
-
35 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$value'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
83 |
-
42 | ERROR | [x] File must end with a newline character (Generic.Files.EndFileNewline.NotFound)
|
84 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
85 |
-
PHPCBF CAN FIX THE 3 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
86 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
87 |
-
|
88 |
-
|
89 |
-
FILE: ui/front/form.php
|
90 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
91 |
-
FOUND 101 ERRORS AND 10 WARNINGS AFFECTING 75 LINES
|
92 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
93 |
-
6 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
94 |
-
9 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
95 |
-
9 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
96 |
-
10 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'name'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
97 |
-
11 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'type'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
98 |
-
12 | WARNING | [x] Array double arrow not aligned correctly; expected 3 space(s) between "'label'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
99 |
-
13 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'help'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
100 |
-
16 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
101 |
-
18 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
102 |
-
20 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
103 |
-
21 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
104 |
-
21 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
105 |
-
21 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
106 |
-
22 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
107 |
-
23 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
108 |
-
23 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
109 |
-
24 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
110 |
-
25 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
111 |
-
26 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
112 |
-
26 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
113 |
-
27 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
114 |
-
31 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
115 |
-
32 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
116 |
-
32 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
117 |
-
33 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
118 |
-
34 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
119 |
-
34 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
120 |
-
35 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
121 |
-
36 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
122 |
-
37 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
123 |
-
37 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
124 |
-
39 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
125 |
-
40 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
126 |
-
42 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$submittable_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
127 |
-
44 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
128 |
-
50 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uri_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
129 |
-
50 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 3 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
130 |
-
50 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
131 |
-
51 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
132 |
-
53 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
133 |
-
53 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
134 |
-
56 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
135 |
-
59 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$nonce". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
136 |
-
61 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
137 |
-
61 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
138 |
-
62 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
139 |
-
63 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
140 |
-
63 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
141 |
-
64 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
142 |
-
64 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
143 |
-
65 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
144 |
-
66 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
145 |
-
66 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$e'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
146 |
-
67 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
147 |
-
70 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_prefix". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
148 |
-
72 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
149 |
-
73 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_prefix". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
150 |
-
77 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
151 |
-
78 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
152 |
-
79 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
153 |
-
79 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
154 |
-
80 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
155 |
-
81 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
156 |
-
82 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
157 |
-
83 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
158 |
-
84 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
159 |
-
85 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
160 |
-
85 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
161 |
-
103 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
162 |
-
104 | ERROR | [x] Line indented incorrectly; expected 5 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
163 |
-
104 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
164 |
-
104 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
165 |
-
106 | ERROR | [x] Line indented incorrectly; expected 5 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
166 |
-
119 | ERROR | [x] Whitespace found at end of line (Squiz.WhiteSpace.SuperfluousWhitespace.EndLine)
|
167 |
-
120 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
168 |
-
120 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
169 |
-
120 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
170 |
-
130 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
171 |
-
134 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
172 |
-
134 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
173 |
-
134 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
174 |
-
134 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
175 |
-
138 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
176 |
-
138 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
177 |
-
138 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
178 |
-
138 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
179 |
-
138 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
180 |
-
140 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
181 |
-
140 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
182 |
-
155 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
183 |
-
155 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
184 |
-
160 | ERROR | [x] Line indented incorrectly; expected 3 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
185 |
-
161 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
186 |
-
161 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
187 |
-
161 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
188 |
-
163 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
189 |
-
165 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
190 |
-
165 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
191 |
-
165 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
192 |
-
165 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
193 |
-
166 | WARNING | [ ] Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
194 |
-
166 | ERROR | [x] Line indented incorrectly; expected 3 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
195 |
-
181 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
196 |
-
183 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
197 |
-
184 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
198 |
-
185 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
199 |
-
187 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
200 |
-
188 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
201 |
-
189 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
202 |
-
200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_slash'.
|
203 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
204 |
-
210 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
205 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
206 |
-
PHPCBF CAN FIX THE 71 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
207 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
208 |
-
|
209 |
-
|
210 |
-
FILE: ui/front/filters.php
|
211 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
212 |
-
FOUND 6 ERRORS AFFECTING 6 LINES
|
213 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
214 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
215 |
-
7 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
216 |
-
8 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
217 |
-
9 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
218 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$filter". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
219 |
-
13 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
220 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
221 |
-
|
222 |
-
|
223 |
-
FILE: ui/fields/_label.php
|
224 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
225 |
-
FOUND 1 ERROR AND 2 WARNINGS AFFECTING 3 LINES
|
226 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
227 |
-
3 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$label'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
228 |
-
5 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
229 |
-
9 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
230 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
231 |
-
|
232 |
-
|
233 |
-
FILE: ui/fields/checkbox.php
|
234 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
235 |
-
FOUND 28 ERRORS AND 7 WARNINGS AFFECTING 34 LINES
|
236 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
237 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
238 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data_count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
239 |
-
8 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
240 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$counter". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
241 |
-
16 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$primary_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
242 |
-
17 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$primary_id". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
243 |
-
19 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$val". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
244 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
245 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
246 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
247 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
248 |
-
31 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
249 |
-
33 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
250 |
-
33 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
251 |
-
34 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
252 |
-
37 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
253 |
-
40 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
254 |
-
43 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
255 |
-
45 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$indent". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
256 |
-
47 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$indent_count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
257 |
-
50 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
258 |
-
52 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$indent". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
259 |
-
56 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
260 |
-
60 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
261 |
-
64 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
262 |
-
66 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
263 |
-
70 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
264 |
-
73 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
265 |
-
79 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$indent'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
266 |
-
83 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$help". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
267 |
-
85 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
268 |
-
86 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$help". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
269 |
-
89 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
270 |
-
95 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
271 |
-
104 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
272 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
273 |
-
|
274 |
-
|
275 |
-
FILE: ui/fields/website.php
|
276 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
277 |
-
FOUND 8 ERRORS AND 3 WARNINGS AFFECTING 5 LINES
|
278 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
279 |
-
2 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
280 |
-
10 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
281 |
-
10 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
282 |
-
10 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 5 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
283 |
-
11 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
284 |
-
11 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
285 |
-
11 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 4 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
286 |
-
12 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
287 |
-
12 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
288 |
-
13 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
289 |
-
13 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 15 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
290 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
291 |
-
PHPCBF CAN FIX THE 6 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
292 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
293 |
-
|
294 |
-
|
295 |
-
FILE: ui/fields/select.php
|
296 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
297 |
-
FOUND 32 ERRORS AND 6 WARNINGS AFFECTING 35 LINES
|
298 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
299 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
300 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
301 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_limit". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
302 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$multiple". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
303 |
-
8 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
304 |
-
8 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
305 |
-
9 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
306 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
307 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$multiple". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
308 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
309 |
-
17 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
310 |
-
20 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
311 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
312 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
313 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selection_made". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
314 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$option_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
315 |
-
34 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$option_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
316 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_option_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
317 |
-
44 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_option_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
318 |
-
46 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_option_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
319 |
-
50 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_option_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
320 |
-
52 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selected". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
321 |
-
53 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
322 |
-
55 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
323 |
-
55 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
324 |
-
56 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selected". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
325 |
-
57 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
326 |
-
60 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selection_made". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
327 |
-
70 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$selected'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
328 |
-
78 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$option_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
329 |
-
80 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selected". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
330 |
-
81 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
331 |
-
83 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
332 |
-
83 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
333 |
-
84 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selected". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
334 |
-
85 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
335 |
-
88 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selection_made". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
336 |
-
98 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$selected'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
337 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
338 |
-
|
339 |
-
|
340 |
-
FILE: ui/fields/link.php
|
341 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
342 |
-
FOUND 45 ERRORS AND 3 WARNINGS AFFECTING 38 LINES
|
343 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
344 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
345 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
346 |
-
12 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
347 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
348 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
349 |
-
16 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
350 |
-
17 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
351 |
-
17 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
352 |
-
17 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
353 |
-
18 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
354 |
-
19 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
355 |
-
20 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
356 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
357 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
358 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
359 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
360 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
361 |
-
26 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
362 |
-
26 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
363 |
-
27 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
364 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
365 |
-
29 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$text_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
366 |
-
31 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
367 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
368 |
-
33 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
369 |
-
34 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
370 |
-
35 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
371 |
-
36 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
372 |
-
37 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
373 |
-
38 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
374 |
-
38 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
375 |
-
39 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
376 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
377 |
-
42 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$target_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
378 |
-
44 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
379 |
-
45 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
380 |
-
46 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
381 |
-
51 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
382 |
-
51 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
383 |
-
54 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
384 |
-
54 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
385 |
-
57 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
386 |
-
57 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
387 |
-
62 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
388 |
-
62 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
389 |
-
67 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
390 |
-
69 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
391 |
-
69 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
392 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
393 |
-
|
394 |
-
|
395 |
-
FILE: ui/fields/cleditor.php
|
396 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
397 |
-
FOUND 3 ERRORS AFFECTING 3 LINES
|
398 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
399 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
400 |
-
7 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
401 |
-
8 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
402 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
403 |
-
|
404 |
-
|
405 |
-
FILE: ui/fields/textarea.php
|
406 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
407 |
-
FOUND 5 ERRORS AFFECTING 5 LINES
|
408 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
409 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
410 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
411 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
412 |
-
8 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
413 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
414 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
415 |
-
|
416 |
-
|
417 |
-
FILE: ui/fields/password.php
|
418 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
419 |
-
FOUND 7 ERRORS AFFECTING 7 LINES
|
420 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
421 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
422 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
423 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
424 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
425 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
426 |
-
9 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
427 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
428 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
429 |
-
|
430 |
-
|
431 |
-
FILE: ui/fields/_db.php
|
432 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
433 |
-
FOUND 5 ERRORS AFFECTING 5 LINES
|
434 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
435 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
436 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
437 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
438 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
439 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
440 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
441 |
-
|
442 |
-
|
443 |
-
FILE: ui/fields/currency.php
|
444 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
445 |
-
FOUND 24 ERRORS AND 3 WARNINGS AFFECTING 27 LINES
|
446 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
447 |
-
2 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_number". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
448 |
-
4 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
449 |
-
6 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
450 |
-
7 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
451 |
-
8 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
452 |
-
9 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
453 |
-
10 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
454 |
-
14 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
455 |
-
15 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
456 |
-
16 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
457 |
-
17 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
458 |
-
18 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
459 |
-
19 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
460 |
-
20 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
461 |
-
21 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
462 |
-
22 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
463 |
-
24 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
464 |
-
25 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
465 |
-
28 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$currency". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
466 |
-
31 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$currency". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
467 |
-
34 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$currency_sign". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
468 |
-
36 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$currency_sign'.
|
469 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
470 |
-
41 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
471 |
-
45 | ERROR | [x] Opening PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentBeforeOpen)
|
472 |
-
47 | ERROR | [x] Closing PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentAfterEnd)
|
473 |
-
50 | ERROR | [x] Opening PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentBeforeOpen)
|
474 |
-
52 | ERROR | [x] Closing PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentAfterEnd)
|
475 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
476 |
-
PHPCBF CAN FIX THE 5 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
477 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
478 |
-
|
479 |
-
|
480 |
-
FILE: ui/fields/color.php
|
481 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
482 |
-
FOUND 10 ERRORS AFFECTING 10 LINES
|
483 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
484 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$colorpicker_l10n". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
485 |
-
14 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
486 |
-
15 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
487 |
-
16 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
488 |
-
17 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
489 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
490 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
491 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
492 |
-
27 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
493 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
494 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
495 |
-
|
496 |
-
|
497 |
-
FILE: ui/fields/datetime.php
|
498 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
499 |
-
FOUND 31 ERRORS AND 3 WARNINGS AFFECTING 32 LINES
|
500 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
501 |
-
6 | ERROR | Missing @package tag in file comment (Squiz.Commenting.FileComment.MissingPackageTag)
|
502 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
503 |
-
19 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
504 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
505 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
506 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$format". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
507 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$method". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
508 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$format_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
509 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
510 |
-
42 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
511 |
-
45 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html5_format". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
512 |
-
48 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
513 |
-
49 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
514 |
-
50 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
515 |
-
52 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$timezone". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
516 |
-
53 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$timezone". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
517 |
-
56 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$timezone". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
518 |
-
59 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
519 |
-
62 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
520 |
-
63 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date_default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
521 |
-
65 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
522 |
-
67 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
523 |
-
75 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
524 |
-
75 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
525 |
-
75 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
526 |
-
77 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
527 |
-
80 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
528 |
-
82 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
529 |
-
84 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
530 |
-
86 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
531 |
-
90 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
532 |
-
92 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
533 |
-
94 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
534 |
-
107 | WARNING | json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
535 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
536 |
-
|
537 |
-
|
538 |
-
FILE: ui/fields/date.php
|
539 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
540 |
-
FOUND 22 ERRORS AND 3 WARNINGS AFFECTING 23 LINES
|
541 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
542 |
-
6 | ERROR | Missing @package tag in file comment (Squiz.Commenting.FileComment.MissingPackageTag)
|
543 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
544 |
-
17 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
545 |
-
21 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
546 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
547 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$format". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
548 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$method". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
549 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
550 |
-
36 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html5_format". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
551 |
-
38 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
552 |
-
39 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date_default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
553 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
554 |
-
43 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
555 |
-
51 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
556 |
-
51 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
557 |
-
51 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
558 |
-
53 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
559 |
-
56 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
560 |
-
58 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
561 |
-
60 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
562 |
-
62 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
563 |
-
66 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
564 |
-
68 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
565 |
-
70 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
566 |
-
83 | WARNING | json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
567 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
568 |
-
|
569 |
-
|
570 |
-
FILE: ui/fields/slider.php
|
571 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
572 |
-
FOUND 16 ERRORS AND 10 WARNINGS AFFECTING 24 LINES
|
573 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
574 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
575 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
576 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$values". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
577 |
-
14 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$values". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
578 |
-
19 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$values". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
579 |
-
20 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$values". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
580 |
-
22 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
581 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$output_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
582 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
583 |
-
23 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
584 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
585 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$output_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
586 |
-
29 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
587 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
588 |
-
31 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
589 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
590 |
-
39 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$output_value'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
591 |
-
52 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
592 |
-
54 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
593 |
-
55 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
594 |
-
60 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
595 |
-
61 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
596 |
-
66 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
597 |
-
67 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
598 |
-
69 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
599 |
-
70 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
600 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
601 |
-
|
602 |
-
|
603 |
-
FILE: ui/fields/tinymce.php
|
604 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
605 |
-
FOUND 8 ERRORS AFFECTING 8 LINES
|
606 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
607 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
608 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
609 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
610 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
611 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
612 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
613 |
-
14 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
614 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class_attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
615 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
616 |
-
|
617 |
-
|
618 |
-
FILE: ui/fields/email.php
|
619 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
620 |
-
FOUND 5 ERRORS AND 1 WARNING AFFECTING 6 LINES
|
621 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
622 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
623 |
-
6 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
624 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
625 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
626 |
-
12 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
627 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
628 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
629 |
-
|
630 |
-
|
631 |
-
FILE: ui/fields/_comment.php
|
632 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
633 |
-
FOUND 1 ERROR AFFECTING 1 LINE
|
634 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
635 |
-
2 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$message'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
636 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
637 |
-
|
638 |
-
|
639 |
-
FILE: ui/fields/attachment.php
|
640 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
641 |
-
FOUND 44 ERRORS AND 8 WARNINGS AFFECTING 43 LINES
|
642 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
643 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_file". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
644 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
645 |
-
16 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
646 |
-
18 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$css_id". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
647 |
-
20 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uri_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
648 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
649 |
-
22 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
650 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
651 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_nonce". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
652 |
-
28 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
653 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_file_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
654 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$title_editable". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
655 |
-
33 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$linked". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
656 |
-
36 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
657 |
-
38 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
658 |
-
40 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
659 |
-
42 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
660 |
-
44 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
661 |
-
46 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
662 |
-
49 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$limit_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
663 |
-
59 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$file_limit". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
664 |
-
61 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
665 |
-
62 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$file_limit". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
666 |
-
65 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
667 |
-
70 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$the_post_id". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
668 |
-
73 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$the_post_id". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
669 |
-
77 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
670 |
-
79 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
671 |
-
97 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
672 |
-
103 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
673 |
-
105 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thumb". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
674 |
-
106 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
675 |
-
108 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
676 |
-
111 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
677 |
-
114 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
678 |
-
116 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field_file'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
679 |
-
116 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$file_limit'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
680 |
-
116 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$title_editable'.
|
681 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
682 |
-
116 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$attachment'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
683 |
-
116 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$attachment'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
684 |
-
116 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$attachment'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
685 |
-
121 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_v'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
686 |
-
124 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$css_id'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
687 |
-
125 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field_file'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
688 |
-
125 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$file_limit'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
689 |
-
125 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$title_editable'.
|
690 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
691 |
-
134 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
692 |
-
135 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
693 |
-
136 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
694 |
-
137 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
695 |
-
138 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
696 |
-
139 | WARNING | Found precision alignment of 3 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
697 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
698 |
-
|
699 |
-
|
700 |
-
FILE: ui/fields/radio.php
|
701 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
702 |
-
FOUND 27 ERRORS AND 7 WARNINGS AFFECTING 33 LINES
|
703 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
704 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
705 |
-
4 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
706 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$counter". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
707 |
-
12 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$primary_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
708 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$primary_id". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
709 |
-
14 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selection_made". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
710 |
-
16 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$val". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
711 |
-
19 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
712 |
-
21 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
713 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
714 |
-
27 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
715 |
-
29 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
716 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
717 |
-
32 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
718 |
-
32 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
719 |
-
33 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
720 |
-
34 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selection_made". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
721 |
-
37 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
722 |
-
39 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
723 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$indent". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
724 |
-
43 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$indent_count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
725 |
-
46 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
726 |
-
48 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$indent". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
727 |
-
52 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
728 |
-
54 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
729 |
-
58 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
730 |
-
61 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
731 |
-
67 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$indent'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
732 |
-
71 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$help". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
733 |
-
73 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
734 |
-
74 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$help". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
735 |
-
77 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
736 |
-
83 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
737 |
-
92 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
738 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
739 |
-
|
740 |
-
|
741 |
-
FILE: ui/fields/phone.php
|
742 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
743 |
-
FOUND 5 ERRORS AND 1 WARNING AFFECTING 6 LINES
|
744 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
745 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
746 |
-
6 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
747 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
748 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
749 |
-
12 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
750 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
751 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
752 |
-
|
753 |
-
|
754 |
-
FILE: ui/fields/oembed.php
|
755 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
756 |
-
FOUND 21 ERRORS AFFECTING 17 LINES
|
757 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
758 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
759 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
760 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
761 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
762 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
763 |
-
9 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
764 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
765 |
-
14 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$show_preview". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
766 |
-
20 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$oembed_width". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
767 |
-
20 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
768 |
-
20 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
769 |
-
21 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$oembed_height". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
770 |
-
21 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
771 |
-
21 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
772 |
-
24 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
773 |
-
26 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'wp_create_nonce'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
774 |
-
28 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
775 |
-
36 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$name'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
776 |
-
38 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$options'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
777 |
-
39 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$oembed_width'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
778 |
-
40 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$oembed_height'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
779 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
780 |
-
|
781 |
-
|
782 |
-
FILE: ui/fields/codemirror.php
|
783 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
784 |
-
FOUND 3 ERRORS AFFECTING 3 LINES
|
785 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
786 |
-
7 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
787 |
-
8 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
788 |
-
9 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
789 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
790 |
-
|
791 |
-
|
792 |
-
FILE: ui/fields/_hidden.php
|
793 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
794 |
-
FOUND 5 ERRORS AFFECTING 5 LINES
|
795 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
796 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
797 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
798 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
799 |
-
7 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
800 |
-
8 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
801 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
802 |
-
|
803 |
-
|
804 |
-
FILE: ui/fields/time.php
|
805 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
806 |
-
FOUND 23 ERRORS AND 3 WARNINGS AFFECTING 24 LINES
|
807 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
808 |
-
6 | ERROR | Missing @package tag in file comment (Squiz.Commenting.FileComment.MissingPackageTag)
|
809 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
810 |
-
19 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
811 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
812 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
813 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$format". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
814 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$method". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
815 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
816 |
-
37 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
817 |
-
40 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html5_format". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
818 |
-
42 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
819 |
-
43 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date_default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
820 |
-
45 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
821 |
-
47 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
822 |
-
55 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
823 |
-
55 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
824 |
-
55 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
825 |
-
57 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$formatted_date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
826 |
-
60 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
827 |
-
62 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
828 |
-
64 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
829 |
-
66 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
830 |
-
70 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
831 |
-
72 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
832 |
-
74 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
833 |
-
87 | WARNING | json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
834 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
835 |
-
|
836 |
-
|
837 |
-
FILE: ui/fields/number.php
|
838 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
839 |
-
FOUND 21 ERRORS AND 4 WARNINGS AFFECTING 22 LINES
|
840 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
841 |
-
2 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_number". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
842 |
-
4 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
843 |
-
6 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
844 |
-
7 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
845 |
-
8 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
846 |
-
9 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
847 |
-
10 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
848 |
-
14 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
849 |
-
15 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
850 |
-
16 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
851 |
-
17 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
852 |
-
18 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
853 |
-
19 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
854 |
-
20 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
855 |
-
21 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
856 |
-
22 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
857 |
-
24 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thousands". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
858 |
-
25 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dot". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
859 |
-
27 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$regex_test". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
860 |
-
27 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 4 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
861 |
-
28 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$regex_replace". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
862 |
-
34 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
863 |
-
34 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$regex_test'.
|
864 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
865 |
-
37 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
866 |
-
37 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$regex_replace'.
|
867 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
868 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
869 |
-
PHPCBF CAN FIX THE 3 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
870 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
871 |
-
|
872 |
-
|
873 |
-
FILE: ui/fields/slug.php
|
874 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
875 |
-
FOUND 5 ERRORS AFFECTING 5 LINES
|
876 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
877 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
878 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
879 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
880 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
881 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
882 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
883 |
-
|
884 |
-
|
885 |
-
FILE: ui/fields/_row.php
|
886 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
887 |
-
FOUND 3 ERRORS AFFECTING 3 LINES
|
888 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
889 |
-
1 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
890 |
-
3 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
891 |
-
6 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
892 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
893 |
-
|
894 |
-
|
895 |
-
FILE: ui/fields/text.php
|
896 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
897 |
-
FOUND 8 ERRORS AFFECTING 8 LINES
|
898 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
899 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
900 |
-
3 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
901 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
902 |
-
5 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
903 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
904 |
-
8 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
905 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
906 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attributes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
907 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
908 |
-
|
909 |
-
|
910 |
-
FILE: ui/admin/widgets/single.php
|
911 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
912 |
-
FOUND 109 ERRORS AND 1 WARNING AFFECTING 77 LINES
|
913 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
914 |
-
2 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
915 |
-
3 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
916 |
-
4 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
917 |
-
5 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
918 |
-
6 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
919 |
-
8 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
920 |
-
9 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
921 |
-
10 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
922 |
-
13 | ERROR | [x] Expected 1 spaces after opening bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket)
|
923 |
-
13 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
924 |
-
13 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
925 |
-
16 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
926 |
-
17 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
927 |
-
17 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
928 |
-
19 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
929 |
-
20 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
930 |
-
22 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
931 |
-
23 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
932 |
-
24 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
933 |
-
24 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
934 |
-
24 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 6 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
935 |
-
25 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
936 |
-
25 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_pods". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
937 |
-
26 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
938 |
-
27 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
939 |
-
28 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
940 |
-
28 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
941 |
-
29 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
942 |
-
31 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
943 |
-
31 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
944 |
-
31 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
945 |
-
32 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
946 |
-
33 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
947 |
-
33 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
948 |
-
33 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
949 |
-
33 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
950 |
-
34 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
951 |
-
35 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
952 |
-
36 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
953 |
-
37 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
954 |
-
38 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
955 |
-
39 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
956 |
-
39 | ERROR | [x] Expected 1 space(s) after ELSE keyword; 0 found (Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword)
|
957 |
-
39 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
958 |
-
40 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
959 |
-
40 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
960 |
-
41 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
961 |
-
42 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
962 |
-
44 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
963 |
-
45 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
964 |
-
46 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
965 |
-
46 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
966 |
-
47 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
967 |
-
49 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
968 |
-
50 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
969 |
-
52 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
970 |
-
53 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
971 |
-
54 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
972 |
-
54 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
973 |
-
55 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
974 |
-
57 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
975 |
-
58 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
976 |
-
60 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
977 |
-
61 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
978 |
-
61 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
979 |
-
62 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
980 |
-
63 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
981 |
-
64 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
982 |
-
65 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
983 |
-
65 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_templates". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
984 |
-
66 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
985 |
-
67 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
986 |
-
67 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
987 |
-
69 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
988 |
-
70 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
989 |
-
70 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
990 |
-
71 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
991 |
-
71 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
992 |
-
71 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
993 |
-
72 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
994 |
-
72 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
995 |
-
72 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
996 |
-
73 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
997 |
-
73 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
998 |
-
74 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
999 |
-
75 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1000 |
-
76 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1001 |
-
77 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1002 |
-
78 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1003 |
-
79 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1004 |
-
79 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1005 |
-
79 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
1006 |
-
80 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1007 |
-
80 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1008 |
-
81 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1009 |
-
82 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1010 |
-
83 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1011 |
-
83 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1012 |
-
85 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1013 |
-
86 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1014 |
-
87 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1015 |
-
88 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1016 |
-
88 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1017 |
-
88 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1018 |
-
89 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1019 |
-
91 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1020 |
-
92 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1021 |
-
92 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1022 |
-
94 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1023 |
-
95 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1024 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1025 |
-
PHPCBF CAN FIX THE 96 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
1026 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1027 |
-
|
1028 |
-
|
1029 |
-
FILE: ui/admin/widgets/view.php
|
1030 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1031 |
-
FOUND 9 ERRORS AFFECTING 7 LINES
|
1032 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1033 |
-
15 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1034 |
-
21 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1035 |
-
27 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1036 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$cache_modes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1037 |
-
38 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$cache_mode_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1038 |
-
39 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$selected". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1039 |
-
39 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
1040 |
-
39 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1041 |
-
48 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1042 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1043 |
-
|
1044 |
-
|
1045 |
-
FILE: ui/admin/widgets/list.php
|
1046 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1047 |
-
FOUND 149 ERRORS AND 4 WARNINGS AFFECTING 107 LINES
|
1048 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1049 |
-
2 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1050 |
-
3 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1051 |
-
4 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1052 |
-
5 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1053 |
-
6 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1054 |
-
8 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1055 |
-
9 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1056 |
-
10 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1057 |
-
13 | ERROR | [x] Expected 1 spaces after opening bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket)
|
1058 |
-
13 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1059 |
-
13 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1060 |
-
16 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1061 |
-
17 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1062 |
-
17 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1063 |
-
19 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1064 |
-
20 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1065 |
-
22 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1066 |
-
23 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1067 |
-
24 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1068 |
-
24 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1069 |
-
24 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 6 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
1070 |
-
25 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1071 |
-
25 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_pods". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1072 |
-
26 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1073 |
-
27 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1074 |
-
28 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1075 |
-
28 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1076 |
-
29 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1077 |
-
31 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1078 |
-
31 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
1079 |
-
31 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
1080 |
-
32 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1081 |
-
33 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1082 |
-
33 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1083 |
-
33 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
1084 |
-
33 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
1085 |
-
34 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1086 |
-
35 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1087 |
-
36 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1088 |
-
37 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1089 |
-
38 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1090 |
-
39 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1091 |
-
39 | ERROR | [x] Expected 1 space(s) after ELSE keyword; 0 found (Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword)
|
1092 |
-
39 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
1093 |
-
40 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1094 |
-
40 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1095 |
-
41 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1096 |
-
42 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1097 |
-
44 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1098 |
-
45 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1099 |
-
45 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1100 |
-
46 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1101 |
-
47 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1102 |
-
48 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1103 |
-
49 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1104 |
-
49 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_templates". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1105 |
-
50 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1106 |
-
51 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1107 |
-
51 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1108 |
-
53 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1109 |
-
54 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1110 |
-
54 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1111 |
-
55 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1112 |
-
55 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
1113 |
-
55 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
1114 |
-
56 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1115 |
-
56 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1116 |
-
56 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1117 |
-
57 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1118 |
-
57 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1119 |
-
58 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1120 |
-
59 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1121 |
-
60 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1122 |
-
61 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1123 |
-
62 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1124 |
-
63 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1125 |
-
63 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1126 |
-
63 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
1127 |
-
64 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1128 |
-
64 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1129 |
-
65 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1130 |
-
66 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1131 |
-
67 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1132 |
-
67 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1133 |
-
69 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1134 |
-
70 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1135 |
-
71 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1136 |
-
72 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1137 |
-
72 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1138 |
-
72 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1139 |
-
73 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1140 |
-
75 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1141 |
-
76 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1142 |
-
76 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1143 |
-
78 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1144 |
-
79 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1145 |
-
81 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1146 |
-
82 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1147 |
-
82 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1148 |
-
84 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1149 |
-
85 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1150 |
-
87 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1151 |
-
88 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1152 |
-
88 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1153 |
-
90 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1154 |
-
91 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1155 |
-
93 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1156 |
-
94 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1157 |
-
94 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1158 |
-
96 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1159 |
-
97 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1160 |
-
99 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1161 |
-
100 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1162 |
-
100 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1163 |
-
102 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1164 |
-
103 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1165 |
-
105 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1166 |
-
106 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1167 |
-
106 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1168 |
-
108 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1169 |
-
109 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1170 |
-
111 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1171 |
-
112 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1172 |
-
112 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1173 |
-
114 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1174 |
-
115 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1175 |
-
115 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$cache_modes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1176 |
-
116 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1177 |
-
116 | WARNING | [x] Array double arrow not aligned correctly; expected 11 space(s) between "'none'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
1178 |
-
117 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1179 |
-
117 | WARNING | [x] Array double arrow not aligned correctly; expected 10 space(s) between "'cache'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
1180 |
-
118 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1181 |
-
118 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'transient'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
1182 |
-
119 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1183 |
-
119 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
1184 |
-
120 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1185 |
-
121 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1186 |
-
122 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1187 |
-
123 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1188 |
-
123 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$cache_mode_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1189 |
-
123 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found 0 (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
1190 |
-
123 | ERROR | [x] Space between opening control structure and T_COLON is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBetweenStructureColon)
|
1191 |
-
124 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1192 |
-
125 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1193 |
-
126 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1194 |
-
127 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1195 |
-
128 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1196 |
-
129 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1197 |
-
131 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1198 |
-
132 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1199 |
-
132 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1200 |
-
134 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1201 |
-
135 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1202 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1203 |
-
PHPCBF CAN FIX THE 132 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
1204 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1205 |
-
|
1206 |
-
|
1207 |
-
FILE: ui/admin/widgets/form.php
|
1208 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1209 |
-
FOUND 11 ERRORS AFFECTING 11 LINES
|
1210 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1211 |
-
15 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1212 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1213 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_pods". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1214 |
-
26 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1215 |
-
31 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1216 |
-
38 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1217 |
-
43 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1218 |
-
45 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1219 |
-
49 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1220 |
-
55 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1221 |
-
61 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1222 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1223 |
-
|
1224 |
-
|
1225 |
-
FILE: ui/admin/widgets/field.php
|
1226 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1227 |
-
FOUND 8 ERRORS AFFECTING 8 LINES
|
1228 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1229 |
-
15 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1230 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1231 |
-
23 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_pods". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1232 |
-
26 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1233 |
-
31 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1234 |
-
38 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1235 |
-
44 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1236 |
-
51 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1237 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1238 |
-
|
1239 |
-
|
1240 |
-
FILE: ui/admin/settings-tools.php
|
1241 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1242 |
-
FOUND 32 ERRORS AND 1 WARNING AFFECTING 33 LINES
|
1243 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1244 |
-
2 | ERROR | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1245 |
-
3 | ERROR | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1246 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1247 |
-
14 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1248 |
-
19 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1249 |
-
29 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1250 |
-
35 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$php". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1251 |
-
36 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$mysql". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1252 |
-
39 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_plugins". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1253 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$plugin_file". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1254 |
-
47 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$stylesheet". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1255 |
-
48 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$theme". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1256 |
-
49 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$theme_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1257 |
-
51 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$opcode_cache". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1258 |
-
52 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1259 |
-
53 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1260 |
-
54 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1261 |
-
55 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1262 |
-
58 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object_cache". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1263 |
-
59 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1264 |
-
60 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1265 |
-
61 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1266 |
-
62 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1267 |
-
63 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1268 |
-
66 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$versions". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1269 |
-
73 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1270 |
-
74 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1271 |
-
79 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1272 |
-
81 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1273 |
-
83 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1274 |
-
84 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1275 |
-
89 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$what". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1276 |
-
95 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$what_v". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1277 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1278 |
-
|
1279 |
-
|
1280 |
-
FILE: ui/admin/settings-reset.php
|
1281 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1282 |
-
FOUND 30 ERRORS AND 2 WARNINGS AFFECTING 30 LINES
|
1283 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1284 |
-
20 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1285 |
-
22 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1286 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$monday_mode". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1287 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1288 |
-
35 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$html". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1289 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$please_note". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1290 |
-
41 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
1291 |
-
43 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$old_version". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1292 |
-
47 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1293 |
-
49 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1294 |
-
52 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$confirm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1295 |
-
58 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1296 |
-
60 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1297 |
-
61 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$please_note'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1298 |
-
61 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1299 |
-
64 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$confirm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1300 |
-
70 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1301 |
-
72 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1302 |
-
73 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1303 |
-
76 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$confirm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1304 |
-
82 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1305 |
-
84 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1306 |
-
85 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1307 |
-
88 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$confirm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1308 |
-
94 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1309 |
-
96 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1310 |
-
97 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1311 |
-
100 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$confirm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1312 |
-
110 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1313 |
-
112 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1314 |
-
113 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1315 |
-
116 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$confirm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1316 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1317 |
-
|
1318 |
-
|
1319 |
-
FILE: ui/admin/setup-edit-field-fluid.php
|
1320 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1321 |
-
FOUND 78 ERRORS AND 6 WARNINGS AFFECTING 71 LINES
|
1322 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1323 |
-
2 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1324 |
-
4 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1325 |
-
6 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1326 |
-
13 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1327 |
-
18 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1328 |
-
20 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1329 |
-
22 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1330 |
-
32 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1331 |
-
45 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1332 |
-
45 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1333 |
-
45 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
1334 |
-
50 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1335 |
-
54 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1336 |
-
59 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$label'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1337 |
-
70 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1338 |
-
71 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1339 |
-
74 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1340 |
-
76 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1341 |
-
79 | WARNING | [x] Array double arrow not aligned correctly; expected 1 space(s) between "'maxlength'" and double arrow, but found 6. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
1342 |
-
88 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1343 |
-
89 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1344 |
-
92 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1345 |
-
94 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1346 |
-
104 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1347 |
-
106 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1348 |
-
116 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1349 |
-
117 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1350 |
-
120 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1351 |
-
122 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1352 |
-
131 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1353 |
-
134 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1354 |
-
140 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1355 |
-
144 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$required_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1356 |
-
147 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
1357 |
-
149 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1358 |
-
149 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1359 |
-
154 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$required_option'.
|
1360 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1361 |
-
157 | ERROR | [x] Opening PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentAfterOpen)
|
1362 |
-
157 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1363 |
-
158 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 52 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
1364 |
-
158 | WARNING | [x] Expected 1 space between "'class'" and double arrow; 13 found. (WordPress.Arrays.MultipleStatementAlignment.LongIndexSpaceBeforeDoubleArrow)
|
1365 |
-
159 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 52 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
1366 |
-
160 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 52 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
1367 |
-
160 | WARNING | [x] Array double arrow not aligned correctly; expected 1 space(s) between "'help'" and double arrow, but found 14. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
1368 |
-
160 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
1369 |
-
161 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 48 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
1370 |
-
161 | ERROR | [x] Closing PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentBeforeEnd)
|
1371 |
-
167 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$required_option'.
|
1372 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1373 |
-
183 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_tab_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1374 |
-
186 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1375 |
-
187 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$first_field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1376 |
-
191 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1377 |
-
191 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1378 |
-
192 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1379 |
-
194 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$group'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1380 |
-
196 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1381 |
-
201 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1382 |
-
210 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$first_field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1383 |
-
212 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1384 |
-
212 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1385 |
-
213 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1386 |
-
215 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$group'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1387 |
-
217 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1388 |
-
222 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1389 |
-
236 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1390 |
-
239 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1391 |
-
240 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1392 |
-
240 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1393 |
-
255 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1394 |
-
258 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_v_sanitized'.
|
1395 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1396 |
-
260 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1397 |
-
260 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1398 |
-
261 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1399 |
-
263 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
1400 |
-
263 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1401 |
-
273 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1402 |
-
275 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1403 |
-
278 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1404 |
-
281 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1405 |
-
287 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1406 |
-
294 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1407 |
-
296 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
1408 |
-
300 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1409 |
-
304 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pick_object_name'.
|
1410 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1411 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1412 |
-
PHPCBF CAN FIX THE 19 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
1413 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1414 |
-
|
1415 |
-
|
1416 |
-
FILE: ui/admin/settings-settings.php
|
1417 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1418 |
-
FOUND 1 ERROR AFFECTING 1 LINE
|
1419 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1420 |
-
1 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1421 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1422 |
-
|
1423 |
-
|
1424 |
-
FILE: ui/admin/setup-edit-field.php
|
1425 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1426 |
-
FOUND 40 ERRORS AND 7 WARNINGS AFFECTING 37 LINES
|
1427 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1428 |
-
2 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1429 |
-
5 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1430 |
-
7 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1431 |
-
9 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1432 |
-
11 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1433 |
-
12 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1434 |
-
14 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1435 |
-
15 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1436 |
-
17 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1437 |
-
18 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1438 |
-
22 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ignored_pick_objects". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1439 |
-
22 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
1440 |
-
26 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1441 |
-
38 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1442 |
-
42 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1443 |
-
51 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1444 |
-
51 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1445 |
-
55 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1446 |
-
66 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1447 |
-
68 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1448 |
-
70 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1449 |
-
75 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$hidden_field_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1450 |
-
75 | ERROR | [x] String "field_data_json[" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
1451 |
-
75 | ERROR | [x] String "]" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
1452 |
-
78 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$hidden_field_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1453 |
-
78 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
1454 |
-
78 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1455 |
-
78 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
1456 |
-
78 | ERROR | [ ] The constant "JSON_UNESCAPED_UNICODE" is not present in PHP version 5.3 or earlier (PHPCompatibility.PHP.NewConstants.json_unescaped_unicodeFound)
|
1457 |
-
78 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
1458 |
-
79 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$hidden_field_value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1459 |
-
99 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_v_sanitized'.
|
1460 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1461 |
-
101 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1462 |
-
103 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1463 |
-
103 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1464 |
-
104 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1465 |
-
106 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1466 |
-
116 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1467 |
-
118 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ies". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1468 |
-
120 | ERROR | [ ] Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
1469 |
-
121 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1470 |
-
124 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1471 |
-
126 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1472 |
-
132 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1473 |
-
139 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1474 |
-
142 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1475 |
-
146 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pick_object_name'.
|
1476 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1477 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1478 |
-
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
1479 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1480 |
-
|
1481 |
-
|
1482 |
-
FILE: ui/admin/help.php
|
1483 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1484 |
-
FOUND 156 ERRORS AND 2 WARNINGS AFFECTING 84 LINES
|
1485 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1486 |
-
2 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1487 |
-
3 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1488 |
-
3 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1489 |
-
4 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1490 |
-
6 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1491 |
-
6 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1492 |
-
6 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1493 |
-
6 | ERROR | [x] Space found before comma in function call (Generic.Functions.FunctionCallArgumentSpacing.SpaceBeforeComma)
|
1494 |
-
8 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1495 |
-
8 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1496 |
-
8 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1497 |
-
9 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1498 |
-
10 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1499 |
-
10 | ERROR | [x] Expected 1 spaces after opening bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket)
|
1500 |
-
10 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1501 |
-
10 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1502 |
-
12 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1503 |
-
12 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1504 |
-
12 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1505 |
-
14 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1506 |
-
14 | ERROR | [x] Expected 1 spaces after opening bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket)
|
1507 |
-
14 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1508 |
-
16 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1509 |
-
16 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1510 |
-
16 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1511 |
-
17 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1512 |
-
19 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1513 |
-
21 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1514 |
-
22 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1515 |
-
22 | WARNING | [x] "include_once" is a statement not a function; no parentheses are required (PEAR.Files.IncludingFile.BracketsNotRequired)
|
1516 |
-
22 | WARNING | [x] File is being unconditionally included; use "require_once" instead (PEAR.Files.IncludingFile.UseRequireOnce)
|
1517 |
-
24 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1518 |
-
24 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$feed". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1519 |
-
26 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1520 |
-
26 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1521 |
-
26 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1522 |
-
27 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1523 |
-
27 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_items". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1524 |
-
28 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1525 |
-
28 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$rss_items". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1526 |
-
30 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1527 |
-
30 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1528 |
-
31 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1529 |
-
32 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1530 |
-
32 | ERROR | [x] Expected 1 spaces before closing bracket; 0 found (PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket)
|
1531 |
-
32 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1532 |
-
34 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1533 |
-
35 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1534 |
-
36 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1535 |
-
36 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1536 |
-
37 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1537 |
-
37 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$authors". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1538 |
-
39 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1539 |
-
39 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1540 |
-
41 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1541 |
-
41 | ERROR | [x] Line indented incorrectly; expected 3 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1542 |
-
42 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1543 |
-
42 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1544 |
-
44 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1545 |
-
44 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
1546 |
-
44 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1547 |
-
45 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1548 |
-
45 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1549 |
-
47 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1550 |
-
47 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1551 |
-
49 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1552 |
-
49 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
1553 |
-
49 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1554 |
-
50 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1555 |
-
50 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1556 |
-
51 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1557 |
-
51 | ERROR | [x] Line indented incorrectly; expected 3 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1558 |
-
52 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1559 |
-
53 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1560 |
-
54 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1561 |
-
55 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1562 |
-
55 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$author_text'.
|
1563 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1564 |
-
56 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1565 |
-
57 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1566 |
-
57 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$item'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1567 |
-
58 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1568 |
-
59 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1569 |
-
60 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1570 |
-
60 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1571 |
-
60 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1572 |
-
61 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1573 |
-
62 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1574 |
-
64 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1575 |
-
65 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1576 |
-
66 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1577 |
-
66 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1578 |
-
66 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1579 |
-
67 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1580 |
-
67 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1581 |
-
67 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1582 |
-
69 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1583 |
-
69 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$feed". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1584 |
-
71 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1585 |
-
71 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1586 |
-
71 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1587 |
-
72 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1588 |
-
72 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_items". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1589 |
-
73 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1590 |
-
73 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$rss_items". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1591 |
-
75 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1592 |
-
75 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1593 |
-
76 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1594 |
-
77 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1595 |
-
77 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1596 |
-
79 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1597 |
-
80 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1598 |
-
81 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1599 |
-
81 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1600 |
-
82 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1601 |
-
82 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$authors". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1602 |
-
84 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1603 |
-
84 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1604 |
-
86 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1605 |
-
86 | ERROR | [x] Line indented incorrectly; expected 3 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1606 |
-
87 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1607 |
-
87 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1608 |
-
89 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1609 |
-
89 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
1610 |
-
89 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1611 |
-
90 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1612 |
-
90 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1613 |
-
92 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1614 |
-
92 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1615 |
-
94 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1616 |
-
94 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
1617 |
-
94 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1618 |
-
95 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1619 |
-
95 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$author_text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1620 |
-
96 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1621 |
-
96 | ERROR | [x] Line indented incorrectly; expected 3 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1622 |
-
97 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1623 |
-
98 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1624 |
-
99 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1625 |
-
100 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1626 |
-
100 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$author_text'.
|
1627 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1628 |
-
101 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1629 |
-
102 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1630 |
-
102 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$item'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1631 |
-
103 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1632 |
-
104 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1633 |
-
105 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1634 |
-
105 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1635 |
-
105 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1636 |
-
106 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1637 |
-
107 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1638 |
-
108 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1639 |
-
109 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1640 |
-
109 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1641 |
-
109 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1642 |
-
110 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1643 |
-
110 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1644 |
-
110 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
1645 |
-
111 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
1646 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1647 |
-
PHPCBF CAN FIX THE 127 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
1648 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1649 |
-
|
1650 |
-
|
1651 |
-
FILE: ui/admin/view.php
|
1652 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1653 |
-
FOUND 34 ERRORS AND 4 WARNINGS AFFECTING 29 LINES
|
1654 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1655 |
-
17 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1656 |
-
30 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1657 |
-
30 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1658 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1659 |
-
30 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1660 |
-
41 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$datef". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1661 |
-
41 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
1662 |
-
44 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1663 |
-
47 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1664 |
-
47 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1665 |
-
52 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1666 |
-
53 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1667 |
-
56 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1668 |
-
56 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1669 |
-
81 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1670 |
-
98 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$singular_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1671 |
-
101 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$singular_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1672 |
-
102 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$singular_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1673 |
-
104 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$prev". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1674 |
-
105 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$next". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1675 |
-
111 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1676 |
-
121 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1677 |
-
121 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1678 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1679 |
-
121 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$singular_label'.
|
1680 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1681 |
-
129 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1682 |
-
129 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1683 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1684 |
-
129 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$singular_label'.
|
1685 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1686 |
-
157 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1687 |
-
158 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1688 |
-
159 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1689 |
-
164 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1690 |
-
166 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1691 |
-
169 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1692 |
-
199 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'apply_filters'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1693 |
-
209 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1694 |
-
219 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1695 |
-
224 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1696 |
-
227 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$value'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1697 |
-
247 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
1698 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1699 |
-
|
1700 |
-
|
1701 |
-
FILE: ui/admin/form.php
|
1702 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1703 |
-
FOUND 99 ERRORS AND 14 WARNINGS AFFECTING 95 LINES
|
1704 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1705 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1706 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$duplicate". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1707 |
-
12 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$duplicate". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1708 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$groups". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1709 |
-
17 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1710 |
-
18 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1711 |
-
19 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1712 |
-
21 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1713 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$submittable_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1714 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$g". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1715 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1716 |
-
33 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1717 |
-
35 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1718 |
-
43 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1719 |
-
45 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1720 |
-
50 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$submittable_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1721 |
-
53 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1722 |
-
55 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$groups". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1723 |
-
59 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thank_you_alt". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1724 |
-
62 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uri_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1725 |
-
63 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1726 |
-
65 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1727 |
-
65 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
1728 |
-
68 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1729 |
-
71 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$nonce". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1730 |
-
71 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1731 |
-
73 | ERROR | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1732 |
-
76 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1733 |
-
78 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1734 |
-
83 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$params". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1735 |
-
83 | ERROR | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1736 |
-
86 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1737 |
-
86 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1738 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1739 |
-
89 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1740 |
-
89 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1741 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1742 |
-
92 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1743 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1744 |
-
95 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1745 |
-
97 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1746 |
-
100 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1747 |
-
102 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1748 |
-
105 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1749 |
-
107 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1750 |
-
111 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1751 |
-
111 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1752 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1753 |
-
114 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1754 |
-
114 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1755 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1756 |
-
117 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1757 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1758 |
-
120 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1759 |
-
122 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1760 |
-
127 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1761 |
-
130 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$do". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1762 |
-
134 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$do". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1763 |
-
136 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$do". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1764 |
-
144 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1765 |
-
145 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1766 |
-
146 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1767 |
-
147 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1768 |
-
148 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1769 |
-
149 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1770 |
-
149 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1771 |
-
150 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1772 |
-
151 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1773 |
-
152 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1774 |
-
159 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1775 |
-
201 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_v'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1776 |
-
215 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1777 |
-
215 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1778 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1779 |
-
215 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1780 |
-
226 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$datef". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1781 |
-
226 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
1782 |
-
229 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1783 |
-
232 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1784 |
-
232 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1785 |
-
237 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1786 |
-
238 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1787 |
-
241 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1788 |
-
241 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1789 |
-
286 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1790 |
-
286 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1791 |
-
334 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1792 |
-
336 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$singular_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1793 |
-
339 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$singular_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1794 |
-
340 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$singular_label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1795 |
-
344 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$prev_next". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1796 |
-
347 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$prev_next". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1797 |
-
353 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$prev". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1798 |
-
354 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$next". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1799 |
-
373 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1800 |
-
383 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1801 |
-
383 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1802 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1803 |
-
383 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$singular_label'.
|
1804 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1805 |
-
391 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1806 |
-
391 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1807 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1808 |
-
391 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$singular_label'.
|
1809 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1810 |
-
445 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1811 |
-
447 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1812 |
-
452 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1813 |
-
454 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1814 |
-
457 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1815 |
-
473 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$extra'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1816 |
-
496 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'apply_filters'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1817 |
-
497 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$extra'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1818 |
-
530 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1819 |
-
531 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$first_group". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1820 |
-
533 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1821 |
-
534 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$groups". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1822 |
-
563 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1823 |
-
570 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'apply_filters'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1824 |
-
587 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1825 |
-
590 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1826 |
-
599 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1827 |
-
638 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
1828 |
-
656 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_slash'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1829 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1830 |
-
|
1831 |
-
|
1832 |
-
FILE: ui/admin/field-option.php
|
1833 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1834 |
-
FOUND 32 ERRORS AND 1 WARNING AFFECTING 29 LINES
|
1835 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1836 |
-
2 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$depends_on". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1837 |
-
4 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1838 |
-
11 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1839 |
-
13 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1840 |
-
13 | ERROR | The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
1841 |
-
13 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1842 |
-
14 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1843 |
-
15 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1844 |
-
17 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1845 |
-
31 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$row_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1846 |
-
34 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$row_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1847 |
-
37 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1848 |
-
40 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1849 |
-
42 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1850 |
-
47 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1851 |
-
49 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1852 |
-
56 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1853 |
-
63 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field_option'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1854 |
-
69 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_group_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1855 |
-
70 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_group_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1856 |
-
76 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_group_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1857 |
-
78 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_dep_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1858 |
-
78 | ERROR | The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
1859 |
-
78 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1860 |
-
79 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_dep_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1861 |
-
80 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_dep_data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1862 |
-
82 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$row_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1863 |
-
85 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$row_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1864 |
-
88 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1865 |
-
91 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1866 |
-
93 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1867 |
-
98 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1868 |
-
110 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$depends_on". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1869 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1870 |
-
|
1871 |
-
|
1872 |
-
FILE: ui/admin/form-settings.php
|
1873 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1874 |
-
FOUND 50 ERRORS AND 3 WARNINGS AFFECTING 48 LINES
|
1875 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1876 |
-
6 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1877 |
-
10 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$duplicate". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1878 |
-
12 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$duplicate". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1879 |
-
16 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1880 |
-
21 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1881 |
-
26 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1882 |
-
30 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$submittable_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1883 |
-
32 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$k". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1884 |
-
39 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$thank_you_alt". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1885 |
-
42 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uri_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1886 |
-
43 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_hash". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1887 |
-
45 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1888 |
-
45 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
1889 |
-
48 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$uid". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1890 |
-
51 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$nonce". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1891 |
-
51 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
1892 |
-
53 | ERROR | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1893 |
-
57 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$params". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1894 |
-
57 | ERROR | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1895 |
-
60 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1896 |
-
60 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1897 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1898 |
-
61 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1899 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1900 |
-
64 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1901 |
-
66 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1902 |
-
69 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1903 |
-
71 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1904 |
-
74 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1905 |
-
74 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1906 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1907 |
-
75 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
1908 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
1909 |
-
78 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1910 |
-
80 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1911 |
-
85 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1912 |
-
88 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$do". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1913 |
-
93 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1914 |
-
94 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1915 |
-
95 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1916 |
-
96 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1917 |
-
97 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1918 |
-
98 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1919 |
-
99 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1920 |
-
100 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1921 |
-
101 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1922 |
-
109 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1923 |
-
121 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$depends_on". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1924 |
-
130 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1925 |
-
131 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1926 |
-
132 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1927 |
-
134 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1928 |
-
150 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1929 |
-
154 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1930 |
-
163 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1931 |
-
168 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$depends_on". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1932 |
-
197 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_slash'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1933 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1934 |
-
|
1935 |
-
|
1936 |
-
FILE: ui/admin/settings.php
|
1937 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1938 |
-
FOUND 8 ERRORS AND 1 WARNING AFFECTING 8 LINES
|
1939 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1940 |
-
7 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1941 |
-
19 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1942 |
-
21 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1943 |
-
21 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
1944 |
-
22 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1945 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1946 |
-
27 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$url". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1947 |
-
30 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$label'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1948 |
-
44 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_view'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1949 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1950 |
-
|
1951 |
-
|
1952 |
-
FILE: ui/admin/components-admin.php
|
1953 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1954 |
-
FOUND 26 ERRORS AND 2 WARNINGS AFFECTING 27 LINES
|
1955 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1956 |
-
5 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1957 |
-
6 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1958 |
-
7 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1959 |
-
8 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1960 |
-
10 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1961 |
-
10 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$component_label'.
|
1962 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1963 |
-
13 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
1964 |
-
20 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$depends_on". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1965 |
-
24 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1966 |
-
25 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1967 |
-
27 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1968 |
-
28 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1969 |
-
29 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dep_data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1970 |
-
31 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
1971 |
-
46 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1972 |
-
50 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1973 |
-
53 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1974 |
-
61 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field_option'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1975 |
-
66 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_group_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1976 |
-
67 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_group_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1977 |
-
73 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_group_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1978 |
-
75 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_dep_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1979 |
-
76 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_dep_classes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1980 |
-
77 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$group_dep_data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1981 |
-
79 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$value". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1982 |
-
82 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1983 |
-
94 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$depends_on". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1984 |
-
124 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_slash'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
1985 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1986 |
-
|
1987 |
-
|
1988 |
-
FILE: ui/admin/setup-add.php
|
1989 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1990 |
-
FOUND 162 ERRORS AND 13 WARNINGS AFFECTING 129 LINES
|
1991 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
1992 |
-
2 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ignore". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1993 |
-
12 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$link_manager_enabled". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1994 |
-
15 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ignore". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1995 |
-
34 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
1996 |
-
36 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_pods". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
1997 |
-
38 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
1998 |
-
38 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
1999 |
-
39 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2000 |
-
41 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2001 |
-
43 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2002 |
-
53 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2003 |
-
57 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2004 |
-
66 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2005 |
-
68 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2006 |
-
75 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2007 |
-
77 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2008 |
-
83 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2009 |
-
85 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2010 |
-
94 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2011 |
-
97 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2012 |
-
102 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2013 |
-
104 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2014 |
-
108 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'pod'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2015 |
-
108 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2016 |
-
108 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
2017 |
-
111 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2018 |
-
113 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2019 |
-
113 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2020 |
-
114 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2021 |
-
116 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2022 |
-
116 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2023 |
-
121 | ERROR | [x] Line indented incorrectly; expected 9 tabs, found 10 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2024 |
-
121 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2025 |
-
125 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2026 |
-
127 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2027 |
-
130 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2028 |
-
132 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2029 |
-
135 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2030 |
-
137 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2031 |
-
141 | ERROR | [x] Line indented incorrectly; expected 9 tabs, found 10 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2032 |
-
141 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2033 |
-
147 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2034 |
-
148 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2035 |
-
148 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2036 |
-
153 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2037 |
-
154 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2038 |
-
161 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2039 |
-
162 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2040 |
-
162 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2041 |
-
167 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2042 |
-
168 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2043 |
-
173 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2044 |
-
175 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2045 |
-
178 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2046 |
-
181 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2047 |
-
187 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2048 |
-
194 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2049 |
-
194 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2050 |
-
195 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
2051 |
-
196 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2052 |
-
198 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2053 |
-
199 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2054 |
-
199 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2055 |
-
205 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2056 |
-
205 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2057 |
-
206 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
2058 |
-
207 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2059 |
-
209 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2060 |
-
210 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2061 |
-
210 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2062 |
-
215 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 11 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2063 |
-
215 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2064 |
-
216 | ERROR | [x] Line indented incorrectly; expected at least 11 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.Incorrect)
|
2065 |
-
216 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2066 |
-
218 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2067 |
-
219 | ERROR | [x] Line indented incorrectly; expected at least 12 tabs, found 7 (Generic.WhiteSpace.ScopeIndent.Incorrect)
|
2068 |
-
219 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2069 |
-
220 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2070 |
-
224 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2071 |
-
226 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2072 |
-
229 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2073 |
-
231 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2074 |
-
234 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2075 |
-
238 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 11 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2076 |
-
238 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2077 |
-
246 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2078 |
-
249 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2079 |
-
255 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2080 |
-
257 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2081 |
-
259 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
2082 |
-
260 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'media'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2083 |
-
261 | WARNING | [x] Array double arrow not aligned correctly; expected 5 space(s) between "'user'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2084 |
-
262 | WARNING | [x] Array double arrow not aligned correctly; expected 2 space(s) between "'comment'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2085 |
-
262 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2086 |
-
266 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2087 |
-
266 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2088 |
-
269 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2089 |
-
269 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2090 |
-
269 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2091 |
-
269 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2092 |
-
269 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2093 |
-
270 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2094 |
-
272 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2095 |
-
272 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2096 |
-
272 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2097 |
-
272 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2098 |
-
272 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2099 |
-
273 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2100 |
-
275 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2101 |
-
275 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2102 |
-
275 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2103 |
-
275 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2104 |
-
275 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2105 |
-
276 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2106 |
-
278 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2107 |
-
280 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2108 |
-
280 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2109 |
-
281 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2110 |
-
283 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2111 |
-
283 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2112 |
-
288 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$post_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2113 |
-
290 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 11 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2114 |
-
291 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2115 |
-
296 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2116 |
-
296 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
2117 |
-
297 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2118 |
-
297 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2119 |
-
297 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2120 |
-
300 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2121 |
-
302 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 22 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2122 |
-
303 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$post_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2123 |
-
304 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 11 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2124 |
-
306 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2125 |
-
307 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2126 |
-
312 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$taxonomies". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2127 |
-
314 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 11 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2128 |
-
315 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2129 |
-
320 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2130 |
-
320 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
2131 |
-
321 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2132 |
-
321 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2133 |
-
321 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2134 |
-
324 | ERROR | [x] Line indented incorrectly; expected 11 tabs, found 12 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2135 |
-
326 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 22 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2136 |
-
327 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$taxonomies". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2137 |
-
328 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 11 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2138 |
-
330 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2139 |
-
331 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2140 |
-
336 | ERROR | [x] Line indented incorrectly; expected 9 tabs, found 10 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2141 |
-
336 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2142 |
-
340 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2143 |
-
342 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2144 |
-
345 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2145 |
-
350 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2146 |
-
352 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2147 |
-
356 | ERROR | [x] Line indented incorrectly; expected 9 tabs, found 10 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2148 |
-
356 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2149 |
-
360 | ERROR | [x] Line indented incorrectly; expected 9 tabs, found 10 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2150 |
-
360 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2151 |
-
361 | ERROR | [x] Line indented incorrectly; expected at least 10 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.Incorrect)
|
2152 |
-
361 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2153 |
-
363 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2154 |
-
364 | ERROR | [x] Line indented incorrectly; expected at least 11 tabs, found 7 (Generic.WhiteSpace.ScopeIndent.Incorrect)
|
2155 |
-
364 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$extra_class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2156 |
-
365 | ERROR | [x] Line indented incorrectly; expected 10 tabs, found 6 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2157 |
-
368 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2158 |
-
373 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2159 |
-
375 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2160 |
-
378 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2161 |
-
380 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2162 |
-
383 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2163 |
-
389 | ERROR | [x] Line indented incorrectly; expected 9 tabs, found 10 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2164 |
-
389 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2165 |
-
398 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2166 |
-
398 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2167 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2168 |
-
PHPCBF CAN FIX THE 94 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
2169 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2170 |
-
|
2171 |
-
|
2172 |
-
FILE: ui/admin/shortcode.php
|
2173 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2174 |
-
FOUND 38 ERRORS AND 6 WARNINGS AFFECTING 40 LINES
|
2175 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2176 |
-
341 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2177 |
-
346 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2178 |
-
349 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2179 |
-
350 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2180 |
-
351 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2181 |
-
352 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2182 |
-
353 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2183 |
-
354 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2184 |
-
356 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2185 |
-
363 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2186 |
-
364 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_pods". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2187 |
-
365 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2188 |
-
367 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
2189 |
-
367 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2190 |
-
372 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
2191 |
-
373 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2192 |
-
382 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
2193 |
-
382 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2194 |
-
388 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$templates". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2195 |
-
389 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$template_count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2196 |
-
391 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
2197 |
-
391 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2198 |
-
394 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2199 |
-
407 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2200 |
-
416 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2201 |
-
425 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$page_count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2202 |
-
427 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
2203 |
-
427 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2204 |
-
440 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2205 |
-
446 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2206 |
-
452 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2207 |
-
458 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2208 |
-
464 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2209 |
-
470 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2210 |
-
476 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2211 |
-
482 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2212 |
-
488 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2213 |
-
494 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2214 |
-
497 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$cache_modes". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2215 |
-
504 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default_cache_mode". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2216 |
-
506 | WARNING | Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
2217 |
-
507 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$cache_mode_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2218 |
-
516 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2219 |
-
522 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2220 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2221 |
-
|
2222 |
-
|
2223 |
-
FILE: ui/admin/setup-edit.php
|
2224 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2225 |
-
FOUND 993 ERRORS AND 52 WARNINGS AFFECTING 696 LINES
|
2226 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2227 |
-
4 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$api". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2228 |
-
6 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2229 |
-
8 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2230 |
-
10 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2231 |
-
10 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2232 |
-
10 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2233 |
-
10 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2234 |
-
10 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2235 |
-
11 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2236 |
-
11 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2237 |
-
13 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2238 |
-
13 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2239 |
-
15 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2240 |
-
15 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2241 |
-
17 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2242 |
-
20 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2243 |
-
22 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_types_select". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2244 |
-
25 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2245 |
-
26 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2246 |
-
27 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2247 |
-
28 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2248 |
-
28 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2249 |
-
28 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2250 |
-
30 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2251 |
-
30 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_type_vars". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2252 |
-
32 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2253 |
-
32 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2254 |
-
32 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2255 |
-
32 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2256 |
-
33 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2257 |
-
33 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_type_vars". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2258 |
-
33 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2259 |
-
35 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2260 |
-
36 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2261 |
-
36 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2262 |
-
37 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2263 |
-
37 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2264 |
-
37 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2265 |
-
38 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2266 |
-
39 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2267 |
-
39 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2268 |
-
39 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2269 |
-
39 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2270 |
-
39 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2271 |
-
40 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2272 |
-
41 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2273 |
-
41 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2274 |
-
41 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2275 |
-
41 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2276 |
-
41 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2277 |
-
41 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2278 |
-
42 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2279 |
-
43 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2280 |
-
45 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2281 |
-
45 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2282 |
-
46 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2283 |
-
46 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2284 |
-
46 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2285 |
-
47 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2286 |
-
47 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_types_select". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2287 |
-
49 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2288 |
-
49 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_types_select". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2289 |
-
49 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2290 |
-
50 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2291 |
-
50 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
2292 |
-
51 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2293 |
-
52 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2294 |
-
52 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2295 |
-
52 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2296 |
-
53 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2297 |
-
53 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_types_select". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2298 |
-
55 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2299 |
-
55 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_types_select". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2300 |
-
55 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2301 |
-
56 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2302 |
-
57 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2303 |
-
59 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_defaults". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2304 |
-
60 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2305 |
-
60 | WARNING | [x] Array double arrow not aligned correctly; expected 8 space(s) between "'name'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2306 |
-
61 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2307 |
-
61 | WARNING | [x] Array double arrow not aligned correctly; expected 7 space(s) between "'label'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2308 |
-
62 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2309 |
-
63 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2310 |
-
63 | WARNING | [x] Array double arrow not aligned correctly; expected 8 space(s) between "'type'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2311 |
-
64 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2312 |
-
65 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2313 |
-
65 | WARNING | [x] Array double arrow not aligned correctly; expected 3 space(s) between "'sister_id'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2314 |
-
66 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2315 |
-
66 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'required'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2316 |
-
67 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2317 |
-
67 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'unique'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2318 |
-
70 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2319 |
-
72 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$tableless_field_types". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2320 |
-
72 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 4 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2321 |
-
73 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$simple_tableless_objects".
|
2322 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2323 |
-
74 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$bidirectional_objects". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2324 |
-
74 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 4 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2325 |
-
76 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2326 |
-
76 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2327 |
-
77 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2328 |
-
77 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2329 |
-
80 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2330 |
-
80 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2331 |
-
81 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2332 |
-
81 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_data". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2333 |
-
81 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2334 |
-
81 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2335 |
-
83 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2336 |
-
83 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2337 |
-
83 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_option". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2338 |
-
84 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2339 |
-
84 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2340 |
-
84 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2341 |
-
85 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2342 |
-
88 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_defaults". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2343 |
-
88 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2344 |
-
90 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_table". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2345 |
-
93 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2346 |
-
93 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_table". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2347 |
-
94 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2348 |
-
94 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2349 |
-
95 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2350 |
-
97 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2351 |
-
99 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2352 |
-
99 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$tables". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2353 |
-
99 | ERROR | [x] String "SHOW TABLES" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2354 |
-
101 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2355 |
-
101 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2356 |
-
102 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2357 |
-
103 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2358 |
-
103 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_table". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2359 |
-
103 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2360 |
-
103 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2361 |
-
104 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2362 |
-
105 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2363 |
-
107 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2364 |
-
110 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2365 |
-
111 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2366 |
-
112 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2367 |
-
112 | WARNING | [x] Array double arrow not aligned correctly; expected 5 space(s) between "'field_defaults'" and double arrow, but found 1.
|
2368 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2369 |
-
113 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2370 |
-
113 | WARNING | [x] Array double arrow not aligned correctly; expected 8 space(s) between "'pick_object'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2371 |
-
114 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2372 |
-
114 | WARNING | [x] Array double arrow not aligned correctly; expected 9 space(s) between "'pick_table'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2373 |
-
115 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2374 |
-
115 | WARNING | [x] Array double arrow not aligned correctly; expected 10 space(s) between "'sister_id'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2375 |
-
115 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2376 |
-
118 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_settings". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2377 |
-
118 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2378 |
-
120 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2379 |
-
120 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2380 |
-
120 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2381 |
-
120 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2382 |
-
123 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2383 |
-
123 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2384 |
-
124 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
2385 |
-
125 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$max_length_name". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2386 |
-
127 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2387 |
-
128 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$tab_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2388 |
-
130 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_tabs". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2389 |
-
130 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2390 |
-
131 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_tab_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2391 |
-
133 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$no_additional". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2392 |
-
135 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2393 |
-
135 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2394 |
-
136 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2395 |
-
136 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2396 |
-
137 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2397 |
-
137 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$no_additional". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2398 |
-
151 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pod_post". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2399 |
-
160 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2400 |
-
161 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2401 |
-
162 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2402 |
-
163 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2403 |
-
163 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2404 |
-
164 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2405 |
-
164 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2406 |
-
166 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2407 |
-
167 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2408 |
-
168 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2409 |
-
169 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2410 |
-
169 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2411 |
-
169 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2412 |
-
169 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2413 |
-
169 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2414 |
-
169 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2415 |
-
170 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2416 |
-
171 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2417 |
-
171 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2418 |
-
172 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2419 |
-
173 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2420 |
-
173 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
2421 |
-
174 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2422 |
-
174 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2423 |
-
175 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2424 |
-
176 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2425 |
-
177 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2426 |
-
178 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2427 |
-
178 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2428 |
-
179 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2429 |
-
180 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2430 |
-
181 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2431 |
-
182 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2432 |
-
182 | ERROR | [x] Opening PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentAfterOpen)
|
2433 |
-
182 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2434 |
-
183 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2435 |
-
183 | ERROR | [x] Multi-line function call not indented correctly; expected 24 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
2436 |
-
183 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
2437 |
-
184 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2438 |
-
184 | ERROR | [x] Multi-line array item not aligned correctly; expected 8 spaces, but found 24 (WordPress.Arrays.ArrayIndentation.MultiLineArrayItemNotAligned)
|
2439 |
-
185 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2440 |
-
185 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'size'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2441 |
-
185 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2442 |
-
186 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2443 |
-
186 | ERROR | [x] Multi-line function call not indented correctly; expected 24 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
2444 |
-
187 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2445 |
-
187 | ERROR | [x] Multi-line function call not indented correctly; expected 24 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
2446 |
-
187 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
2447 |
-
187 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'class'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2448 |
-
187 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2449 |
-
188 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2450 |
-
188 | ERROR | [x] Multi-line function call not indented correctly; expected 20 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
2451 |
-
188 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
2452 |
-
188 | ERROR | [x] Closing PHP tag must be on a line by itself (Squiz.PHP.EmbeddedPhp.ContentBeforeEnd)
|
2453 |
-
189 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2454 |
-
190 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2455 |
-
191 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2456 |
-
192 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2457 |
-
193 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2458 |
-
193 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2459 |
-
193 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2460 |
-
194 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2461 |
-
195 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2462 |
-
197 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2463 |
-
198 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2464 |
-
198 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2465 |
-
198 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2466 |
-
199 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2467 |
-
201 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2468 |
-
202 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2469 |
-
203 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2470 |
-
203 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2471 |
-
205 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2472 |
-
205 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2473 |
-
205 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2474 |
-
206 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2475 |
-
206 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$tab_keys". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2476 |
-
208 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2477 |
-
208 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$default". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2478 |
-
209 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2479 |
-
209 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2480 |
-
211 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2481 |
-
211 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2482 |
-
212 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2483 |
-
212 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2484 |
-
212 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2485 |
-
212 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2486 |
-
213 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2487 |
-
215 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2488 |
-
215 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2489 |
-
217 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2490 |
-
219 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2491 |
-
219 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2492 |
-
219 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2493 |
-
220 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2494 |
-
220 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2495 |
-
221 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2496 |
-
222 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2497 |
-
223 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2498 |
-
223 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$label'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2499 |
-
224 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2500 |
-
225 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2501 |
-
226 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2502 |
-
226 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2503 |
-
227 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2504 |
-
228 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2505 |
-
229 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2506 |
-
230 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2507 |
-
230 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2508 |
-
230 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2509 |
-
231 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2510 |
-
235 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
2511 |
-
235 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2512 |
-
236 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2513 |
-
238 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$do". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2514 |
-
240 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2515 |
-
240 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2516 |
-
240 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2517 |
-
241 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2518 |
-
242 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2519 |
-
242 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2520 |
-
242 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2521 |
-
242 | ERROR | [x] Expected 1 space after "=="; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2522 |
-
243 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2523 |
-
245 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2524 |
-
245 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$message". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2525 |
-
245 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
2526 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
2527 |
-
247 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2528 |
-
247 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$obj'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2529 |
-
258 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2530 |
-
258 | ERROR | [x] Line indented incorrectly; expected 0 tabs, found 1 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2531 |
-
258 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2532 |
-
261 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2533 |
-
262 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2534 |
-
262 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2535 |
-
263 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2536 |
-
265 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2537 |
-
266 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2538 |
-
266 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2539 |
-
266 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2540 |
-
267 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2541 |
-
267 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2542 |
-
270 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2543 |
-
272 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2544 |
-
273 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2545 |
-
274 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2546 |
-
275 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2547 |
-
276 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2548 |
-
277 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2549 |
-
278 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2550 |
-
279 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2551 |
-
280 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2552 |
-
280 | ERROR | [ ] Inline PHP statement must contain a single statement; 2 found (Squiz.PHP.EmbeddedPhp.MultipleStatements)
|
2553 |
-
280 | ERROR | [x] String "<h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2554 |
-
280 | ERROR | [x] String "</h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2555 |
-
280 | ERROR | [x] Each PHP statement must be on a line by itself (Generic.Formatting.DisallowMultipleStatements.SameLine)
|
2556 |
-
281 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2557 |
-
282 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2558 |
-
283 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2559 |
-
283 | ERROR | [ ] Inline PHP statement must contain a single statement; 2 found (Squiz.PHP.EmbeddedPhp.MultipleStatements)
|
2560 |
-
283 | ERROR | [x] String "<h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2561 |
-
283 | ERROR | [x] String "</h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2562 |
-
283 | ERROR | [x] Each PHP statement must be on a line by itself (Generic.Formatting.DisallowMultipleStatements.SameLine)
|
2563 |
-
284 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2564 |
-
285 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2565 |
-
286 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2566 |
-
286 | ERROR | [ ] Inline PHP statement must contain a single statement; 2 found (Squiz.PHP.EmbeddedPhp.MultipleStatements)
|
2567 |
-
286 | ERROR | [x] String "<h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2568 |
-
286 | ERROR | [x] String "</h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2569 |
-
286 | ERROR | [x] Each PHP statement must be on a line by itself (Generic.Formatting.DisallowMultipleStatements.SameLine)
|
2570 |
-
287 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2571 |
-
288 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2572 |
-
289 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2573 |
-
290 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2574 |
-
291 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2575 |
-
292 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2576 |
-
293 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2577 |
-
294 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2578 |
-
295 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2579 |
-
296 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2580 |
-
296 | ERROR | [ ] Inline PHP statement must contain a single statement; 2 found (Squiz.PHP.EmbeddedPhp.MultipleStatements)
|
2581 |
-
296 | ERROR | [x] String "<h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2582 |
-
296 | ERROR | [x] String "</h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2583 |
-
296 | ERROR | [x] Each PHP statement must be on a line by itself (Generic.Formatting.DisallowMultipleStatements.SameLine)
|
2584 |
-
297 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2585 |
-
298 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2586 |
-
299 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2587 |
-
299 | ERROR | [ ] Inline PHP statement must contain a single statement; 2 found (Squiz.PHP.EmbeddedPhp.MultipleStatements)
|
2588 |
-
299 | ERROR | [x] String "<h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2589 |
-
299 | ERROR | [x] String "</h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2590 |
-
299 | ERROR | [x] Each PHP statement must be on a line by itself (Generic.Formatting.DisallowMultipleStatements.SameLine)
|
2591 |
-
300 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2592 |
-
301 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2593 |
-
302 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2594 |
-
302 | ERROR | [ ] Inline PHP statement must contain a single statement; 2 found (Squiz.PHP.EmbeddedPhp.MultipleStatements)
|
2595 |
-
302 | ERROR | [x] String "<h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2596 |
-
302 | ERROR | [x] String "</h6>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
2597 |
-
302 | ERROR | [x] Each PHP statement must be on a line by itself (Generic.Formatting.DisallowMultipleStatements.SameLine)
|
2598 |
-
303 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2599 |
-
304 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2600 |
-
305 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2601 |
-
306 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2602 |
-
307 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2603 |
-
308 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2604 |
-
309 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2605 |
-
311 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2606 |
-
311 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2607 |
-
312 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2608 |
-
312 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'id'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2609 |
-
313 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2610 |
-
313 | WARNING | [x] Array double arrow not aligned correctly; expected 2 space(s) between "'name'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2611 |
-
314 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2612 |
-
315 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2613 |
-
315 | WARNING | [x] Array double arrow not aligned correctly; expected 2 space(s) between "'type'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
2614 |
-
315 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
2615 |
-
316 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2616 |
-
318 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2617 |
-
320 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2618 |
-
322 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2619 |
-
322 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2620 |
-
322 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2621 |
-
323 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2622 |
-
325 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2623 |
-
326 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2624 |
-
326 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 4 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2625 |
-
327 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2626 |
-
328 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2627 |
-
328 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
2628 |
-
329 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2629 |
-
330 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2630 |
-
331 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2631 |
-
332 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2632 |
-
333 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2633 |
-
334 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2634 |
-
335 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2635 |
-
335 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2636 |
-
336 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2637 |
-
339 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2638 |
-
339 | ERROR | [x] Line indented incorrectly; expected 0 tabs, found 1 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2639 |
-
339 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
2640 |
-
341 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2641 |
-
343 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2642 |
-
343 | ERROR | [x] Line indented incorrectly; expected 0 tabs, found 1 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2643 |
-
343 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2644 |
-
348 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2645 |
-
348 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2646 |
-
348 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2647 |
-
348 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2648 |
-
349 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2649 |
-
349 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2650 |
-
350 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2651 |
-
350 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2652 |
-
350 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 9 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2653 |
-
352 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2654 |
-
359 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2655 |
-
363 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2656 |
-
364 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2657 |
-
364 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2658 |
-
364 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2659 |
-
364 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2660 |
-
365 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2661 |
-
365 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2662 |
-
366 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2663 |
-
366 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2664 |
-
366 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 9 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2665 |
-
368 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2666 |
-
369 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2667 |
-
370 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2668 |
-
371 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2669 |
-
372 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2670 |
-
372 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2671 |
-
373 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2672 |
-
375 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2673 |
-
376 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2674 |
-
377 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2675 |
-
378 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2676 |
-
379 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2677 |
-
379 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2678 |
-
380 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2679 |
-
381 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2680 |
-
382 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2681 |
-
383 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2682 |
-
384 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2683 |
-
384 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2684 |
-
385 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2685 |
-
386 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2686 |
-
387 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2687 |
-
388 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2688 |
-
389 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2689 |
-
389 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2690 |
-
390 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2691 |
-
391 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2692 |
-
392 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2693 |
-
393 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2694 |
-
394 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2695 |
-
394 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2696 |
-
394 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2697 |
-
395 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2698 |
-
396 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2699 |
-
397 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2700 |
-
398 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2701 |
-
399 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2702 |
-
399 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2703 |
-
400 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2704 |
-
401 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2705 |
-
402 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2706 |
-
403 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2707 |
-
404 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2708 |
-
404 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2709 |
-
405 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2710 |
-
406 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2711 |
-
407 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2712 |
-
408 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2713 |
-
409 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2714 |
-
409 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2715 |
-
410 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2716 |
-
411 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2717 |
-
412 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2718 |
-
413 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2719 |
-
414 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2720 |
-
414 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2721 |
-
415 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2722 |
-
416 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2723 |
-
417 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2724 |
-
418 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2725 |
-
419 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2726 |
-
419 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2727 |
-
420 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2728 |
-
421 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2729 |
-
422 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2730 |
-
423 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2731 |
-
424 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2732 |
-
424 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2733 |
-
425 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2734 |
-
426 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2735 |
-
427 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2736 |
-
428 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2737 |
-
429 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2738 |
-
429 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2739 |
-
430 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2740 |
-
431 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2741 |
-
433 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2742 |
-
434 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2743 |
-
435 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2744 |
-
436 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2745 |
-
436 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2746 |
-
437 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2747 |
-
438 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2748 |
-
439 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2749 |
-
440 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2750 |
-
441 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2751 |
-
441 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2752 |
-
442 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2753 |
-
443 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2754 |
-
444 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2755 |
-
445 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2756 |
-
446 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2757 |
-
446 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2758 |
-
447 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2759 |
-
448 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2760 |
-
449 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2761 |
-
452 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2762 |
-
453 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2763 |
-
454 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2764 |
-
454 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2765 |
-
455 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2766 |
-
456 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2767 |
-
460 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2768 |
-
461 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2769 |
-
462 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2770 |
-
462 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2771 |
-
463 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2772 |
-
464 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2773 |
-
465 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2774 |
-
466 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2775 |
-
467 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2776 |
-
467 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2777 |
-
468 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2778 |
-
469 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2779 |
-
471 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2780 |
-
472 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2781 |
-
473 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2782 |
-
474 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2783 |
-
475 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2784 |
-
475 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2785 |
-
476 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2786 |
-
476 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2787 |
-
477 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2788 |
-
478 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2789 |
-
479 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2790 |
-
480 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2791 |
-
480 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2792 |
-
481 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2793 |
-
483 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2794 |
-
484 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2795 |
-
485 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2796 |
-
486 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2797 |
-
486 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2798 |
-
487 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2799 |
-
488 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2800 |
-
489 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2801 |
-
490 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2802 |
-
491 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2803 |
-
491 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2804 |
-
492 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2805 |
-
493 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2806 |
-
494 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2807 |
-
495 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2808 |
-
496 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2809 |
-
497 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2810 |
-
498 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2811 |
-
499 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2812 |
-
500 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2813 |
-
501 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
2814 |
-
502 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2815 |
-
503 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2816 |
-
503 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2817 |
-
503 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2818 |
-
503 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2819 |
-
504 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2820 |
-
504 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2821 |
-
505 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2822 |
-
505 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2823 |
-
505 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 9 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2824 |
-
507 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2825 |
-
508 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2826 |
-
509 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2827 |
-
510 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2828 |
-
511 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2829 |
-
511 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
2830 |
-
512 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2831 |
-
514 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2832 |
-
515 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2833 |
-
516 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2834 |
-
517 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2835 |
-
517 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2836 |
-
517 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2837 |
-
518 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2838 |
-
519 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2839 |
-
519 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$label". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2840 |
-
519 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 5 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
2841 |
-
520 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2842 |
-
521 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2843 |
-
522 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2844 |
-
523 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2845 |
-
523 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2846 |
-
524 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2847 |
-
525 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2848 |
-
526 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2849 |
-
527 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2850 |
-
527 | ERROR | [x] Line indented incorrectly; expected 4 tabs, found 5 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2851 |
-
528 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2852 |
-
529 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2853 |
-
530 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2854 |
-
531 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2855 |
-
531 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2856 |
-
532 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2857 |
-
533 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2858 |
-
534 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2859 |
-
535 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2860 |
-
536 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2861 |
-
537 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2862 |
-
538 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
2863 |
-
539 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2864 |
-
541 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2865 |
-
542 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2866 |
-
542 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2867 |
-
543 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2868 |
-
543 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2869 |
-
544 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2870 |
-
546 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2871 |
-
547 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2872 |
-
547 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$index_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2873 |
-
549 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2874 |
-
549 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2875 |
-
549 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2876 |
-
550 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2877 |
-
550 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2878 |
-
550 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
2879 |
-
550 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2880 |
-
551 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2881 |
-
551 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$index_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2882 |
-
551 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2883 |
-
551 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2884 |
-
552 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2885 |
-
552 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2886 |
-
553 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2887 |
-
555 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2888 |
-
556 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2889 |
-
556 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2890 |
-
557 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2891 |
-
557 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2892 |
-
558 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2893 |
-
560 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2894 |
-
561 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2895 |
-
561 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2896 |
-
562 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2897 |
-
562 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2898 |
-
562 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
2899 |
-
563 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2900 |
-
565 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2901 |
-
566 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2902 |
-
566 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$hierarchical_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2903 |
-
568 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2904 |
-
568 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2905 |
-
568 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2906 |
-
569 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2907 |
-
569 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2908 |
-
569 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2909 |
-
569 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2910 |
-
569 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2911 |
-
569 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2912 |
-
569 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2913 |
-
569 | ERROR | [ ] Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
2914 |
-
569 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
2915 |
-
569 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2916 |
-
570 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2917 |
-
570 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$hierarchical_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2918 |
-
570 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2919 |
-
570 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2920 |
-
571 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2921 |
-
571 | ERROR | [x] Line indented incorrectly; expected 1 tabs, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2922 |
-
573 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2923 |
-
573 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
2924 |
-
574 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2925 |
-
574 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$hierarchical_fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2926 |
-
575 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2927 |
-
577 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2928 |
-
578 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2929 |
-
578 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2930 |
-
579 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2931 |
-
579 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2932 |
-
580 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2933 |
-
582 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2934 |
-
583 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2935 |
-
584 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2936 |
-
586 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2937 |
-
587 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2938 |
-
588 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2939 |
-
588 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pre_save_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2940 |
-
590 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2941 |
-
590 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2942 |
-
592 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2943 |
-
592 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2944 |
-
593 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2945 |
-
593 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pre_save_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2946 |
-
593 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2947 |
-
593 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2948 |
-
594 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2949 |
-
594 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2950 |
-
596 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2951 |
-
596 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2952 |
-
597 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2953 |
-
597 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2954 |
-
598 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2955 |
-
599 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2956 |
-
600 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2957 |
-
601 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2958 |
-
602 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2959 |
-
602 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$post_save_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2960 |
-
604 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2961 |
-
604 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2962 |
-
606 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2963 |
-
606 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2964 |
-
607 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2965 |
-
607 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$post_save_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2966 |
-
607 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2967 |
-
607 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2968 |
-
608 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2969 |
-
608 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2970 |
-
610 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2971 |
-
610 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2972 |
-
611 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2973 |
-
611 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2974 |
-
612 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2975 |
-
613 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2976 |
-
614 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2977 |
-
615 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2978 |
-
616 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2979 |
-
616 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pre_delete_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2980 |
-
618 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2981 |
-
618 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2982 |
-
620 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2983 |
-
620 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2984 |
-
621 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2985 |
-
621 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pre_delete_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
2986 |
-
621 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2987 |
-
621 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
2988 |
-
622 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2989 |
-
622 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
2990 |
-
624 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2991 |
-
624 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2992 |
-
625 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2993 |
-
625 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
2994 |
-
626 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2995 |
-
627 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2996 |
-
628 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2997 |
-
629 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2998 |
-
630 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
2999 |
-
630 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$post_delete_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3000 |
-
632 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3001 |
-
632 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3002 |
-
634 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3003 |
-
634 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
3004 |
-
635 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3005 |
-
635 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$post_delete_helpers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3006 |
-
635 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
3007 |
-
635 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
3008 |
-
636 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3009 |
-
636 | ERROR | [x] Line indented incorrectly; expected 2 tabs, found 3 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
|
3010 |
-
638 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3011 |
-
638 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3012 |
-
639 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3013 |
-
639 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3014 |
-
640 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3015 |
-
641 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3016 |
-
642 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3017 |
-
643 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3018 |
-
643 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3019 |
-
644 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3020 |
-
648 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3021 |
-
651 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3022 |
-
653 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3023 |
-
653 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
3024 |
-
653 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
3025 |
-
654 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3026 |
-
656 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3027 |
-
657 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3028 |
-
658 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3029 |
-
658 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$fields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3030 |
-
658 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 8 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
3031 |
-
659 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3032 |
-
659 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_options". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3033 |
-
660 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3034 |
-
660 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3035 |
-
660 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 9 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
3036 |
-
662 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3037 |
-
663 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3038 |
-
664 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3039 |
-
668 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
3040 |
-
671 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3041 |
-
671 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3042 |
-
673 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3043 |
-
673 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3044 |
-
673 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3045 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3046 |
-
673 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$wpdb'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3047 |
-
673 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_v'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3048 |
-
675 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3049 |
-
675 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3050 |
-
677 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3051 |
-
678 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3052 |
-
678 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3053 |
-
679 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3054 |
-
688 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3055 |
-
689 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3056 |
-
690 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3057 |
-
691 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3058 |
-
691 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
3059 |
-
691 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3060 |
-
692 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3061 |
-
693 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3062 |
-
694 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3063 |
-
695 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3064 |
-
696 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3065 |
-
697 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3066 |
-
697 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
3067 |
-
697 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3068 |
-
697 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3069 |
-
698 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3070 |
-
699 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3071 |
-
700 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3072 |
-
701 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3073 |
-
702 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3074 |
-
703 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3075 |
-
704 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3076 |
-
705 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3077 |
-
706 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3078 |
-
707 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3079 |
-
708 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3080 |
-
709 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3081 |
-
710 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3082 |
-
711 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3083 |
-
712 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3084 |
-
713 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3085 |
-
722 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3086 |
-
723 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3087 |
-
725 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3088 |
-
725 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$field_type". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3089 |
-
726 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3090 |
-
726 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
3091 |
-
727 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3092 |
-
729 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3093 |
-
731 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3094 |
-
731 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$pick_object_singular". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3095 |
-
732 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3096 |
-
732 | WARNING | [x] Array double arrow not aligned correctly; expected 7 space(s) between ")" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
3097 |
-
733 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3098 |
-
734 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3099 |
-
734 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
3100 |
-
735 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3101 |
-
737 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3102 |
-
737 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
3103 |
-
737 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3104 |
-
738 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3105 |
-
739 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3106 |
-
739 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
3107 |
-
740 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3108 |
-
740 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3109 |
-
741 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3110 |
-
741 | ERROR | [x] Expected 1 space(s) after ELSE keyword; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword)
|
3111 |
-
741 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
3112 |
-
742 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3113 |
-
742 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3114 |
-
744 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3115 |
-
744 | ERROR | [ ] Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$sub_object". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3116 |
-
745 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3117 |
-
746 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3118 |
-
747 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3119 |
-
747 | ERROR | [x] Expected 1 space after closing brace; newline found (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace)
|
3120 |
-
748 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3121 |
-
748 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
3122 |
-
748 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3123 |
-
749 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3124 |
-
750 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3125 |
-
751 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3126 |
-
752 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3127 |
-
753 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3128 |
-
753 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pods_field_types'.
|
3129 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3130 |
-
754 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3131 |
-
755 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3132 |
-
756 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3133 |
-
756 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pods_pick_objects'.
|
3134 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3135 |
-
757 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3136 |
-
759 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3137 |
-
760 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3138 |
-
761 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3139 |
-
762 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3140 |
-
763 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3141 |
-
764 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3142 |
-
765 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3143 |
-
766 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3144 |
-
767 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3145 |
-
768 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3146 |
-
769 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3147 |
-
770 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3148 |
-
771 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3149 |
-
772 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3150 |
-
774 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3151 |
-
775 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3152 |
-
776 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3153 |
-
776 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_slash'.
|
3154 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3155 |
-
778 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3156 |
-
779 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3157 |
-
781 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3158 |
-
783 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3159 |
-
784 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3160 |
-
785 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3161 |
-
786 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3162 |
-
788 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3163 |
-
789 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3164 |
-
791 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3165 |
-
792 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3166 |
-
793 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3167 |
-
795 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3168 |
-
796 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3169 |
-
797 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3170 |
-
799 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3171 |
-
800 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3172 |
-
801 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3173 |
-
802 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3174 |
-
803 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3175 |
-
804 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3176 |
-
806 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3177 |
-
807 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3178 |
-
808 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3179 |
-
810 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3180 |
-
812 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3181 |
-
813 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3182 |
-
814 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3183 |
-
815 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3184 |
-
816 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3185 |
-
817 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3186 |
-
818 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3187 |
-
819 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3188 |
-
821 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3189 |
-
822 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3190 |
-
823 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3191 |
-
823 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3192 |
-
824 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3193 |
-
826 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3194 |
-
827 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3195 |
-
828 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3196 |
-
829 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3197 |
-
830 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3198 |
-
832 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3199 |
-
834 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3200 |
-
835 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3201 |
-
836 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3202 |
-
837 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3203 |
-
838 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3204 |
-
839 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3205 |
-
840 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3206 |
-
842 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3207 |
-
843 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3208 |
-
844 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3209 |
-
845 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3210 |
-
846 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3211 |
-
847 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3212 |
-
848 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3213 |
-
849 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3214 |
-
851 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3215 |
-
853 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3216 |
-
855 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3217 |
-
857 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3218 |
-
858 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3219 |
-
859 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3220 |
-
860 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3221 |
-
861 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3222 |
-
863 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3223 |
-
865 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3224 |
-
866 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3225 |
-
867 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3226 |
-
869 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3227 |
-
870 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3228 |
-
871 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3229 |
-
871 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3230 |
-
872 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3231 |
-
874 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3232 |
-
875 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3233 |
-
876 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3234 |
-
877 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3235 |
-
877 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3236 |
-
878 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3237 |
-
880 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3238 |
-
881 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3239 |
-
882 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3240 |
-
884 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3241 |
-
885 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3242 |
-
886 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3243 |
-
887 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3244 |
-
888 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3245 |
-
889 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3246 |
-
890 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3247 |
-
891 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3248 |
-
892 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3249 |
-
893 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3250 |
-
895 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3251 |
-
896 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3252 |
-
897 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3253 |
-
898 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3254 |
-
899 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3255 |
-
899 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3256 |
-
900 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3257 |
-
901 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3258 |
-
903 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3259 |
-
904 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3260 |
-
905 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3261 |
-
906 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3262 |
-
907 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3263 |
-
907 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3264 |
-
908 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3265 |
-
909 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3266 |
-
911 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3267 |
-
912 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3268 |
-
913 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3269 |
-
914 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3270 |
-
915 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3271 |
-
916 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3272 |
-
917 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3273 |
-
917 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3274 |
-
918 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3275 |
-
920 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3276 |
-
921 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3277 |
-
922 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3278 |
-
923 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3279 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3280 |
-
PHPCBF CAN FIX THE 869 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
3281 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3282 |
-
|
3283 |
-
|
3284 |
-
FILE: ui/admin/upgrade/backup.php
|
3285 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3286 |
-
FOUND 7 ERRORS AFFECTING 7 LINES
|
3287 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3288 |
-
1 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3289 |
-
8 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3290 |
-
10 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3291 |
-
14 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3292 |
-
21 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3293 |
-
23 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3294 |
-
27 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3295 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3296 |
-
|
3297 |
-
|
3298 |
-
FILE: ui/admin/upgrade/upgrade_2_1_0.php
|
3299 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3300 |
-
FOUND 16 ERRORS AFFECTING 16 LINES
|
3301 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3302 |
-
10 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3303 |
-
18 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3304 |
-
21 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3305 |
-
24 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3306 |
-
35 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$intro". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3307 |
-
37 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$intro'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3308 |
-
49 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3309 |
-
57 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3310 |
-
67 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3311 |
-
78 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3312 |
-
86 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3313 |
-
96 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3314 |
-
105 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3315 |
-
116 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3316 |
-
117 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3317 |
-
120 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3318 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3319 |
-
|
3320 |
-
|
3321 |
-
FILE: ui/admin/upgrade/upgrade_2_0_0.php
|
3322 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3323 |
-
FOUND 40 ERRORS AFFECTING 36 LINES
|
3324 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3325 |
-
10 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3326 |
-
14 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'wp_create_nonce'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3327 |
-
14 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$new_version'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3328 |
-
18 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3329 |
-
21 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3330 |
-
24 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3331 |
-
35 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$intro". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3332 |
-
37 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$intro'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3333 |
-
49 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3334 |
-
57 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3335 |
-
63 | ERROR | Variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$count". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
3336 |
-
65 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3337 |
-
69 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3338 |
-
71 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3339 |
-
80 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3340 |
-
89 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3341 |
-
98 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3342 |
-
107 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3343 |
-
116 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3344 |
-
125 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3345 |
-
137 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3346 |
-
137 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pod'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3347 |
-
152 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3348 |
-
160 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3349 |
-
170 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3350 |
-
177 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3351 |
-
177 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$count'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3352 |
-
179 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3353 |
-
188 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3354 |
-
197 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3355 |
-
206 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3356 |
-
215 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3357 |
-
224 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3358 |
-
233 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3359 |
-
245 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3360 |
-
245 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pod'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3361 |
-
258 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3362 |
-
269 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3363 |
-
270 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3364 |
-
273 | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
3365 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3366 |
-
|
3367 |
-
|
3368 |
-
FILE: classes/widgets/PodsWidgetForm.php
|
3369 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3370 |
-
FOUND 10 ERRORS AFFECTING 5 LINES
|
3371 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3372 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsWidgetForm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3373 |
-
8 | ERROR | Doc comment for parameter "$id_base" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3374 |
-
8 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3375 |
-
8 | ERROR | Doc comment for parameter "$widget_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3376 |
-
8 | ERROR | Doc comment for parameter "$control_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3377 |
-
20 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3378 |
-
20 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3379 |
-
48 | ERROR | Doc comment for parameter "$new_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3380 |
-
48 | ERROR | Doc comment for parameter "$old_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3381 |
-
65 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3382 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3383 |
-
|
3384 |
-
|
3385 |
-
FILE: classes/widgets/PodsWidgetField.php
|
3386 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3387 |
-
FOUND 10 ERRORS AFFECTING 5 LINES
|
3388 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3389 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsWidgetField". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3390 |
-
8 | ERROR | Doc comment for parameter "$id_base" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3391 |
-
8 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3392 |
-
8 | ERROR | Doc comment for parameter "$widget_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3393 |
-
8 | ERROR | Doc comment for parameter "$control_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3394 |
-
20 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3395 |
-
20 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3396 |
-
45 | ERROR | Doc comment for parameter "$new_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3397 |
-
45 | ERROR | Doc comment for parameter "$old_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3398 |
-
60 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3399 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3400 |
-
|
3401 |
-
|
3402 |
-
FILE: classes/widgets/PodsWidgetSingle.php
|
3403 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3404 |
-
FOUND 10 ERRORS AFFECTING 5 LINES
|
3405 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3406 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsWidgetSingle". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3407 |
-
8 | ERROR | Doc comment for parameter "$id_base" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3408 |
-
8 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3409 |
-
8 | ERROR | Doc comment for parameter "$widget_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3410 |
-
8 | ERROR | Doc comment for parameter "$control_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3411 |
-
19 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3412 |
-
19 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3413 |
-
47 | ERROR | Doc comment for parameter "$new_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3414 |
-
47 | ERROR | Doc comment for parameter "$old_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3415 |
-
64 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3416 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3417 |
-
|
3418 |
-
|
3419 |
-
FILE: classes/widgets/PodsWidgetView.php
|
3420 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3421 |
-
FOUND 10 ERRORS AFFECTING 5 LINES
|
3422 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3423 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsWidgetView". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3424 |
-
8 | ERROR | Doc comment for parameter "$id_base" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3425 |
-
8 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3426 |
-
8 | ERROR | Doc comment for parameter "$widget_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3427 |
-
8 | ERROR | Doc comment for parameter "$control_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3428 |
-
20 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3429 |
-
20 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3430 |
-
45 | ERROR | Doc comment for parameter "$new_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3431 |
-
45 | ERROR | Doc comment for parameter "$old_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3432 |
-
60 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3433 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3434 |
-
|
3435 |
-
|
3436 |
-
FILE: classes/widgets/PodsWidgetList.php
|
3437 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3438 |
-
FOUND 10 ERRORS AFFECTING 5 LINES
|
3439 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3440 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsWidgetList". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3441 |
-
8 | ERROR | Doc comment for parameter "$id_base" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3442 |
-
8 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3443 |
-
8 | ERROR | Doc comment for parameter "$widget_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3444 |
-
8 | ERROR | Doc comment for parameter "$control_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3445 |
-
20 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3446 |
-
20 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3447 |
-
51 | ERROR | Doc comment for parameter "$new_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3448 |
-
51 | ERROR | Doc comment for parameter "$old_instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3449 |
-
73 | ERROR | Doc comment for parameter "$instance" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3450 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3451 |
-
|
3452 |
-
|
3453 |
-
FILE: classes/PodsComponent.php
|
3454 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3455 |
-
FOUND 2 ERRORS AFFECTING 2 LINES
|
3456 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3457 |
-
8 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsComponent". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3458 |
-
27 | ERROR | [x] Functions must not contain multiple empty lines in a row; found 2 empty lines (Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines)
|
3459 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3460 |
-
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
3461 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3462 |
-
|
3463 |
-
|
3464 |
-
FILE: classes/PodsRESTFields.php
|
3465 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3466 |
-
FOUND 1 ERROR AFFECTING 1 LINE
|
3467 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3468 |
-
11 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsRESTFields". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3469 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3470 |
-
|
3471 |
-
|
3472 |
-
FILE: classes/PodsForm.php
|
3473 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3474 |
-
FOUND 135 ERRORS AND 16 WARNINGS AFFECTING 137 LINES
|
3475 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3476 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsForm". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3477 |
-
125 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3478 |
-
125 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3479 |
-
239 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
3480 |
-
243 | ERROR | Doc comment short description must start with a capital letter (Generic.Commenting.DocComment.ShortNotCapital)
|
3481 |
-
251 | ERROR | Doc comment short description must start with a capital letter (Generic.Commenting.DocComment.ShortNotCapital)
|
3482 |
-
266 | ERROR | eval() is a security risk so not allowed. (Squiz.PHP.Eval.Discouraged)
|
3483 |
-
269 | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'call_user_func'.
|
3484 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3485 |
-
274 | ERROR | Doc comment short description must start with a capital letter (Generic.Commenting.DocComment.ShortNotCapital)
|
3486 |
-
286 | ERROR | Doc comment short description must start with a capital letter (Generic.Commenting.DocComment.ShortNotCapital)
|
3487 |
-
293 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3488 |
-
300 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3489 |
-
301 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3490 |
-
302 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3491 |
-
319 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3492 |
-
322 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3493 |
-
323 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3494 |
-
324 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3495 |
-
390 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
3496 |
-
390 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3497 |
-
399 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3498 |
-
399 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3499 |
-
399 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
3500 |
-
459 | ERROR | Doc comment for parameter "$attributes" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3501 |
-
464 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3502 |
-
465 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3503 |
-
466 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3504 |
-
467 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3505 |
-
482 | ERROR | Doc comment for parameter "$data" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3506 |
-
487 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3507 |
-
488 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3508 |
-
489 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3509 |
-
490 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3510 |
-
511 | ERROR | Doc comment for parameter "$attributes" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3511 |
-
516 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3512 |
-
517 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3513 |
-
518 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3514 |
-
519 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3515 |
-
520 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3516 |
-
528 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
3517 |
-
539 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3518 |
-
539 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3519 |
-
599 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3520 |
-
599 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3521 |
-
602 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3522 |
-
603 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3523 |
-
663 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3524 |
-
668 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3525 |
-
670 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3526 |
-
725 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3527 |
-
730 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3528 |
-
777 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3529 |
-
778 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3530 |
-
779 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3531 |
-
833 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3532 |
-
834 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3533 |
-
835 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3534 |
-
909 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3535 |
-
918 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
3536 |
-
919 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
3537 |
-
919 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
3538 |
-
982 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3539 |
-
985 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3540 |
-
986 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3541 |
-
987 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3542 |
-
988 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3543 |
-
989 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3544 |
-
990 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3545 |
-
991 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3546 |
-
1001 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
3547 |
-
1001 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3548 |
-
1003 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
3549 |
-
1032 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3550 |
-
1035 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3551 |
-
1036 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3552 |
-
1037 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3553 |
-
1038 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3554 |
-
1039 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3555 |
-
1040 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3556 |
-
1041 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3557 |
-
1065 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
3558 |
-
1097 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3559 |
-
1097 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3560 |
-
1102 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3561 |
-
1103 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3562 |
-
1123 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3563 |
-
1123 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3564 |
-
1128 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3565 |
-
1129 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3566 |
-
1152 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3567 |
-
1153 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3568 |
-
1154 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3569 |
-
1155 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3570 |
-
1156 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3571 |
-
1157 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3572 |
-
1158 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3573 |
-
1159 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3574 |
-
1172 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3575 |
-
1184 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3576 |
-
1185 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3577 |
-
1186 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3578 |
-
1187 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3579 |
-
1188 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3580 |
-
1189 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3581 |
-
1190 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3582 |
-
1191 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3583 |
-
1202 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3584 |
-
1212 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3585 |
-
1213 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3586 |
-
1214 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3587 |
-
1215 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3588 |
-
1216 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3589 |
-
1217 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3590 |
-
1218 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3591 |
-
1219 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3592 |
-
1232 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3593 |
-
1242 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3594 |
-
1243 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3595 |
-
1244 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3596 |
-
1245 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3597 |
-
1246 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3598 |
-
1259 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3599 |
-
1266 | ERROR | Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3600 |
-
1269 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3601 |
-
1270 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3602 |
-
1271 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3603 |
-
1272 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3604 |
-
1273 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3605 |
-
1274 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3606 |
-
1275 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3607 |
-
1291 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3608 |
-
1296 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3609 |
-
1297 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3610 |
-
1298 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3611 |
-
1299 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3612 |
-
1300 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3613 |
-
1301 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3614 |
-
1319 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3615 |
-
1319 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3616 |
-
1325 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3617 |
-
1336 | ERROR | Doc comment for parameter "$input" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3618 |
-
1341 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3619 |
-
1342 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3620 |
-
1343 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3621 |
-
1425 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3622 |
-
1425 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3623 |
-
1472 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3624 |
-
1472 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3625 |
-
1526 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3626 |
-
1526 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3627 |
-
1583 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3628 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3629 |
-
|
3630 |
-
|
3631 |
-
FILE: classes/PodsComponents.php
|
3632 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3633 |
-
FOUND 2 ERRORS AFFECTING 2 LINES
|
3634 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3635 |
-
8 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsComponents". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3636 |
-
843 | ERROR | The constant "JSON_UNESCAPED_UNICODE" is not present in PHP version 5.3 or earlier (PHPCompatibility.PHP.NewConstants.json_unescaped_unicodeFound)
|
3637 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3638 |
-
|
3639 |
-
|
3640 |
-
FILE: classes/PodsMigrate.php
|
3641 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3642 |
-
FOUND 116 ERRORS AND 12 WARNINGS AFFECTING 63 LINES
|
3643 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3644 |
-
6 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsMigrate". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3645 |
-
49 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
3646 |
-
54 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
3647 |
-
101 | ERROR | [ ] Doc comment for parameter "$data" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3648 |
-
102 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3649 |
-
152 | ERROR | [x] Expected 2 spaces after parameter type; 1 found (Squiz.Commenting.FunctionComment.SpacingAfterParamType)
|
3650 |
-
168 | ERROR | [x] Inline control structures are not allowed (Generic.ControlStructures.InlineControlStructure.NotAllowed)
|
3651 |
-
168 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
3652 |
-
189 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
3653 |
-
218 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3654 |
-
261 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3655 |
-
261 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3656 |
-
275 | ERROR | [ ] Doc comment for parameter "$line" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3657 |
-
278 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3658 |
-
279 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3659 |
-
280 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3660 |
-
281 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3661 |
-
537 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3662 |
-
539 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
3663 |
-
539 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
3664 |
-
639 | ERROR | [ ] String concat is not required here; use a single string instead (Generic.Strings.UnnecessaryStringConcat.Found)
|
3665 |
-
639 | ERROR | [ ] String concat is not required here; use a single string instead (Generic.Strings.UnnecessaryStringConcat.Found)
|
3666 |
-
665 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3667 |
-
666 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3668 |
-
667 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3669 |
-
668 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3670 |
-
785 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3671 |
-
807 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3672 |
-
809 | WARNING | [ ] File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: file_put_contents()
|
3673 |
-
| | (WordPress.WP.AlternativeFunctions.file_system_read_file_put_contents)
|
3674 |
-
814 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
3675 |
-
828 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
3676 |
-
846 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
3677 |
-
855 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
3678 |
-
856 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
3679 |
-
875 | ERROR | [ ] Doc comment for parameter "$import" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3680 |
-
876 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3681 |
-
877 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3682 |
-
933 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
3683 |
-
933 | ERROR | [ ] Use of ob_end_flush() is not allowed; use ob_get_contents() and ob_end_clean() instead (Squiz.PHP.DisallowObEndFlush.Found)
|
3684 |
-
952 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3685 |
-
952 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3686 |
-
952 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3687 |
-
952 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3688 |
-
967 | ERROR | [ ] Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
3689 |
-
969 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3690 |
-
969 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3691 |
-
969 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3692 |
-
990 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3693 |
-
991 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3694 |
-
995 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3695 |
-
995 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3696 |
-
995 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3697 |
-
995 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3698 |
-
995 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3699 |
-
999 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3700 |
-
999 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3701 |
-
999 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3702 |
-
1003 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3703 |
-
1003 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3704 |
-
1003 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3705 |
-
1006 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found $data (WordPress.WP.PreparedSQL.NotPrepared)
|
3706 |
-
1009 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3707 |
-
1009 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3708 |
-
1034 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3709 |
-
1034 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3710 |
-
1034 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$avg_unit'.
|
3711 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3712 |
-
1039 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
3713 |
-
1039 | ERROR | [ ] Use of ob_end_flush() is not allowed; use ob_get_contents() and ob_end_clean() instead (Squiz.PHP.DisallowObEndFlush.Found)
|
3714 |
-
1043 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3715 |
-
1043 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3716 |
-
1043 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$k'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3717 |
-
1048 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3718 |
-
1048 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3719 |
-
1048 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3720 |
-
1048 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$k'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3721 |
-
1102 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3722 |
-
1102 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3723 |
-
1102 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field_data'.
|
3724 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3725 |
-
1102 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3726 |
-
1112 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$field'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3727 |
-
1128 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3728 |
-
1128 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3729 |
-
1149 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3730 |
-
1149 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3731 |
-
1149 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$params'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3732 |
-
1156 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3733 |
-
1156 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3734 |
-
1162 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3735 |
-
1162 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3736 |
-
1162 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3737 |
-
1162 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3738 |
-
1171 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3739 |
-
1171 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3740 |
-
1171 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$k'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3741 |
-
1171 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$id'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3742 |
-
1178 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3743 |
-
1178 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3744 |
-
1178 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3745 |
-
1178 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3746 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3747 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3748 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$percent_complete'.
|
3749 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3750 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$estimated_time_left'.
|
3751 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3752 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$estimated_time_left'.
|
3753 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3754 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$total_time'.
|
3755 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3756 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$result_count'.
|
3757 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3758 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$result_count'.
|
3759 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3760 |
-
1200 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$rows_left'.
|
3761 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3762 |
-
1201 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3763 |
-
1201 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3764 |
-
1201 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$percent_complete'.
|
3765 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3766 |
-
1213 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3767 |
-
1213 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3768 |
-
1213 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$total_time'.
|
3769 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3770 |
-
1213 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$result_count'.
|
3771 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3772 |
-
1213 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3773 |
-
1213 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$paginated'.
|
3774 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3775 |
-
1214 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3776 |
-
1214 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3777 |
-
1214 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$data'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3778 |
-
1229 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3779 |
-
1229 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$total_time'.
|
3780 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3781 |
-
1229 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$result_count'.
|
3782 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3783 |
-
1229 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3784 |
-
1229 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$paginated'.
|
3785 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3786 |
-
1230 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'date'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3787 |
-
1313 | WARNING | [ ] file_get_contents() is discouraged. Use wp_remote_get() instead. (WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents)
|
3788 |
-
1313 | WARNING | [ ] File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: file_get_contents()
|
3789 |
-
| | (WordPress.WP.AlternativeFunctions.file_system_read_file_get_contents)
|
3790 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3791 |
-
PHPCBF CAN FIX THE 9 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
3792 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3793 |
-
|
3794 |
-
|
3795 |
-
FILE: classes/PodsInit.php
|
3796 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3797 |
-
FOUND 99 ERRORS AND 4 WARNINGS AFFECTING 93 LINES
|
3798 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3799 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsInit". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3800 |
-
178 | ERROR | Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
3801 |
-
243 | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "strtoupper( $security_setting )".
|
3802 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound)
|
3803 |
-
261 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
3804 |
-
261 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3805 |
-
452 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3806 |
-
502 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
3807 |
-
503 | ERROR | Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
3808 |
-
658 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3809 |
-
674 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3810 |
-
837 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3811 |
-
1147 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3812 |
-
1173 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3813 |
-
1173 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "preview_post_link". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
3814 |
-
1184 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3815 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3816 |
-
1187 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3817 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3818 |
-
1189 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3819 |
-
1189 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
3820 |
-
1189 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3821 |
-
1190 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3822 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3823 |
-
1191 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3824 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3825 |
-
1192 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3826 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3827 |
-
1194 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3828 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3829 |
-
1196 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
3830 |
-
1198 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3831 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3832 |
-
1202 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3833 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3834 |
-
1203 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3835 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3836 |
-
1204 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3837 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3838 |
-
1206 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3839 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3840 |
-
1208 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
3841 |
-
1210 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3842 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3843 |
-
1217 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3844 |
-
1218 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3845 |
-
1219 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3846 |
-
1245 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3847 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3848 |
-
1246 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3849 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3850 |
-
1248 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3851 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3852 |
-
1249 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3853 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3854 |
-
1250 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3855 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3856 |
-
1251 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3857 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3858 |
-
1252 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3859 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3860 |
-
1253 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3861 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3862 |
-
1254 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3863 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3864 |
-
1255 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3865 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3866 |
-
1256 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3867 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3868 |
-
1257 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3869 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3870 |
-
1262 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3871 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3872 |
-
1263 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3873 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3874 |
-
1264 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3875 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3876 |
-
1265 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3877 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3878 |
-
1266 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3879 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3880 |
-
1267 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3881 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3882 |
-
1268 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3883 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3884 |
-
1271 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3885 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3886 |
-
1272 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3887 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3888 |
-
1273 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3889 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3890 |
-
1274 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3891 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3892 |
-
1275 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3893 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3894 |
-
1276 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3895 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3896 |
-
1277 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3897 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3898 |
-
1278 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3899 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3900 |
-
1279 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3901 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3902 |
-
1280 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3903 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3904 |
-
1281 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3905 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3906 |
-
1282 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3907 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3908 |
-
1283 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3909 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3910 |
-
1284 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3911 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3912 |
-
1285 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3913 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3914 |
-
1286 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3915 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3916 |
-
1287 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3917 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3918 |
-
1307 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
3919 |
-
1318 | ERROR | Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
3920 |
-
1336 | ERROR | Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
3921 |
-
1346 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3922 |
-
1347 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3923 |
-
1366 | ERROR | Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
3924 |
-
1367 | ERROR | Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
3925 |
-
1380 | ERROR | Doc comment for parameter "$_blog_id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3926 |
-
1380 | ERROR | Doc comment for parameter "$user_id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3927 |
-
1380 | ERROR | Doc comment for parameter "$domain" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3928 |
-
1380 | ERROR | Doc comment for parameter "$path" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3929 |
-
1380 | ERROR | Doc comment for parameter "$site_id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3930 |
-
1380 | ERROR | Doc comment for parameter "$meta" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3931 |
-
1381 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3932 |
-
1382 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3933 |
-
1383 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3934 |
-
1384 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3935 |
-
1385 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3936 |
-
1386 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3937 |
-
1396 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3938 |
-
1435 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3939 |
-
1475 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3940 |
-
1565 | ERROR | Missing doc comment for function run() (Squiz.Commenting.FunctionComment.Missing)
|
3941 |
-
1629 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
3942 |
-
1631 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
3943 |
-
1635 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
3944 |
-
1635 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
3945 |
-
1637 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
3946 |
-
1657 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.StringNotSnakeCase)
|
3947 |
-
1679 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.StringNotSnakeCase)
|
3948 |
-
1701 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.StringNotSnakeCase)
|
3949 |
-
1723 | ERROR | Variable "_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.StringNotSnakeCase)
|
3950 |
-
1803 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3951 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
3952 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3953 |
-
|
3954 |
-
|
3955 |
-
FILE: classes/PodsUI.php
|
3956 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3957 |
-
FOUND 291 ERRORS AND 169 WARNINGS AFFECTING 372 LINES
|
3958 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
3959 |
-
6 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsUI". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
3960 |
-
45 | ERROR | [ ] You must use "/**" style comments for a member variable comment (Squiz.Commenting.VariableComment.WrongStyle)
|
3961 |
-
88 | ERROR | [ ] You must use "/**" style comments for a member variable comment (Squiz.Commenting.VariableComment.WrongStyle)
|
3962 |
-
251 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
3963 |
-
253 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3964 |
-
254 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3965 |
-
254 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
3966 |
-
463 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3967 |
-
463 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3968 |
-
492 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3969 |
-
496 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3970 |
-
498 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3971 |
-
511 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3972 |
-
518 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
3973 |
-
519 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3974 |
-
537 | ERROR | [ ] Doc comment for parameter "$deprecated_options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3975 |
-
538 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3976 |
-
787 | ERROR | [ ] Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
3977 |
-
788 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3978 |
-
789 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3979 |
-
790 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3980 |
-
790 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
3981 |
-
800 | ERROR | [ ] Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
3982 |
-
801 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3983 |
-
802 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3984 |
-
803 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3985 |
-
803 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
3986 |
-
813 | ERROR | [ ] Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
3987 |
-
814 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3988 |
-
815 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3989 |
-
816 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
3990 |
-
816 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
3991 |
-
880 | ERROR | [ ] Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
3992 |
-
886 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$pods_ui_custom_filters'.
|
3993 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
3994 |
-
889 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
3995 |
-
890 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
3996 |
-
963 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3997 |
-
964 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
3998 |
-
1055 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
3999 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4000 |
-
1056 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4001 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4002 |
-
1057 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4003 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4004 |
-
1058 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4005 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4006 |
-
1059 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4007 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4008 |
-
1060 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4009 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4010 |
-
1061 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4011 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4012 |
-
1067 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4013 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4014 |
-
1069 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4015 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4016 |
-
1070 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4017 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4018 |
-
1071 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4019 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4020 |
-
1072 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4021 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4022 |
-
1073 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4023 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4024 |
-
1117 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4025 |
-
1129 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4026 |
-
1196 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4027 |
-
1197 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4028 |
-
1301 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
4029 |
-
1340 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
4030 |
-
1341 | ERROR | [ ] Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
4031 |
-
1342 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4032 |
-
1342 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
4033 |
-
1343 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4034 |
-
1346 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4035 |
-
1349 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4036 |
-
1352 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4037 |
-
1406 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4038 |
-
1406 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4039 |
-
1406 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4040 |
-
1413 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4041 |
-
1418 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4042 |
-
1423 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4043 |
-
1440 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4044 |
-
1446 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4045 |
-
1458 | ERROR | [ ] Doc comment for parameter "$msg" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
4046 |
-
1459 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
4047 |
-
1460 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4048 |
-
1466 | ERROR | [x] Whitespace found at end of line (Squiz.WhiteSpace.SuperfluousWhitespace.EndLine)
|
4049 |
-
1471 | ERROR | [x] Whitespace found at end of line (Squiz.WhiteSpace.SuperfluousWhitespace.EndLine)
|
4050 |
-
1473 | ERROR | [x] Whitespace found at end of line (Squiz.WhiteSpace.SuperfluousWhitespace.EndLine)
|
4051 |
-
1479 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$msg'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4052 |
-
1484 | ERROR | [ ] Doc comment for parameter "$msg" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
4053 |
-
1485 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
4054 |
-
1502 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4055 |
-
1504 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4056 |
-
1508 | ERROR | [ ] Stylesheets must be registered/enqueued via wp_enqueue_style (WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet)
|
4057 |
-
1521 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4058 |
-
1523 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4059 |
-
1530 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4060 |
-
1530 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4061 |
-
1535 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4062 |
-
1535 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4063 |
-
1535 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4064 |
-
1536 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4065 |
-
1539 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4066 |
-
1545 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4067 |
-
1549 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4068 |
-
1553 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4069 |
-
1570 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4070 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4071 |
-
1578 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4072 |
-
1592 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4073 |
-
1592 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4074 |
-
1619 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4075 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4076 |
-
1627 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
4077 |
-
1633 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4078 |
-
1633 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4079 |
-
1645 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4080 |
-
1645 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4081 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4082 |
-
1645 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4083 |
-
1655 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4084 |
-
1661 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4085 |
-
1676 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4086 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4087 |
-
1684 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
4088 |
-
1688 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4089 |
-
1690 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4090 |
-
1690 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4091 |
-
1695 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4092 |
-
1705 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4093 |
-
1705 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4094 |
-
1717 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4095 |
-
1717 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4096 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4097 |
-
1717 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4098 |
-
1729 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4099 |
-
1730 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4100 |
-
1736 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4101 |
-
1762 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4102 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4103 |
-
1766 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4104 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4105 |
-
1795 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4106 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4107 |
-
1807 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4108 |
-
1907 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4109 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4110 |
-
1930 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4111 |
-
1998 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
4112 |
-
2004 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4113 |
-
2004 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4114 |
-
2009 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4115 |
-
2019 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4116 |
-
2019 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4117 |
-
2031 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4118 |
-
2031 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4119 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4120 |
-
2031 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4121 |
-
2060 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4122 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4123 |
-
2062 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4124 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4125 |
-
2067 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4126 |
-
2090 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4127 |
-
2090 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4128 |
-
2090 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4129 |
-
2091 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4130 |
-
2095 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4131 |
-
2102 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4132 |
-
2113 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4133 |
-
2119 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4134 |
-
2158 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found interpolated variable $this at "UPDATE $this->sql['table'] SET $field_sql WHERE id=%d" (WordPress.WP.PreparedSQL.NotPrepared)
|
4135 |
-
2158 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found interpolated variable $field_sql at "UPDATE $this->sql['table'] SET $field_sql WHERE id=%d" (WordPress.WP.PreparedSQL.NotPrepared)
|
4136 |
-
2160 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found interpolated variable $this at "INSERT INTO $this->sql['table'] SET $field_sql" (WordPress.WP.PreparedSQL.NotPrepared)
|
4137 |
-
2160 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found interpolated variable $field_sql at "INSERT INTO $this->sql['table'] SET $field_sql" (WordPress.WP.PreparedSQL.NotPrepared)
|
4138 |
-
2160 | WARNING | [ ] Replacement variables found, but no valid placeholders found in the query. (WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare)
|
4139 |
-
2163 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4140 |
-
2174 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4141 |
-
2207 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4142 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4143 |
-
2209 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4144 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4145 |
-
2222 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4146 |
-
2237 | WARNING | [ ] Variable assignment found within a condition. Did you mean to do a comparison? (WordPress.CodeAnalysis.AssignmentInCondition.Found)
|
4147 |
-
2237 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4148 |
-
2266 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4149 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4150 |
-
2269 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4151 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4152 |
-
2287 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4153 |
-
2288 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4154 |
-
2289 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4155 |
-
2297 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4156 |
-
2305 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4157 |
-
2306 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4158 |
-
2319 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4159 |
-
2342 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4160 |
-
2347 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4161 |
-
2348 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4162 |
-
2366 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4163 |
-
2378 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4164 |
-
2437 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4165 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4166 |
-
2443 | ERROR | [ ] Doc comment for parameter "$field" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
4167 |
-
2444 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
4168 |
-
2453 | WARNING | [ ] Variable assignment found within a condition. Did you mean to do a comparison? (WordPress.CodeAnalysis.AssignmentInCondition.Found)
|
4169 |
-
2453 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4170 |
-
2459 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4171 |
-
2459 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4172 |
-
2460 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4173 |
-
2473 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4174 |
-
2474 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4175 |
-
2497 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4176 |
-
2537 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4177 |
-
2537 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4178 |
-
2575 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4179 |
-
2575 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4180 |
-
2586 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4181 |
-
2600 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4182 |
-
2608 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4183 |
-
2630 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4184 |
-
2636 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4185 |
-
2636 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4186 |
-
2658 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4187 |
-
2717 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4188 |
-
2717 | ERROR | [ ] Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4189 |
-
2733 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4190 |
-
2734 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4191 |
-
2744 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4192 |
-
2744 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4193 |
-
2750 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4194 |
-
2754 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4195 |
-
2778 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4196 |
-
2787 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4197 |
-
2813 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
4198 |
-
2819 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4199 |
-
2819 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4200 |
-
2831 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '__'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4201 |
-
2831 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4202 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4203 |
-
2831 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4204 |
-
2837 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4205 |
-
2837 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4206 |
-
2852 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4207 |
-
2852 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4208 |
-
2887 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4209 |
-
2888 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4210 |
-
2888 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4211 |
-
2905 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4212 |
-
2921 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4213 |
-
2949 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4214 |
-
2957 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4215 |
-
2960 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4216 |
-
2966 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4217 |
-
2972 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4218 |
-
2994 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4219 |
-
3022 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4220 |
-
3040 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4221 |
-
3046 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4222 |
-
3046 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4223 |
-
3047 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4224 |
-
3050 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4225 |
-
3053 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4226 |
-
3067 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4227 |
-
3081 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4228 |
-
3081 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4229 |
-
3091 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4230 |
-
3095 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4231 |
-
3095 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4232 |
-
3114 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4233 |
-
3114 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4234 |
-
3136 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4235 |
-
3136 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4236 |
-
3139 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4237 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4238 |
-
3141 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_slash'.
|
4239 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4240 |
-
3168 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4241 |
-
3172 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4242 |
-
3180 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4243 |
-
3180 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4244 |
-
3197 | ERROR | [ ] Missing doc comment for function filters() (Squiz.Commenting.FunctionComment.Missing)
|
4245 |
-
3216 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4246 |
-
3217 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4247 |
-
3217 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4248 |
-
3250 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4249 |
-
3262 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$label'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4250 |
-
3278 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4251 |
-
3302 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4252 |
-
3309 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4253 |
-
3310 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4254 |
-
3313 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4255 |
-
3317 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4256 |
-
3334 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4257 |
-
3341 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4258 |
-
3360 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4259 |
-
3360 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4260 |
-
3362 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4261 |
-
3366 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4262 |
-
3376 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4263 |
-
3415 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4264 |
-
3416 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4265 |
-
3417 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4266 |
-
3419 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4267 |
-
3456 | ERROR | [ ] Missing doc comment for function filters_popup() (Squiz.Commenting.FunctionComment.Missing)
|
4268 |
-
3462 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4269 |
-
3483 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4270 |
-
3486 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4271 |
-
3509 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4272 |
-
3511 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4273 |
-
3519 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4274 |
-
3529 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4275 |
-
3539 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4276 |
-
3539 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4277 |
-
3540 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4278 |
-
3540 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4279 |
-
3540 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4280 |
-
3546 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4281 |
-
3546 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4282 |
-
3547 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4283 |
-
3550 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4284 |
-
3571 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4285 |
-
3572 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4286 |
-
3572 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4287 |
-
3578 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4288 |
-
3579 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4289 |
-
3606 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4290 |
-
3607 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4291 |
-
3607 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4292 |
-
3613 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4293 |
-
3614 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4294 |
-
3632 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4295 |
-
3633 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4296 |
-
3633 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4297 |
-
3639 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4298 |
-
3640 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4299 |
-
3651 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4300 |
-
3652 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4301 |
-
3653 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4302 |
-
3659 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4303 |
-
3703 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4304 |
-
3715 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'pods_v'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4305 |
-
3715 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4306 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4307 |
-
3719 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4308 |
-
3753 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4309 |
-
3760 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4310 |
-
3760 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4311 |
-
3760 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4312 |
-
3786 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4313 |
-
3796 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4314 |
-
3819 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4315 |
-
3819 | ERROR | [ ] Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4316 |
-
3830 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$att_id'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4317 |
-
3830 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$width'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4318 |
-
3854 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$att_id'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4319 |
-
3854 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$width'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4320 |
-
3877 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4321 |
-
3893 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$width'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4322 |
-
3915 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$width'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4323 |
-
3926 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4324 |
-
3926 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4325 |
-
3926 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4326 |
-
3926 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4327 |
-
3931 | WARNING | [ ] Variable assignment found within a condition. Did you mean to do a comparison? (WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition)
|
4328 |
-
4029 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
4329 |
-
4029 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found $sql (WordPress.WP.PreparedSQL.NotPrepared)
|
4330 |
-
4135 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4331 |
-
4135 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4332 |
-
4135 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4333 |
-
4151 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$row_value'.
|
4334 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4335 |
-
4155 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4336 |
-
4155 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4337 |
-
4155 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4338 |
-
4171 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$row_value'.
|
4339 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4340 |
-
4176 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4341 |
-
4184 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$row_value'.
|
4342 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4343 |
-
4190 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4344 |
-
4198 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4345 |
-
4202 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$actions'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4346 |
-
4250 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$row_value'.
|
4347 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4348 |
-
4271 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4349 |
-
4281 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4350 |
-
4300 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4351 |
-
4308 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4352 |
-
4308 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4353 |
-
4323 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4354 |
-
4323 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4355 |
-
4338 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4356 |
-
4338 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4357 |
-
4353 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4358 |
-
4353 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4359 |
-
4371 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4360 |
-
4371 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4361 |
-
4372 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4362 |
-
4393 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4363 |
-
4393 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4364 |
-
4408 | ERROR | [ ] The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
4365 |
-
4439 | ERROR | [ ] Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
4366 |
-
4444 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4367 |
-
4445 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4368 |
-
4488 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$screen_html'.
|
4369 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4370 |
-
4497 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4371 |
-
4517 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4372 |
-
4526 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4373 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4374 |
-
4546 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$help_html'.
|
4375 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4376 |
-
4601 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4377 |
-
4630 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4378 |
-
4634 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'number_format_i18n'.
|
4379 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4380 |
-
4634 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '_n'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4381 |
-
4634 | ERROR | [ ] The $single arg must be a single string literal, not "$singular_label". (WordPress.WP.I18n.NonSingularStringLiteralSingle)
|
4382 |
-
4634 | ERROR | [ ] The $plural arg must be a single string literal, not "$plural_label". (WordPress.WP.I18n.NonSingularStringLiteralPlural)
|
4383 |
-
4634 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$this'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4384 |
-
4641 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4385 |
-
4641 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4386 |
-
4642 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4387 |
-
4642 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4388 |
-
4644 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4389 |
-
4646 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4390 |
-
4663 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
4391 |
-
4664 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'number_format_i18n'.
|
4392 |
-
| | (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
4393 |
-
4668 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4394 |
-
4668 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4395 |
-
4669 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4396 |
-
4669 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4397 |
-
4676 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4398 |
-
4690 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4399 |
-
4690 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4400 |
-
4695 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4401 |
-
4713 | ERROR | [ ] Doc comment for parameter "$code" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
4402 |
-
4714 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
4403 |
-
4715 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4404 |
-
4721 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4405 |
-
4740 | ERROR | [ ] Doc comment for parameter "$tag" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
4406 |
-
4741 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
4407 |
-
4774 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4408 |
-
4792 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4409 |
-
4793 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4410 |
-
4804 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4411 |
-
4815 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4412 |
-
4848 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4413 |
-
4849 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4414 |
-
4864 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
4415 |
-
4865 | ERROR | [ ] Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
4416 |
-
4866 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4417 |
-
4868 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4418 |
-
4869 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4419 |
-
4871 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4420 |
-
4873 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4421 |
-
4875 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4422 |
-
4876 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4423 |
-
4877 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4424 |
-
4879 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4425 |
-
4880 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4426 |
-
4881 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4427 |
-
4882 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4428 |
-
4884 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4429 |
-
4886 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4430 |
-
4888 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4431 |
-
4890 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4432 |
-
4892 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4433 |
-
4893 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4434 |
-
4894 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4435 |
-
4895 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4436 |
-
4895 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
4437 |
-
4914 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4438 |
-
4916 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4439 |
-
4925 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
4440 |
-
4926 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
4441 |
-
4934 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
4442 |
-
4998 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4443 |
-
5005 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4444 |
-
5056 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4445 |
-
5063 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4446 |
-
5075 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4447 |
-
5075 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4448 |
-
5082 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
4449 |
-
5083 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
4450 |
-
5085 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
4451 |
-
5098 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4452 |
-
5102 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4453 |
-
5271 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4454 |
-
5272 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4455 |
-
5273 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4456 |
-
5274 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4457 |
-
5275 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4458 |
-
5276 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4459 |
-
5277 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4460 |
-
5278 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4461 |
-
5279 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4462 |
-
5280 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
4463 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4464 |
-
PHPCBF CAN FIX THE 45 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
4465 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4466 |
-
|
4467 |
-
|
4468 |
-
FILE: classes/PodsI18n.php
|
4469 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4470 |
-
FOUND 28 ERRORS AND 31 WARNINGS AFFECTING 29 LINES
|
4471 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4472 |
-
7 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsI18n". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
4473 |
-
107 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4474 |
-
107 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4475 |
-
116 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4476 |
-
117 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4477 |
-
149 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4478 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4479 |
-
195 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4480 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4481 |
-
197 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4482 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4483 |
-
263 | ERROR | Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
4484 |
-
273 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_setting". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
4485 |
-
278 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_current_language". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
4486 |
-
279 | ERROR | The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4487 |
-
279 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4488 |
-
279 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4489 |
-
279 | ERROR | Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4490 |
-
295 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4491 |
-
295 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4492 |
-
313 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4493 |
-
313 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4494 |
-
313 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4495 |
-
313 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4496 |
-
314 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4497 |
-
320 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4498 |
-
320 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4499 |
-
320 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_is_translated_post_type".
|
4500 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
4501 |
-
320 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4502 |
-
330 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4503 |
-
330 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4504 |
-
330 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4505 |
-
332 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4506 |
-
341 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4507 |
-
341 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4508 |
-
341 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4509 |
-
341 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4510 |
-
341 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4511 |
-
342 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4512 |
-
348 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4513 |
-
348 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4514 |
-
348 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4515 |
-
348 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4516 |
-
350 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4517 |
-
361 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4518 |
-
361 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4519 |
-
361 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4520 |
-
371 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4521 |
-
371 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4522 |
-
371 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4523 |
-
371 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4524 |
-
373 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4525 |
-
382 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4526 |
-
382 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4527 |
-
382 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4528 |
-
382 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4529 |
-
382 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4530 |
-
383 | WARNING | Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
4531 |
-
404 | WARNING | Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4532 |
-
404 | ERROR | Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
4533 |
-
460 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4534 |
-
461 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4535 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4536 |
-
|
4537 |
-
|
4538 |
-
FILE: classes/PodsAdmin.php
|
4539 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4540 |
-
FOUND 11 ERRORS AND 1 WARNING AFFECTING 12 LINES
|
4541 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4542 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsAdmin". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
4543 |
-
2717 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4544 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4545 |
-
2729 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4546 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4547 |
-
2869 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4548 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4549 |
-
2872 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4550 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4551 |
-
2891 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4552 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4553 |
-
2894 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4554 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4555 |
-
2905 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4556 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4557 |
-
3235 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
4558 |
-
3429 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4559 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4560 |
-
3430 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4561 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4562 |
-
3472 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4563 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4564 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4565 |
-
|
4566 |
-
|
4567 |
-
FILE: classes/PodsTermSplitting.php
|
4568 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4569 |
-
FOUND 18 ERRORS AND 2 WARNINGS AFFECTING 20 LINES
|
4570 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4571 |
-
38 | ERROR | Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
4572 |
-
95 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4573 |
-
123 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4574 |
-
163 | WARNING | Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4575 |
-
195 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4576 |
-
226 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4577 |
-
227 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4578 |
-
278 | ERROR | SQL wildcards for a LIKE query should be passed in through a replacement parameter and the variable part of the replacement should be escaped using "esc_like()". Found: LIKE '%%%s%%'.
|
4579 |
-
| | (WordPress.DB.PreparedSQLPlaceholders.LikeWildcardsInQueryWithPlaceholder)
|
4580 |
-
291 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4581 |
-
332 | ERROR | SQL wildcards for a LIKE query should be passed in through a replacement parameter and the variable part of the replacement should be escaped using "esc_like()". Found: LIKE '%%%s%%'.
|
4582 |
-
| | (WordPress.DB.PreparedSQLPlaceholders.LikeWildcardsInQueryWithPlaceholder)
|
4583 |
-
345 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4584 |
-
386 | ERROR | SQL wildcards for a LIKE query should be passed in through a replacement parameter and the variable part of the replacement should be escaped using "esc_like()". Found: LIKE '%%%s%%'.
|
4585 |
-
| | (WordPress.DB.PreparedSQLPlaceholders.LikeWildcardsInQueryWithPlaceholder)
|
4586 |
-
399 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4587 |
-
400 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4588 |
-
443 | ERROR | SQL wildcards for a LIKE query should be passed in through a replacement parameter and the variable part of the replacement should be escaped using "esc_like()". Found: LIKE '%%%s%%'.
|
4589 |
-
| | (WordPress.DB.PreparedSQLPlaceholders.LikeWildcardsInQueryWithPlaceholder)
|
4590 |
-
454 | ERROR | Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
4591 |
-
460 | WARNING | Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4592 |
-
472 | ERROR | Doc comment for parameter "$data" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
4593 |
-
473 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
4594 |
-
495 | ERROR | Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
4595 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4596 |
-
|
4597 |
-
|
4598 |
-
FILE: classes/PodsAPI.php
|
4599 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4600 |
-
FOUND 794 ERRORS AND 261 WARNINGS AFFECTING 868 LINES
|
4601 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
4602 |
-
6 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsAPI". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
4603 |
-
11 | ERROR | [ ] Scope modifier not specified for member variable "$instance" (Squiz.Scope.MemberVarScope.Missing)
|
4604 |
-
16 | ERROR | [ ] Scope modifier not specified for member variable "$instances" (Squiz.Scope.MemberVarScope.Missing)
|
4605 |
-
29 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
4606 |
-
34 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
4607 |
-
39 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
4608 |
-
44 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
4609 |
-
50 | ERROR | [ ] Content missing for @var tag in member variable comment (Squiz.Commenting.VariableComment.EmptyVar)
|
4610 |
-
64 | ERROR | [x] Additional blank lines found at end of doc comment (Generic.Commenting.DocComment.SpacingAfter)
|
4611 |
-
71 | ERROR | [x] Additional blank lines found at end of doc comment (Generic.Commenting.DocComment.SpacingAfter)
|
4612 |
-
122 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
4613 |
-
150 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4614 |
-
163 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4615 |
-
190 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4616 |
-
202 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4617 |
-
307 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4618 |
-
327 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4619 |
-
327 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4620 |
-
327 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4621 |
-
345 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4622 |
-
346 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4623 |
-
445 | ERROR | [x] Additional blank lines found at end of doc comment (Generic.Commenting.DocComment.SpacingAfter)
|
4624 |
-
479 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4625 |
-
479 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4626 |
-
479 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4627 |
-
495 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4628 |
-
496 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4629 |
-
622 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4630 |
-
622 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4631 |
-
622 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4632 |
-
638 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4633 |
-
639 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4634 |
-
768 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4635 |
-
788 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4636 |
-
788 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4637 |
-
788 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4638 |
-
806 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4639 |
-
807 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4640 |
-
892 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4641 |
-
897 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4642 |
-
902 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4643 |
-
907 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4644 |
-
909 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4645 |
-
954 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4646 |
-
955 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4647 |
-
964 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4648 |
-
965 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4649 |
-
975 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4650 |
-
976 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4651 |
-
987 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4652 |
-
988 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4653 |
-
999 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4654 |
-
1000 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4655 |
-
1006 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4656 |
-
1013 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4657 |
-
1021 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4658 |
-
1031 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4659 |
-
1032 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4660 |
-
1042 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4661 |
-
1043 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4662 |
-
1049 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4663 |
-
1055 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4664 |
-
1062 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4665 |
-
1069 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4666 |
-
1076 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4667 |
-
1083 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4668 |
-
1098 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4669 |
-
1099 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4670 |
-
1109 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4671 |
-
1116 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4672 |
-
1124 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4673 |
-
1125 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4674 |
-
1132 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4675 |
-
1139 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4676 |
-
1146 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4677 |
-
1157 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4678 |
-
1158 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4679 |
-
1159 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4680 |
-
1175 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4681 |
-
1176 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4682 |
-
1188 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4683 |
-
1189 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4684 |
-
1197 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4685 |
-
1198 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4686 |
-
1204 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4687 |
-
1210 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4688 |
-
1219 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4689 |
-
1220 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4690 |
-
1229 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4691 |
-
1230 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4692 |
-
1240 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4693 |
-
1241 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4694 |
-
1249 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4695 |
-
1250 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4696 |
-
1251 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4697 |
-
1261 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4698 |
-
1262 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4699 |
-
1268 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4700 |
-
1276 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4701 |
-
1277 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4702 |
-
1284 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4703 |
-
1292 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4704 |
-
1300 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4705 |
-
1301 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4706 |
-
1307 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4707 |
-
1313 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4708 |
-
1319 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4709 |
-
1325 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4710 |
-
1332 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4711 |
-
1342 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4712 |
-
1343 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4713 |
-
1353 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4714 |
-
1354 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4715 |
-
1360 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4716 |
-
1366 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4717 |
-
1372 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4718 |
-
1378 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4719 |
-
1388 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4720 |
-
1397 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4721 |
-
1398 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4722 |
-
1407 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4723 |
-
1408 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4724 |
-
1417 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4725 |
-
1418 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4726 |
-
1419 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4727 |
-
1421 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4728 |
-
1474 | WARNING | [x] Array double arrow not aligned correctly; expected 11 space(s) between "'create_extend'" and double arrow, but found 3.
|
4729 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4730 |
-
1475 | WARNING | [x] Array double arrow not aligned correctly; expected 9 space(s) between "'create_pod_type'" and double arrow, but found 1.
|
4731 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4732 |
-
1483 | WARNING | [x] Array double arrow not aligned correctly; expected 5 space(s) between "'create_setting_name'" and double arrow, but found 2.
|
4733 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4734 |
-
1484 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'create_label_title'" and double arrow, but found 3.
|
4735 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4736 |
-
1485 | WARNING | [x] Array double arrow not aligned correctly; expected 7 space(s) between "'create_label_menu'" and double arrow, but found 4.
|
4737 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4738 |
-
1486 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'create_menu_location'" and double arrow, but found 1.
|
4739 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4740 |
-
1488 | WARNING | [x] Array double arrow not aligned correctly; expected 9 space(s) between "'extend_pod_type'" and double arrow, but found 1.
|
4741 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4742 |
-
1489 | WARNING | [x] Array double arrow not aligned correctly; expected 8 space(s) between "'extend_post_type'" and double arrow, but found 1.
|
4743 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4744 |
-
1490 | WARNING | [x] Array double arrow not aligned correctly; expected 9 space(s) between "'extend_taxonomy'" and double arrow, but found 1.
|
4745 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4746 |
-
1491 | WARNING | [x] Array double arrow not aligned correctly; expected 12 space(s) between "'extend_table'" and double arrow, but found 1.
|
4747 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4748 |
-
1492 | WARNING | [x] Array double arrow not aligned correctly; expected 10 space(s) between "'extend_storage'" and double arrow, but found 1.
|
4749 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
4750 |
-
1496 | ERROR | [x] Expected 1 space(s) after IF keyword; 0 found (Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword)
|
4751 |
-
1496 | ERROR | [x] Space after opening control structure is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterStructureOpen)
|
4752 |
-
1496 | ERROR | [x] No space before opening parenthesis is prohibited (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeOpenParenthesis)
|
4753 |
-
1496 | ERROR | [x] Expected 1 space after "!"; 0 found (WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter)
|
4754 |
-
1497 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
4755 |
-
1498 | ERROR | [x] Array keys must NOT be surrounded by spaces if they only contain a string or an integer. (WordPress.Arrays.ArrayKeySpacingRestrictions.SpacesAroundArrayKeys)
|
4756 |
-
1498 | ERROR | [x] Space found before semicolon; expected "'table';" but found "'table' ;" (WordPress.WhiteSpace.SemicolonSpacing.Incorrect)
|
4757 |
-
1503 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4758 |
-
1513 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4759 |
-
1524 | ERROR | [ ] The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
4760 |
-
1524 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4761 |
-
1527 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4762 |
-
1529 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4763 |
-
1559 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4764 |
-
1559 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4765 |
-
1574 | ERROR | [ ] The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
4766 |
-
1574 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4767 |
-
1576 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4768 |
-
1577 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4769 |
-
1589 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4770 |
-
1609 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4771 |
-
1609 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4772 |
-
1624 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4773 |
-
1628 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4774 |
-
1635 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4775 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4776 |
-
1644 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4777 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4778 |
-
1700 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4779 |
-
1700 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4780 |
-
1702 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4781 |
-
1725 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4782 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4783 |
-
1728 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4784 |
-
1729 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4785 |
-
1730 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4786 |
-
1731 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4787 |
-
1731 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4788 |
-
1732 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
4789 |
-
1732 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4790 |
-
1732 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4791 |
-
1733 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4792 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4793 |
-
1736 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4794 |
-
1737 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4795 |
-
1738 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4796 |
-
1738 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4797 |
-
1739 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
4798 |
-
1739 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4799 |
-
1739 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4800 |
-
1740 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4801 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4802 |
-
1743 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4803 |
-
1744 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4804 |
-
1744 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4805 |
-
1745 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4806 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4807 |
-
1747 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4808 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4809 |
-
1750 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4810 |
-
1751 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4811 |
-
1752 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4812 |
-
1753 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4813 |
-
1753 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4814 |
-
1754 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
4815 |
-
1754 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4816 |
-
1767 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4817 |
-
1769 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4818 |
-
1815 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4819 |
-
1834 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4820 |
-
1854 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4821 |
-
1883 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4822 |
-
1891 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4823 |
-
1897 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4824 |
-
1922 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4825 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4826 |
-
1928 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4827 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4828 |
-
1946 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4829 |
-
1957 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4830 |
-
1958 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4831 |
-
1968 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4832 |
-
1969 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4833 |
-
1979 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4834 |
-
1980 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4835 |
-
1991 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4836 |
-
1992 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4837 |
-
1999 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4838 |
-
2005 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4839 |
-
2016 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4840 |
-
2018 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4841 |
-
2045 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4842 |
-
2051 | ERROR | [x] String "`id` BIGINT(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
4843 |
-
2056 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4844 |
-
2062 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4845 |
-
2062 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4846 |
-
2073 | ERROR | [x] String ") DEFAULT CHARSET utf8" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
4847 |
-
2077 | ERROR | [x] Blank line found after control structure (WordPress.WhiteSpace.ControlStructureSpacing.BlankLineAfterEnd)
|
4848 |
-
2079 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4849 |
-
2085 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4850 |
-
2147 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4851 |
-
2150 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4852 |
-
2165 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4853 |
-
2176 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4854 |
-
2178 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4855 |
-
2194 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4856 |
-
2215 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4857 |
-
2216 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4858 |
-
2217 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4859 |
-
2282 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4860 |
-
2306 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4861 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4862 |
-
2309 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4863 |
-
2313 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4864 |
-
2317 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4865 |
-
2319 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4866 |
-
2326 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4867 |
-
2335 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4868 |
-
2362 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4869 |
-
2363 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4870 |
-
2364 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4871 |
-
2364 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4872 |
-
2365 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
4873 |
-
2365 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4874 |
-
2450 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
4875 |
-
2452 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
4876 |
-
2454 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
4877 |
-
2465 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4878 |
-
2479 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4879 |
-
2479 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4880 |
-
2479 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4881 |
-
2479 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4882 |
-
2479 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4883 |
-
2479 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4884 |
-
2483 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4885 |
-
2488 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4886 |
-
2488 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4887 |
-
2488 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4888 |
-
2495 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4889 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4890 |
-
2498 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4891 |
-
2499 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4892 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4893 |
-
2506 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4894 |
-
2525 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4895 |
-
2527 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4896 |
-
2541 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4897 |
-
2568 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4898 |
-
2594 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4899 |
-
2610 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4900 |
-
2611 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4901 |
-
2612 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4902 |
-
2613 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4903 |
-
2613 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4904 |
-
2614 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
4905 |
-
2614 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4906 |
-
2618 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4907 |
-
2630 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4908 |
-
2637 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
4909 |
-
2642 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4910 |
-
2643 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4911 |
-
2644 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4912 |
-
2644 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4913 |
-
2645 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
4914 |
-
2645 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4915 |
-
2645 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4916 |
-
2647 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4917 |
-
2649 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4918 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4919 |
-
2653 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4920 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4921 |
-
2656 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4922 |
-
2657 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4923 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4924 |
-
2661 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4925 |
-
2661 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4926 |
-
2662 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4927 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4928 |
-
2666 | ERROR | [x] Opening brace should be on the same line as the declaration (WordPress.WhiteSpace.ControlStructureSpacing.OpenBraceNotSameLine)
|
4929 |
-
2666 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4930 |
-
2666 | ERROR | [x] Expected 1 space(s) after closing parenthesis; found " // Reserved post_name values that can't be used as field names\n "
|
4931 |
-
| | (Squiz.ControlStructures.ControlSignature.SpaceAfterCloseParenthesis)
|
4932 |
-
2666 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
4933 |
-
2672 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4934 |
-
2685 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4935 |
-
2686 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4936 |
-
2687 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4937 |
-
2693 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4938 |
-
2704 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4939 |
-
2721 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4940 |
-
2724 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4941 |
-
2726 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4942 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4943 |
-
2728 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4944 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4945 |
-
2732 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4946 |
-
2733 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4947 |
-
2734 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4948 |
-
2734 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4949 |
-
2735 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
4950 |
-
2735 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4951 |
-
2735 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4952 |
-
2737 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4953 |
-
2739 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4954 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4955 |
-
2743 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4956 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4957 |
-
2747 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4958 |
-
2752 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4959 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4960 |
-
2754 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
4961 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
4962 |
-
2762 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4963 |
-
2770 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4964 |
-
2802 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4965 |
-
2806 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
4966 |
-
2806 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
4967 |
-
2806 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4968 |
-
2810 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4969 |
-
2822 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4970 |
-
2825 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
4971 |
-
2844 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4972 |
-
2856 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4973 |
-
2857 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4974 |
-
2862 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4975 |
-
2886 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
4976 |
-
2886 | ERROR | [x] String "" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
4977 |
-
2887 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4978 |
-
2889 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
4979 |
-
2904 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4980 |
-
2904 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4981 |
-
2905 | ERROR | [x] Multi-line function call not indented correctly; expected 16 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
4982 |
-
2905 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4983 |
-
2910 | ERROR | [x] String "\n UPDATE `@wp_podsrel`\n SET `related_field_id` = 0\n WHERE `field_id` = %d\n " does not require double quotes; use single quotes instead
|
4984 |
-
| | (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
4985 |
-
2915 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 28 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4986 |
-
2915 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4987 |
-
2916 | ERROR | [x] Multi-line function call not indented correctly; expected 20 spaces but found 24 (PEAR.Functions.FunctionCallSignature.Indent)
|
4988 |
-
2916 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 24 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4989 |
-
2918 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
4990 |
-
2923 | ERROR | [x] String "\n UPDATE `@wp_podsrel`\n SET `related_field_id` = %d\n WHERE `field_id` = %d\n " does not require double quotes; use single quotes instead
|
4991 |
-
| | (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
4992 |
-
2928 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4993 |
-
2929 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
4994 |
-
2929 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
4995 |
-
2930 | ERROR | [x] Multi-line function call not indented correctly; expected 16 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
4996 |
-
2930 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
4997 |
-
2936 | ERROR | [x] String "\n UPDATE `@wp_podsrel`\n SET `related_field_id` = 0\n WHERE `field_id` = %d\n " does not require double quotes; use single quotes instead
|
4998 |
-
| | (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
4999 |
-
2941 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5000 |
-
2941 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5001 |
-
2942 | ERROR | [x] Multi-line function call not indented correctly; expected 16 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
5002 |
-
2942 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5003 |
-
2944 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5004 |
-
2955 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5005 |
-
2956 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5006 |
-
2957 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5007 |
-
2957 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5008 |
-
2958 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
5009 |
-
2958 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5010 |
-
2994 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5011 |
-
3037 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5012 |
-
3053 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5013 |
-
3088 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5014 |
-
3268 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5015 |
-
3372 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5016 |
-
3412 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5017 |
-
3425 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5018 |
-
3426 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5019 |
-
3435 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5020 |
-
3437 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5021 |
-
3437 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5022 |
-
3438 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5023 |
-
3439 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5024 |
-
3439 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5025 |
-
3440 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5026 |
-
3440 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5027 |
-
3445 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5028 |
-
3445 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5029 |
-
3446 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5030 |
-
3447 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5031 |
-
3447 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5032 |
-
3448 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5033 |
-
3448 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5034 |
-
3453 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5035 |
-
3454 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5036 |
-
3455 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5037 |
-
3455 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5038 |
-
3456 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5039 |
-
3456 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5040 |
-
3456 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5041 |
-
3456 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5042 |
-
3457 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5043 |
-
3464 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5044 |
-
3468 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5045 |
-
3469 | ERROR | [x] Array item not aligned correctly; expected 20 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5046 |
-
3470 | ERROR | [x] Array item not aligned correctly; expected 20 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5047 |
-
3470 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5048 |
-
3471 | ERROR | [x] Multi-line function call not indented correctly; expected 16 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
5049 |
-
3471 | ERROR | [x] Array closer not aligned correctly; expected 16 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5050 |
-
3484 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5051 |
-
3501 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5052 |
-
3514 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5053 |
-
3516 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5054 |
-
3517 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5055 |
-
3518 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5056 |
-
3520 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5057 |
-
3531 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5058 |
-
3543 | ERROR | [ ] extract() usage is highly discouraged, due to the complexity and unintended issues it might cause. (WordPress.Functions.DontExtract.extract_extract)
|
5059 |
-
3549 | ERROR | [ ] extract() usage is highly discouraged, due to the complexity and unintended issues it might cause. (WordPress.Functions.DontExtract.extract_extract)
|
5060 |
-
3556 | ERROR | [ ] extract() usage is highly discouraged, due to the complexity and unintended issues it might cause. (WordPress.Functions.DontExtract.extract_extract)
|
5061 |
-
3562 | ERROR | [ ] extract() usage is highly discouraged, due to the complexity and unintended issues it might cause. (WordPress.Functions.DontExtract.extract_extract)
|
5062 |
-
3568 | ERROR | [ ] extract() usage is highly discouraged, due to the complexity and unintended issues it might cause. (WordPress.Functions.DontExtract.extract_extract)
|
5063 |
-
3574 | ERROR | [ ] extract() usage is highly discouraged, due to the complexity and unintended issues it might cause. (WordPress.Functions.DontExtract.extract_extract)
|
5064 |
-
3576 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5065 |
-
3585 | WARNING | [ ] Variable variable which could potentially override an imported global variable detected. Variables defined by a theme/plugin should start with the theme/plugin prefix. Found:
|
5066 |
-
| | "${$helper}". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound)
|
5067 |
-
3591 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5068 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5069 |
-
3597 | ERROR | [ ] eval() is a security risk so not allowed. (Squiz.PHP.Eval.Discouraged)
|
5070 |
-
3601 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5071 |
-
3602 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5072 |
-
3604 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5073 |
-
3604 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5074 |
-
3604 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5075 |
-
3604 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5076 |
-
3608 | ERROR | [ ] Variable "object_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
5077 |
-
3611 | ERROR | [ ] Variable "object_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
5078 |
-
3613 | ERROR | [ ] Variable "object_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
5079 |
-
3616 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5080 |
-
3616 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5081 |
-
3621 | ERROR | [ ] Variable "object_ID" is not in valid snake_case format (WordPress.NamingConventions.ValidVariableName.NotSnakeCase)
|
5082 |
-
3642 | ERROR | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
5083 |
-
3643 | WARNING | [ ] Processing form data without nonce verification. (WordPress.CSRF.NonceVerification.NoNonceVerification)
|
5084 |
-
3644 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
5085 |
-
3645 | WARNING | [ ] Found precision alignment of 1 spaces. (WordPress.WhiteSpace.PrecisionAlignment.Found)
|
5086 |
-
3647 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5087 |
-
3647 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5088 |
-
3647 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5089 |
-
3653 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5090 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5091 |
-
3675 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5092 |
-
3675 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
5093 |
-
3675 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5094 |
-
3718 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5095 |
-
3731 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5096 |
-
3732 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5097 |
-
3742 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5098 |
-
3742 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5099 |
-
3747 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5100 |
-
3747 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5101 |
-
3747 | ERROR | [ ] The constant "JSON_UNESCAPED_UNICODE" is not present in PHP version 5.3 or earlier (PHPCompatibility.PHP.NewConstants.json_unescaped_unicodeFound)
|
5102 |
-
3747 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5103 |
-
3750 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5104 |
-
3753 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5105 |
-
3754 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5106 |
-
3754 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5107 |
-
3759 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5108 |
-
3764 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5109 |
-
3764 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5110 |
-
3764 | ERROR | [ ] The constant "JSON_UNESCAPED_UNICODE" is not present in PHP version 5.3 or earlier (PHPCompatibility.PHP.NewConstants.json_unescaped_unicodeFound)
|
5111 |
-
3764 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5112 |
-
3771 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5113 |
-
3772 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5114 |
-
3785 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5115 |
-
3786 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5116 |
-
3787 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5117 |
-
3789 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5118 |
-
3805 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5119 |
-
3835 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5120 |
-
3887 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5121 |
-
3926 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5122 |
-
3944 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5123 |
-
3945 | ERROR | [ ] The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
5124 |
-
3945 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5125 |
-
3945 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
5126 |
-
3945 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5127 |
-
3968 | ERROR | [ ] Use placeholders and $wpdb->prepare(); found $rel_params (WordPress.WP.PreparedSQL.NotPrepared)
|
5128 |
-
3968 | WARNING | [ ] Replacement variables found, but no valid placeholders found in the query. (WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare)
|
5129 |
-
3980 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5130 |
-
4004 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5131 |
-
4005 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5132 |
-
4010 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5133 |
-
4012 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5134 |
-
4015 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5135 |
-
4016 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5136 |
-
4061 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5137 |
-
4072 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5138 |
-
4073 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5139 |
-
4091 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5140 |
-
4124 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5141 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5142 |
-
4130 | ERROR | [ ] eval() is a security risk so not allowed. (Squiz.PHP.Eval.Discouraged)
|
5143 |
-
4135 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5144 |
-
4180 | ERROR | [x] Expected 1 space after asterisk; 0 found (Squiz.Commenting.DocCommentAlignment.NoSpaceAfterStar)
|
5145 |
-
4182 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5146 |
-
4183 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5147 |
-
4184 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5148 |
-
4190 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 3 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
5149 |
-
4191 | WARNING | [x] Equals sign not aligned with surrounding assignments; expected 5 spaces but found 1 space (Generic.Formatting.MultipleStatementAlignment.NotSameWarning)
|
5150 |
-
4220 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5151 |
-
4233 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5152 |
-
4240 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5153 |
-
4248 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5154 |
-
4269 | ERROR | [ ] Doc comment for parameter "$related_ids" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5155 |
-
4273 | ERROR | [ ] Doc comment for parameter $related_id does not match actual variable name $related_ids (Squiz.Commenting.FunctionComment.ParamNameNoMatch)
|
5156 |
-
4313 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5157 |
-
4316 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5158 |
-
4340 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5159 |
-
4342 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5160 |
-
4354 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5161 |
-
4355 | ERROR | [x] String "\n UPDATE `@wp_podsrel`\n SET\n `pod_id` = %d,\n `field_id` = %d,\n `item_id` = %d,\n `related_pod_id` = %d,\n `related_field_id` =
|
5162 |
-
| | %d,\n `related_item_id` = %d,\n `weight` = %d\n WHERE\n `pod_id` = %d\n AND `field_id` = %d\n AND `item_id` = %d\n AND `related_item_id` = %d\n "
|
5163 |
-
| | does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5164 |
-
4371 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5165 |
-
4372 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5166 |
-
4373 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5167 |
-
4374 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5168 |
-
4375 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5169 |
-
4376 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5170 |
-
4377 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5171 |
-
4379 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5172 |
-
4380 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5173 |
-
4381 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5174 |
-
4382 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5175 |
-
4383 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5176 |
-
4385 | ERROR | [x] String "\n INSERT INTO
|
5177 |
-
| | `@wp_podsrel`\n (\n `pod_id`,\n `field_id`,\n `item_id`,\n `related_pod_id`,\n `related_field_id`,\n `related_item_id`,\n `weight`\n )\n VALUES
|
5178 |
-
| | ( %d, %d, %d, %d, %d, %d, %d )\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5179 |
-
4398 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5180 |
-
4399 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5181 |
-
4400 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5182 |
-
4401 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5183 |
-
4402 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5184 |
-
4403 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5185 |
-
4404 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5186 |
-
4404 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5187 |
-
4405 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5188 |
-
4406 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5189 |
-
4409 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5190 |
-
4410 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5191 |
-
4450 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5192 |
-
4456 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5193 |
-
4471 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5194 |
-
4541 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5195 |
-
4608 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5196 |
-
4635 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5197 |
-
4650 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5198 |
-
4656 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5199 |
-
4663 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
5200 |
-
4785 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5201 |
-
4809 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5202 |
-
4809 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5203 |
-
4818 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5204 |
-
4829 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5205 |
-
4834 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5206 |
-
4835 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5207 |
-
4841 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5208 |
-
4842 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5209 |
-
4843 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5210 |
-
4843 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5211 |
-
4847 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5212 |
-
4857 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5213 |
-
4858 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5214 |
-
4883 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5215 |
-
4886 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5216 |
-
4887 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5217 |
-
4892 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5218 |
-
4893 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5219 |
-
4899 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5220 |
-
4902 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5221 |
-
4943 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5222 |
-
4955 | ERROR | [x] String " WHERE `id` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5223 |
-
4955 | ERROR | [x] String " LIMIT 1" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5224 |
-
4957 | ERROR | [x] String " LIMIT 1" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5225 |
-
4964 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5226 |
-
5022 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
5227 |
-
5025 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5228 |
-
5047 | ERROR | [x] String "\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5229 |
-
5048 | ERROR | [x] String "\n WHERE " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5230 |
-
5049 | ERROR | [x] String "\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5231 |
-
5055 | ERROR | [x] String "\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5232 |
-
5056 | ERROR | [x] String "\n WHERE " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5233 |
-
5057 | ERROR | [x] String "\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5234 |
-
5069 | ERROR | [x] String "\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5235 |
-
5086 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5236 |
-
5088 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5237 |
-
5181 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
5238 |
-
5251 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5239 |
-
5275 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5240 |
-
5285 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5241 |
-
5285 | ERROR | [ ] Boolean operators are not allowed outside of control structure conditions (Squiz.PHP.DisallowBooleanStatement.Found)
|
5242 |
-
5285 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5243 |
-
5288 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5244 |
-
5307 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
5245 |
-
5336 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5246 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5247 |
-
5336 | ERROR | [x] String "%s Object not found" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5248 |
-
5342 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5249 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5250 |
-
5342 | ERROR | [x] String "%s Object not deleted" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5251 |
-
5463 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5252 |
-
5479 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5253 |
-
5495 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5254 |
-
5515 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5255 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5256 |
-
5521 | ERROR | [ ] eval() is a security risk so not allowed. (Squiz.PHP.Eval.Discouraged)
|
5257 |
-
5525 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5258 |
-
5526 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5259 |
-
5544 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5260 |
-
5557 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5261 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5262 |
-
5563 | ERROR | [ ] eval() is a security risk so not allowed. (Squiz.PHP.Eval.Discouraged)
|
5263 |
-
5575 | ERROR | [ ] Doc comment for parameter "$object" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5264 |
-
5578 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5265 |
-
5579 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5266 |
-
5579 | ERROR | [ ] Doc comment for parameter $type does not match actual variable name $object (Squiz.Commenting.FunctionComment.ParamNameNoMatch)
|
5267 |
-
5580 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5268 |
-
5616 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5269 |
-
5620 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5270 |
-
5621 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5271 |
-
5622 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5272 |
-
5628 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5273 |
-
5638 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5274 |
-
5639 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5275 |
-
5647 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5276 |
-
5660 | ERROR | [x] String "\n DELETE FROM `@wp_podsrel`\n WHERE\n (\n `pod_id` = %d\n AND `item_id` = %d\n )\n OR (\n `related_pod_id` = %d\n AND `related_item_id` =
|
5277 |
-
| | %d\n )\n " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5278 |
-
5672 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5279 |
-
5673 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5280 |
-
5675 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5281 |
-
5676 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5282 |
-
5676 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5283 |
-
5677 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5284 |
-
5723 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5285 |
-
5742 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5286 |
-
5745 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5287 |
-
5769 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5288 |
-
5773 | ERROR | [x] String "\n DELETE FROM `@wp_podsrel`\n WHERE\n (\n `pod_id` = %d\n AND `field_id` = %d\n AND `item_id` = %d\n AND `related_item_id` = %d\n )\n OR
|
5289 |
-
| | (\n `related_pod_id` = %d\n AND `related_field_id` = %d\n AND `related_item_id` = %d\n AND `item_id` = %d\n )\n " does not require double quotes; use single quotes
|
5290 |
-
| | instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5291 |
-
5789 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5292 |
-
5790 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5293 |
-
5791 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5294 |
-
5792 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5295 |
-
5794 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5296 |
-
5795 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5297 |
-
5796 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5298 |
-
5797 | ERROR | [x] Array item not aligned correctly; expected 4 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5299 |
-
5797 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5300 |
-
5798 | ERROR | [x] Array closer not aligned correctly; expected 0 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5301 |
-
5799 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5302 |
-
5806 | ERROR | [ ] Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5303 |
-
5828 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5304 |
-
5833 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5305 |
-
5841 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5306 |
-
5841 | ERROR | [ ] Use Yoda Condition checks, you must. (WordPress.PHP.YodaConditions.NotYoda)
|
5307 |
-
5917 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5308 |
-
5965 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5309 |
-
5966 | ERROR | [x] Array item not aligned correctly; expected 20 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5310 |
-
5967 | ERROR | [x] Array item not aligned correctly; expected 20 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5311 |
-
5967 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5312 |
-
5968 | ERROR | [x] Multi-line function call not indented correctly; expected 16 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
5313 |
-
5968 | ERROR | [x] Array closer not aligned correctly; expected 16 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5314 |
-
5968 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_setting". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
5315 |
-
6002 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5316 |
-
6004 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5317 |
-
6014 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5318 |
-
6016 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5319 |
-
6020 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5320 |
-
6023 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5321 |
-
6024 | ERROR | [x] Array item not aligned correctly; expected 24 spaces but found 28 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5322 |
-
6025 | ERROR | [x] Array item not aligned correctly; expected 24 spaces but found 28 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5323 |
-
6025 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5324 |
-
6026 | ERROR | [x] Multi-line function call not indented correctly; expected 20 spaces but found 24 (PEAR.Functions.FunctionCallSignature.Indent)
|
5325 |
-
6026 | ERROR | [x] Array closer not aligned correctly; expected 20 space(s) but found 24 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5326 |
-
6026 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_setting". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
5327 |
-
6032 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5328 |
-
6035 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5329 |
-
6040 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5330 |
-
6057 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5331 |
-
6066 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5332 |
-
6067 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5333 |
-
6068 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5334 |
-
6068 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5335 |
-
6069 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
5336 |
-
6069 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5337 |
-
6069 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_setting". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
5338 |
-
6080 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5339 |
-
6093 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5340 |
-
6112 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5341 |
-
6161 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5342 |
-
6185 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5343 |
-
6190 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5344 |
-
6191 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5345 |
-
6264 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5346 |
-
6284 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5347 |
-
6287 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5348 |
-
6305 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5349 |
-
6316 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5350 |
-
6317 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5351 |
-
6318 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5352 |
-
6318 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5353 |
-
6319 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5354 |
-
6319 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5355 |
-
6383 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5356 |
-
6446 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5357 |
-
6467 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5358 |
-
6492 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5359 |
-
6493 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5360 |
-
6494 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5361 |
-
6497 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5362 |
-
6497 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5363 |
-
6519 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5364 |
-
6520 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5365 |
-
6544 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5366 |
-
6550 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5367 |
-
6598 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5368 |
-
6615 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5369 |
-
6634 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5370 |
-
6651 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5371 |
-
6666 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5372 |
-
6680 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5373 |
-
6699 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5374 |
-
6712 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5375 |
-
6738 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5376 |
-
6755 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5377 |
-
6796 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5378 |
-
6797 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5379 |
-
6830 | WARNING | [ ] serialize() found. Serialized data has known vulnerability problems with Object Injection. JSON is generally a better approach for serializing data. See
|
5380 |
-
| | https://www.owasp.org/index.php/PHP_Object_Injection (WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize)
|
5381 |
-
6879 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5382 |
-
6897 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5383 |
-
6897 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5384 |
-
6897 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5385 |
-
6922 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5386 |
-
6970 | ERROR | [x] String ", " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5387 |
-
6986 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5388 |
-
6989 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5389 |
-
6994 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5390 |
-
7010 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5391 |
-
7050 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5392 |
-
7057 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5393 |
-
7063 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5394 |
-
7115 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5395 |
-
7124 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5396 |
-
7125 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5397 |
-
7126 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5398 |
-
7126 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5399 |
-
7127 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5400 |
-
7127 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5401 |
-
7421 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5402 |
-
7446 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5403 |
-
7458 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5404 |
-
7459 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5405 |
-
7460 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5406 |
-
7460 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5407 |
-
7461 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
5408 |
-
7461 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5409 |
-
7461 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5410 |
-
7461 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5411 |
-
7499 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5412 |
-
7502 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5413 |
-
7563 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5414 |
-
7563 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5415 |
-
7563 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5416 |
-
7571 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5417 |
-
7571 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5418 |
-
7574 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5419 |
-
7576 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5420 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5421 |
-
7593 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5422 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5423 |
-
7595 | ERROR | [x] Blank line found after control structure (WordPress.WhiteSpace.ControlStructureSpacing.BlankLineAfterEnd)
|
5424 |
-
7597 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5425 |
-
7601 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5426 |
-
7606 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5427 |
-
7620 | ERROR | [x] String "SELECT `id` FROM `@wp_pods_" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5428 |
-
7624 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5429 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5430 |
-
7626 | ERROR | [ ] Empty ELSE statement detected (Generic.CodeAnalysis.EmptyStatement.DetectedElse)
|
5431 |
-
7628 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5432 |
-
7629 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5433 |
-
7667 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5434 |
-
7667 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5435 |
-
7676 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5436 |
-
7739 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5437 |
-
7741 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5438 |
-
7741 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5439 |
-
7748 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5440 |
-
7751 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5441 |
-
7752 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5442 |
-
7753 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5443 |
-
7754 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5444 |
-
7755 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5445 |
-
7756 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5446 |
-
7757 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5447 |
-
7757 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5448 |
-
7758 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
5449 |
-
7758 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5450 |
-
7761 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5451 |
-
7767 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5452 |
-
7770 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5453 |
-
7822 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5454 |
-
7823 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5455 |
-
7826 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5456 |
-
7828 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5457 |
-
7829 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5458 |
-
7838 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5459 |
-
7838 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5460 |
-
7869 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5461 |
-
7908 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5462 |
-
7908 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5463 |
-
7910 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5464 |
-
7910 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5465 |
-
7919 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5466 |
-
7920 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5467 |
-
7920 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5468 |
-
7923 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5469 |
-
7923 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5470 |
-
7924 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5471 |
-
7924 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5472 |
-
7925 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5473 |
-
7925 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5474 |
-
7926 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5475 |
-
7926 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5476 |
-
7927 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5477 |
-
7927 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5478 |
-
7928 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5479 |
-
7928 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5480 |
-
7929 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5481 |
-
7929 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5482 |
-
7929 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5483 |
-
7930 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
5484 |
-
7930 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5485 |
-
7931 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5486 |
-
7933 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5487 |
-
7935 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5488 |
-
7935 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5489 |
-
7936 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5490 |
-
7937 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5491 |
-
7938 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5492 |
-
7941 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5493 |
-
7941 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5494 |
-
7943 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5495 |
-
7944 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5496 |
-
7944 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5497 |
-
7947 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5498 |
-
7948 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5499 |
-
7950 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5500 |
-
7951 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5501 |
-
7954 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5502 |
-
7955 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5503 |
-
7956 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5504 |
-
7957 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5505 |
-
7958 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5506 |
-
7959 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5507 |
-
7960 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5508 |
-
7961 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5509 |
-
7964 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5510 |
-
7965 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5511 |
-
7969 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5512 |
-
7970 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5513 |
-
7972 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5514 |
-
7973 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5515 |
-
7976 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5516 |
-
7977 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5517 |
-
7978 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5518 |
-
7979 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5519 |
-
7980 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5520 |
-
7981 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5521 |
-
7982 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5522 |
-
7983 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5523 |
-
7984 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5524 |
-
7985 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5525 |
-
7986 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5526 |
-
7990 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5527 |
-
7991 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5528 |
-
7995 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5529 |
-
7997 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5530 |
-
7998 | WARNING | [ ] Code after the RETURN statement on line 7917 cannot be executed (Squiz.PHP.NonExecutableCode.Unreachable)
|
5531 |
-
7998 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5532 |
-
8000 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5533 |
-
8001 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5534 |
-
8010 | ERROR | [ ] Doc comment for parameter "$object_type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5535 |
-
8014 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
5536 |
-
8015 | ERROR | [x] Expected 6 spaces after parameter type; 1 found (Squiz.Commenting.FunctionComment.SpacingAfterParamType)
|
5537 |
-
8016 | ERROR | [x] Expected 8 spaces after parameter type; 3 found (Squiz.Commenting.FunctionComment.SpacingAfterParamType)
|
5538 |
-
8017 | ERROR | [x] Expected 7 spaces after parameter type; 2 found (Squiz.Commenting.FunctionComment.SpacingAfterParamType)
|
5539 |
-
8041 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5540 |
-
8065 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
5541 |
-
8067 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5542 |
-
8077 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5543 |
-
8092 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5544 |
-
8092 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5545 |
-
8092 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5546 |
-
8092 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5547 |
-
8095 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5548 |
-
8095 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5549 |
-
8095 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5550 |
-
8108 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5551 |
-
8109 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5552 |
-
8115 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5553 |
-
8118 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
5554 |
-
8124 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5555 |
-
8128 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5556 |
-
8129 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5557 |
-
8137 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5558 |
-
8154 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
5559 |
-
8159 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
5560 |
-
8162 | ERROR | [x] No space found before comment text; expected "// 'select' => '`t`.*'," but found "//'select' => '`t`.*'," (Squiz.Commenting.InlineComment.NoSpaceBefore)
|
5561 |
-
8168 | WARNING | [x] Array double arrow not aligned correctly; expected 15 space(s) between "'table'" and double arrow, but found 6. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5562 |
-
8169 | WARNING | [x] Array double arrow not aligned correctly; expected 10 space(s) between "'meta_table'" and double arrow, but found 1.
|
5563 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5564 |
-
8170 | WARNING | [x] Array double arrow not aligned correctly; expected 11 space(s) between "'pod_table'" and double arrow, but found 2. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5565 |
-
8170 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5566 |
-
8179 | WARNING | [x] Array double arrow not aligned correctly; expected 7 space(s) between "'meta_field_id'" and double arrow, but found 4.
|
5567 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5568 |
-
8180 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'meta_field_index'" and double arrow, but found 1.
|
5569 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5570 |
-
8181 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'meta_field_value'" and double arrow, but found 1.
|
5571 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5572 |
-
8183 | WARNING | [x] Array double arrow not aligned correctly; expected 8 space(s) between "'pod_field_id'" and double arrow, but found 5.
|
5573 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5574 |
-
8184 | WARNING | [x] Array double arrow not aligned correctly; expected 5 space(s) between "'pod_field_index'" and double arrow, but found 2.
|
5575 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5576 |
-
8185 | WARNING | [x] Array double arrow not aligned correctly; expected 6 space(s) between "'pod_field_slug'" and double arrow, but found 3.
|
5577 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5578 |
-
8186 | WARNING | [x] Array double arrow not aligned correctly; expected 4 space(s) between "'pod_field_parent'" and double arrow, but found 1.
|
5579 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5580 |
-
8188 | WARNING | [x] Array double arrow not aligned correctly; expected 16 space(s) between "'join'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5581 |
-
8190 | WARNING | [x] Array double arrow not aligned correctly; expected 15 space(s) between "'where'" and double arrow, but found 9. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5582 |
-
8191 | WARNING | [x] Array double arrow not aligned correctly; expected 7 space(s) between "'where_default'" and double arrow, but found 1.
|
5583 |
-
| | (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5584 |
-
8193 | WARNING | [x] Array double arrow not aligned correctly; expected 13 space(s) between "'orderby'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5585 |
-
8195 | WARNING | [x] Array double arrow not aligned correctly; expected 17 space(s) between "'pod'" and double arrow, but found 5. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5586 |
-
8196 | WARNING | [x] Array double arrow not aligned correctly; expected 13 space(s) between "'recurse'" and double arrow, but found 1. (WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned)
|
5587 |
-
8196 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5588 |
-
8202 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5589 |
-
8209 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5590 |
-
8209 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5591 |
-
8209 | ERROR | [ ] The constant "JSON_UNESCAPED_UNICODE" is not present in PHP version 5.3 or earlier (PHPCompatibility.PHP.NewConstants.json_unescaped_unicodeFound)
|
5592 |
-
8209 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5593 |
-
8217 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5594 |
-
8217 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5595 |
-
8217 | ERROR | [ ] The constant "JSON_UNESCAPED_UNICODE" is not present in PHP version 5.3 or earlier (PHPCompatibility.PHP.NewConstants.json_unescaped_unicodeFound)
|
5596 |
-
8217 | WARNING | [ ] json_encode() is discouraged. Use wp_json_encode() instead. (WordPress.WP.AlternativeFunctions.json_encode_json_encode)
|
5597 |
-
8223 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5598 |
-
8248 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5599 |
-
8279 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5600 |
-
8280 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5601 |
-
8281 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5602 |
-
8281 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5603 |
-
8282 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5604 |
-
8282 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5605 |
-
8314 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5606 |
-
8356 | ERROR | [x] No space found before comment text; expected "// 'post_status' => '`t`.`post_status` IN ( "inherit", "publish" )', // @todo Figure out what statuses Attachments can be" but found
|
5607 |
-
| | "//'post_status' => '`t`.`post_status` IN ( "inherit", "publish" )', // @todo Figure out what statuses Attachments can be" (Squiz.Commenting.InlineComment.NoSpaceBefore)
|
5608 |
-
8357 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5609 |
-
8369 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
5610 |
-
8370 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_is_translated_post_type".
|
5611 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
5612 |
-
8370 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_setting". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
5613 |
-
8383 | ERROR | [x] String "`wpml_languages`.`code` IS NOT NULL" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5614 |
-
8392 | ERROR | [x] String "`polylang_languages`.`object_id` IS NOT NULL" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5615 |
-
8393 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5616 |
-
8396 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5617 |
-
8397 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5618 |
-
8398 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5619 |
-
8398 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5620 |
-
8399 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5621 |
-
8399 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5622 |
-
8400 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5623 |
-
8404 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5624 |
-
8405 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5625 |
-
8405 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5626 |
-
8434 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5627 |
-
8438 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5628 |
-
8449 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5629 |
-
8456 | ERROR | [ ] Comment closer must be on a new line (Squiz.Commenting.BlockComment.CloserSameLine)
|
5630 |
-
8457 | ERROR | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_setting". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
5631 |
-
8470 | ERROR | [x] String "`wpml_languages`.`code` IS NOT NULL" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5632 |
-
8479 | ERROR | [x] String "`polylang_languages`.`object_id` IS NOT NULL" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5633 |
-
8480 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5634 |
-
8497 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5635 |
-
8502 | ERROR | [x] No space found before comment text; expected "// $info[ 'object_hierarchical' ] = true;" but found "//$info[ 'object_hierarchical' ] = true;"
|
5636 |
-
| | (Squiz.Commenting.InlineComment.NoSpaceBefore)
|
5637 |
-
8502 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
5638 |
-
8520 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5639 |
-
8520 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5640 |
-
8530 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5641 |
-
8534 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5642 |
-
8535 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5643 |
-
8536 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5644 |
-
8536 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5645 |
-
8537 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5646 |
-
8537 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5647 |
-
8549 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5648 |
-
8550 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5649 |
-
8551 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5650 |
-
8551 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5651 |
-
8552 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
5652 |
-
8552 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5653 |
-
8564 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5654 |
-
8576 | ERROR | [x] Comments may not appear after statements (Squiz.Commenting.PostStatementComment.Found)
|
5655 |
-
8587 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5656 |
-
8592 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5657 |
-
8592 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5658 |
-
8598 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5659 |
-
8598 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
5660 |
-
8600 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5661 |
-
8618 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5662 |
-
8619 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5663 |
-
8620 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5664 |
-
8620 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5665 |
-
8621 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
5666 |
-
8621 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5667 |
-
8623 | ERROR | [x] No space found before comment text; expected "// $info[ 'select' ] .= ', `d`.*';" but found "//$info[ 'select' ] .= ', `d`.*';" (Squiz.Commenting.InlineComment.NoSpaceBefore)
|
5668 |
-
8749 | ERROR | [x] String "SET NAMES utf8" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5669 |
-
8750 | ERROR | [x] String "SET CHARACTER SET utf8" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5670 |
-
8756 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
5671 |
-
8781 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5672 |
-
8781 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5673 |
-
8782 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
5674 |
-
8782 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5675 |
-
8791 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5676 |
-
8792 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
5677 |
-
8796 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5678 |
-
8800 | ERROR | [x] String "`ID` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5679 |
-
8815 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5680 |
-
8822 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5681 |
-
8826 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5682 |
-
8830 | ERROR | [x] String "`tt`.`term_id` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5683 |
-
8838 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5684 |
-
8839 | ERROR | [x] Array item not aligned correctly; expected 36 spaces but found 40 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5685 |
-
8840 | ERROR | [x] Array item not aligned correctly; expected 36 spaces but found 40 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
5686 |
-
8840 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5687 |
-
8841 | ERROR | [x] Multi-line function call not indented correctly; expected 32 spaces but found 36 (PEAR.Functions.FunctionCallSignature.Indent)
|
5688 |
-
8841 | ERROR | [x] Array closer not aligned correctly; expected 32 space(s) but found 36 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
5689 |
-
8841 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5690 |
-
8845 | ERROR | [x] String "`ID` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5691 |
-
8853 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5692 |
-
8857 | ERROR | [x] String "`ID` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5693 |
-
8865 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5694 |
-
8866 | ERROR | [x] String "`comment_ID` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5695 |
-
8873 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5696 |
-
8876 | ERROR | [x] String "`" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5697 |
-
8879 | ERROR | [x] String "`" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5698 |
-
8879 | ERROR | [x] String "` = " does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5699 |
-
8882 | ERROR | [x] String "SELECT `" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5700 |
-
8882 | ERROR | [x] String "` AS `id` FROM `" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5701 |
-
8882 | ERROR | [x] String "` LIMIT 1" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5702 |
-
8887 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5703 |
-
8888 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5704 |
-
8889 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5705 |
-
8892 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5706 |
-
8895 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5707 |
-
8896 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5708 |
-
8901 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5709 |
-
8906 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
5710 |
-
8929 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5711 |
-
8953 | ERROR | [ ] Doc comment for parameter "$delimiter" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5712 |
-
8965 | ERROR | [x] String "PodsAPI->csv_to_php" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5713 |
-
8975 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5714 |
-
8999 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
5715 |
-
9023 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5716 |
-
9061 | WARNING | [ ] Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
5717 |
-
9090 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
5718 |
-
9129 | ERROR | [x] String "api" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
5719 |
-
9132 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5720 |
-
9142 | WARNING | [x] "require_once" is a statement not a function; no parentheses are required (PEAR.Files.IncludingFile.BracketsNotRequired)
|
5721 |
-
9159 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5722 |
-
9159 | ERROR | [ ] Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5723 |
-
9169 | WARNING | [x] "require_once" is a statement not a function; no parentheses are required (PEAR.Files.IncludingFile.BracketsNotRequired)
|
5724 |
-
9183 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
5725 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5726 |
-
PHPCBF CAN FIX THE 627 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
5727 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5728 |
-
|
5729 |
-
|
5730 |
-
FILE: classes/fields/website.php
|
5731 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5732 |
-
FOUND 32 ERRORS AND 1 WARNING AFFECTING 13 LINES
|
5733 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5734 |
-
5 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Website". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5735 |
-
9 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5736 |
-
14 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5737 |
-
19 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5738 |
-
24 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5739 |
-
108 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5740 |
-
123 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5741 |
-
123 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5742 |
-
123 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5743 |
-
123 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5744 |
-
123 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5745 |
-
145 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5746 |
-
145 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5747 |
-
145 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5748 |
-
145 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5749 |
-
145 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5750 |
-
174 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5751 |
-
174 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5752 |
-
174 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5753 |
-
174 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5754 |
-
174 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5755 |
-
174 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5756 |
-
174 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5757 |
-
189 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5758 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5759 |
-
191 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5760 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5761 |
-
203 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5762 |
-
203 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5763 |
-
203 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5764 |
-
203 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5765 |
-
203 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5766 |
-
203 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5767 |
-
203 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5768 |
-
252 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
5769 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5770 |
-
|
5771 |
-
|
5772 |
-
FILE: classes/fields/avatar.php
|
5773 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5774 |
-
FOUND 10 ERRORS AFFECTING 6 LINES
|
5775 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5776 |
-
9 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Avatar". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5777 |
-
13 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5778 |
-
18 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5779 |
-
23 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5780 |
-
28 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5781 |
-
54 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5782 |
-
54 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5783 |
-
54 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5784 |
-
54 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5785 |
-
54 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5786 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5787 |
-
|
5788 |
-
|
5789 |
-
FILE: classes/fields/wysiwyg.php
|
5790 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5791 |
-
FOUND 31 ERRORS AFFECTING 11 LINES
|
5792 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5793 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_WYSIWYG". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5794 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5795 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5796 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5797 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5798 |
-
144 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5799 |
-
154 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5800 |
-
154 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5801 |
-
154 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5802 |
-
154 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5803 |
-
154 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5804 |
-
213 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5805 |
-
213 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5806 |
-
213 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5807 |
-
213 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5808 |
-
213 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5809 |
-
252 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5810 |
-
252 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5811 |
-
252 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5812 |
-
252 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5813 |
-
252 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5814 |
-
252 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5815 |
-
252 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5816 |
-
268 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5817 |
-
268 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5818 |
-
268 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5819 |
-
268 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5820 |
-
268 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5821 |
-
268 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5822 |
-
280 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5823 |
-
280 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5824 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5825 |
-
|
5826 |
-
|
5827 |
-
FILE: classes/fields/link.php
|
5828 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5829 |
-
FOUND 32 ERRORS AFFECTING 12 LINES
|
5830 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5831 |
-
7 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Link". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5832 |
-
11 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5833 |
-
16 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5834 |
-
21 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5835 |
-
26 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5836 |
-
103 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5837 |
-
114 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5838 |
-
114 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5839 |
-
114 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5840 |
-
114 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5841 |
-
114 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5842 |
-
189 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5843 |
-
189 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5844 |
-
189 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5845 |
-
189 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5846 |
-
189 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5847 |
-
205 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5848 |
-
205 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5849 |
-
205 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5850 |
-
205 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5851 |
-
205 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5852 |
-
205 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5853 |
-
205 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5854 |
-
223 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5855 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5856 |
-
225 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5857 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5858 |
-
238 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5859 |
-
238 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5860 |
-
238 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5861 |
-
238 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5862 |
-
238 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5863 |
-
238 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5864 |
-
238 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5865 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5866 |
-
|
5867 |
-
|
5868 |
-
FILE: classes/fields/password.php
|
5869 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5870 |
-
FOUND 25 ERRORS AFFECTING 9 LINES
|
5871 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5872 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Password". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5873 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5874 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5875 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5876 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5877 |
-
62 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5878 |
-
78 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5879 |
-
78 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5880 |
-
78 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5881 |
-
78 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5882 |
-
78 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5883 |
-
103 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5884 |
-
103 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5885 |
-
103 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5886 |
-
103 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5887 |
-
103 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5888 |
-
103 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5889 |
-
103 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5890 |
-
129 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5891 |
-
129 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5892 |
-
129 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5893 |
-
129 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5894 |
-
129 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5895 |
-
129 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5896 |
-
129 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5897 |
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5898 |
-
|
5899 |
-
|
5900 |
-
FILE: classes/fields/currency.php
|
5901 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5902 |
-
FOUND 35 ERRORS AFFECTING 11 LINES
|
5903 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5904 |
-
7 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Currency". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5905 |
-
11 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5906 |
-
16 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5907 |
-
21 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5908 |
-
26 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5909 |
-
169 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5910 |
-
169 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5911 |
-
169 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5912 |
-
169 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5913 |
-
169 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5914 |
-
217 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5915 |
-
217 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5916 |
-
217 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5917 |
-
217 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5918 |
-
217 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5919 |
-
238 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5920 |
-
238 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5921 |
-
238 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5922 |
-
238 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5923 |
-
238 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5924 |
-
238 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5925 |
-
238 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5926 |
-
276 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
5927 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
5928 |
-
283 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5929 |
-
283 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5930 |
-
283 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5931 |
-
283 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5932 |
-
283 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5933 |
-
283 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5934 |
-
283 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5935 |
-
325 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5936 |
-
325 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5937 |
-
325 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5938 |
-
325 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5939 |
-
325 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5940 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5941 |
-
|
5942 |
-
|
5943 |
-
FILE: classes/fields/boolean.php
|
5944 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5945 |
-
FOUND 35 ERRORS AFFECTING 11 LINES
|
5946 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5947 |
-
8 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Boolean". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5948 |
-
12 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5949 |
-
17 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5950 |
-
22 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5951 |
-
65 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5952 |
-
75 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5953 |
-
92 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5954 |
-
92 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5955 |
-
92 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5956 |
-
92 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5957 |
-
92 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5958 |
-
110 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5959 |
-
110 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5960 |
-
110 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5961 |
-
110 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5962 |
-
110 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5963 |
-
153 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5964 |
-
153 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5965 |
-
153 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5966 |
-
153 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5967 |
-
153 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5968 |
-
153 | ERROR | Doc comment for parameter "$in_form" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5969 |
-
172 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5970 |
-
172 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5971 |
-
172 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5972 |
-
172 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5973 |
-
172 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5974 |
-
172 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5975 |
-
172 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5976 |
-
198 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5977 |
-
198 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5978 |
-
198 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5979 |
-
198 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5980 |
-
198 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5981 |
-
198 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5982 |
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5983 |
-
|
5984 |
-
|
5985 |
-
FILE: classes/fields/color.php
|
5986 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5987 |
-
FOUND 30 ERRORS AFFECTING 9 LINES
|
5988 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
5989 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Color". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
5990 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5991 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5992 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
5993 |
-
51 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5994 |
-
61 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5995 |
-
61 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5996 |
-
61 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5997 |
-
61 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5998 |
-
61 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
5999 |
-
93 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6000 |
-
93 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6001 |
-
93 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6002 |
-
93 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6003 |
-
93 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6004 |
-
93 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6005 |
-
93 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6006 |
-
126 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6007 |
-
126 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6008 |
-
126 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6009 |
-
126 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6010 |
-
126 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6011 |
-
126 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6012 |
-
126 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6013 |
-
142 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6014 |
-
142 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6015 |
-
142 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6016 |
-
142 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6017 |
-
142 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6018 |
-
142 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6019 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6020 |
-
|
6021 |
-
|
6022 |
-
FILE: classes/fields/datetime.php
|
6023 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6024 |
-
FOUND 40 ERRORS AND 4 WARNINGS AFFECTING 19 LINES
|
6025 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6026 |
-
6 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_DateTime". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6027 |
-
10 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6028 |
-
15 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6029 |
-
20 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6030 |
-
25 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6031 |
-
221 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6032 |
-
231 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6033 |
-
248 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6034 |
-
248 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6035 |
-
248 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6036 |
-
248 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6037 |
-
248 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6038 |
-
258 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6039 |
-
258 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6040 |
-
258 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6041 |
-
258 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6042 |
-
258 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6043 |
-
292 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6044 |
-
292 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6045 |
-
292 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6046 |
-
292 | ERROR | [ ] Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6047 |
-
292 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6048 |
-
292 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6049 |
-
292 | ERROR | [ ] Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6050 |
-
321 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6051 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6052 |
-
329 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6053 |
-
329 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6054 |
-
329 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6055 |
-
329 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6056 |
-
329 | ERROR | [ ] Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6057 |
-
329 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6058 |
-
329 | ERROR | [ ] Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6059 |
-
360 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6060 |
-
360 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6061 |
-
360 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6062 |
-
360 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6063 |
-
360 | ERROR | [ ] Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6064 |
-
360 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6065 |
-
573 | WARNING | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filter". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6066 |
-
609 | WARNING | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filter". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6067 |
-
634 | WARNING | [x] Equals sign not aligned correctly; expected 1 space but found 9 spaces (Generic.Formatting.MultipleStatementAlignment.IncorrectWarning)
|
6068 |
-
637 | WARNING | [ ] Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filter". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6069 |
-
691 | ERROR | [ ] Empty CATCH statement detected (Generic.CodeAnalysis.EmptyStatement.DetectedCatch)
|
6070 |
-
693 | ERROR | [x] End comment for long condition not found; expected "//end try" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
6071 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6072 |
-
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
6073 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6074 |
-
|
6075 |
-
|
6076 |
-
FILE: classes/fields/date.php
|
6077 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6078 |
-
FOUND 10 ERRORS AFFECTING 9 LINES
|
6079 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6080 |
-
7 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Date". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6081 |
-
11 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6082 |
-
16 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6083 |
-
21 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6084 |
-
26 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6085 |
-
31 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6086 |
-
36 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6087 |
-
145 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6088 |
-
155 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6089 |
-
155 | ERROR | Doc comment for parameter "$js" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6090 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6091 |
-
|
6092 |
-
|
6093 |
-
FILE: classes/fields/email.php
|
6094 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6095 |
-
FOUND 33 ERRORS AFFECTING 12 LINES
|
6096 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6097 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Email". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6098 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6099 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6100 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6101 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6102 |
-
76 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6103 |
-
92 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6104 |
-
92 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6105 |
-
92 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6106 |
-
92 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6107 |
-
92 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6108 |
-
123 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6109 |
-
123 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6110 |
-
123 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6111 |
-
123 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6112 |
-
123 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6113 |
-
123 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6114 |
-
123 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6115 |
-
139 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6116 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6117 |
-
141 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6118 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6119 |
-
153 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6120 |
-
153 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6121 |
-
153 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6122 |
-
153 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6123 |
-
153 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6124 |
-
153 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6125 |
-
153 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6126 |
-
173 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6127 |
-
173 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6128 |
-
173 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6129 |
-
173 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6130 |
-
173 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6131 |
-
173 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6132 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6133 |
-
|
6134 |
-
|
6135 |
-
FILE: classes/fields/code.php
|
6136 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6137 |
-
FOUND 23 ERRORS AFFECTING 9 LINES
|
6138 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6139 |
-
8 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Code". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6140 |
-
12 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6141 |
-
17 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6142 |
-
22 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6143 |
-
27 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6144 |
-
75 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6145 |
-
91 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6146 |
-
91 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6147 |
-
91 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6148 |
-
91 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6149 |
-
91 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6150 |
-
103 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6151 |
-
103 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6152 |
-
103 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6153 |
-
103 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6154 |
-
103 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6155 |
-
123 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6156 |
-
123 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6157 |
-
123 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6158 |
-
123 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6159 |
-
123 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6160 |
-
123 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6161 |
-
123 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6162 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6163 |
-
|
6164 |
-
|
6165 |
-
FILE: classes/fields/paragraph.php
|
6166 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6167 |
-
FOUND 29 ERRORS AFFECTING 10 LINES
|
6168 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6169 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Paragraph". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6170 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6171 |
-
16 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6172 |
-
22 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6173 |
-
28 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6174 |
-
147 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6175 |
-
163 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6176 |
-
163 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6177 |
-
163 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6178 |
-
163 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6179 |
-
163 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6180 |
-
203 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6181 |
-
203 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6182 |
-
203 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6183 |
-
203 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6184 |
-
203 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6185 |
-
228 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6186 |
-
228 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6187 |
-
228 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6188 |
-
228 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6189 |
-
228 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6190 |
-
228 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6191 |
-
228 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6192 |
-
244 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6193 |
-
244 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6194 |
-
244 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6195 |
-
244 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6196 |
-
244 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6197 |
-
244 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6198 |
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6199 |
-
|
6200 |
-
|
6201 |
-
FILE: classes/fields/html.php
|
6202 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6203 |
-
FOUND 22 ERRORS AFFECTING 9 LINES
|
6204 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6205 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_HTML". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6206 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6207 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6208 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6209 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6210 |
-
104 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6211 |
-
112 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6212 |
-
112 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6213 |
-
112 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6214 |
-
112 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6215 |
-
112 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6216 |
-
148 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6217 |
-
148 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6218 |
-
148 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6219 |
-
148 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6220 |
-
148 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6221 |
-
159 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6222 |
-
159 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6223 |
-
159 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6224 |
-
159 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6225 |
-
159 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6226 |
-
159 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6227 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6228 |
-
|
6229 |
-
|
6230 |
-
FILE: classes/fields/taxonomy.php
|
6231 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6232 |
-
FOUND 1 ERROR AFFECTING 1 LINE
|
6233 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6234 |
-
9 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Taxonomy". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6235 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6236 |
-
|
6237 |
-
|
6238 |
-
FILE: classes/fields/phone.php
|
6239 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6240 |
-
FOUND 27 ERRORS AFFECTING 11 LINES
|
6241 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6242 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Phone". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6243 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6244 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6245 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6246 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6247 |
-
101 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6248 |
-
117 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6249 |
-
117 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6250 |
-
117 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6251 |
-
117 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6252 |
-
117 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6253 |
-
148 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6254 |
-
148 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6255 |
-
148 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6256 |
-
148 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6257 |
-
148 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6258 |
-
148 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6259 |
-
148 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6260 |
-
164 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6261 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6262 |
-
166 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6263 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6264 |
-
178 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6265 |
-
178 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6266 |
-
178 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6267 |
-
178 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6268 |
-
178 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6269 |
-
178 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6270 |
-
178 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6271 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6272 |
-
|
6273 |
-
|
6274 |
-
FILE: classes/fields/oembed.php
|
6275 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6276 |
-
FOUND 38 ERRORS AFFECTING 12 LINES
|
6277 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6278 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_OEmbed". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6279 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6280 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6281 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6282 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6283 |
-
139 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6284 |
-
149 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6285 |
-
149 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6286 |
-
149 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6287 |
-
149 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6288 |
-
149 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6289 |
-
171 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6290 |
-
171 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6291 |
-
171 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6292 |
-
171 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6293 |
-
171 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6294 |
-
196 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6295 |
-
196 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6296 |
-
196 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6297 |
-
196 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6298 |
-
196 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6299 |
-
196 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6300 |
-
196 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6301 |
-
222 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6302 |
-
222 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6303 |
-
222 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6304 |
-
222 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6305 |
-
222 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6306 |
-
222 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6307 |
-
222 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6308 |
-
243 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6309 |
-
243 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6310 |
-
243 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6311 |
-
243 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6312 |
-
243 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6313 |
-
243 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6314 |
-
253 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6315 |
-
253 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6316 |
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6317 |
-
|
6318 |
-
|
6319 |
-
FILE: classes/fields/comment.php
|
6320 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6321 |
-
FOUND 1 ERROR AFFECTING 1 LINE
|
6322 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6323 |
-
9 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Comment". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6324 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6325 |
-
|
6326 |
-
|
6327 |
-
FILE: classes/fields/time.php
|
6328 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6329 |
-
FOUND 8 ERRORS AFFECTING 7 LINES
|
6330 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6331 |
-
7 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Time". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6332 |
-
11 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6333 |
-
16 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6334 |
-
21 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6335 |
-
26 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6336 |
-
153 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6337 |
-
207 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6338 |
-
207 | ERROR | Doc comment for parameter "$js" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6339 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6340 |
-
|
6341 |
-
|
6342 |
-
FILE: classes/fields/number.php
|
6343 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6344 |
-
FOUND 46 ERRORS AND 1 WARNING AFFECTING 17 LINES
|
6345 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6346 |
-
6 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Number". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6347 |
-
10 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6348 |
-
15 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6349 |
-
20 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6350 |
-
25 | ERROR | [ ] Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6351 |
-
125 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6352 |
-
144 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6353 |
-
153 | ERROR | [x] Expected 1 space(s) after IF keyword; 0 found (Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword)
|
6354 |
-
153 | ERROR | [x] Space after opening control structure is required (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterStructureOpen)
|
6355 |
-
153 | ERROR | [x] No space before opening parenthesis is prohibited (WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeOpenParenthesis)
|
6356 |
-
156 | WARNING | [x] Usage of ELSE IF is discouraged; use ELSEIF instead (PSR2.ControlStructures.ElseIfDeclaration.NotAllowed)
|
6357 |
-
164 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6358 |
-
181 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6359 |
-
181 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6360 |
-
181 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6361 |
-
181 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6362 |
-
181 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6363 |
-
191 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6364 |
-
191 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6365 |
-
191 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6366 |
-
191 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6367 |
-
191 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6368 |
-
231 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6369 |
-
231 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6370 |
-
231 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6371 |
-
231 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6372 |
-
231 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6373 |
-
243 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6374 |
-
243 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6375 |
-
243 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6376 |
-
243 | ERROR | [ ] Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6377 |
-
243 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6378 |
-
243 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6379 |
-
243 | ERROR | [ ] Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6380 |
-
266 | ERROR | [ ] A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6381 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6382 |
-
272 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6383 |
-
272 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6384 |
-
272 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6385 |
-
272 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6386 |
-
272 | ERROR | [ ] Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6387 |
-
272 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6388 |
-
272 | ERROR | [ ] Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6389 |
-
292 | ERROR | [ ] Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6390 |
-
292 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6391 |
-
292 | ERROR | [ ] Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6392 |
-
292 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6393 |
-
292 | ERROR | [ ] Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6394 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6395 |
-
PHPCBF CAN FIX THE 4 MARKED SNIFF VIOLATIONS AUTOMATICALLY
|
6396 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6397 |
-
|
6398 |
-
|
6399 |
-
FILE: classes/fields/file.php
|
6400 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6401 |
-
FOUND 44 ERRORS AND 1 WARNING AFFECTING 18 LINES
|
6402 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6403 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_File". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6404 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6405 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6406 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6407 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6408 |
-
180 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6409 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6410 |
-
228 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6411 |
-
237 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6412 |
-
237 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6413 |
-
237 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6414 |
-
237 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6415 |
-
237 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6416 |
-
269 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6417 |
-
269 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6418 |
-
269 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6419 |
-
269 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6420 |
-
269 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6421 |
-
324 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6422 |
-
324 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6423 |
-
506 | ERROR | Doc comment for parameter "$attributes" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6424 |
-
506 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6425 |
-
518 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6426 |
-
576 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6427 |
-
576 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6428 |
-
576 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6429 |
-
576 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6430 |
-
576 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6431 |
-
576 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6432 |
-
576 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6433 |
-
587 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6434 |
-
587 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6435 |
-
587 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6436 |
-
587 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6437 |
-
587 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6438 |
-
587 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6439 |
-
587 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6440 |
-
642 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6441 |
-
642 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6442 |
-
642 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6443 |
-
642 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6444 |
-
642 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6445 |
-
642 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6446 |
-
944 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
6447 |
-
1016 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6448 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6449 |
-
1118 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6450 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6451 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6452 |
-
|
6453 |
-
|
6454 |
-
FILE: classes/fields/slug.php
|
6455 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6456 |
-
FOUND 18 ERRORS AFFECTING 8 LINES
|
6457 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6458 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Slug". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6459 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6460 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6461 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6462 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6463 |
-
60 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6464 |
-
70 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6465 |
-
70 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6466 |
-
70 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6467 |
-
70 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6468 |
-
70 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6469 |
-
101 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6470 |
-
101 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6471 |
-
101 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6472 |
-
101 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6473 |
-
101 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6474 |
-
101 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6475 |
-
101 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6476 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6477 |
-
|
6478 |
-
|
6479 |
-
FILE: classes/fields/pick.php
|
6480 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6481 |
-
FOUND 378 ERRORS AND 3 WARNINGS AFFECTING 350 LINES
|
6482 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6483 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Pick". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6484 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6485 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6486 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6487 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6488 |
-
681 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6489 |
-
698 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6490 |
-
698 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6491 |
-
698 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6492 |
-
698 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6493 |
-
698 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6494 |
-
731 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6495 |
-
731 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6496 |
-
731 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6497 |
-
731 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6498 |
-
731 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6499 |
-
760 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6500 |
-
760 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6501 |
-
895 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
6502 |
-
916 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6503 |
-
1025 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6504 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6505 |
-
1026 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6506 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6507 |
-
1053 | ERROR | Doc comment for parameter "$args" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6508 |
-
1326 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6509 |
-
1326 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6510 |
-
1326 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6511 |
-
1326 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6512 |
-
1326 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6513 |
-
1326 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6514 |
-
1326 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6515 |
-
1411 | ERROR | A gettext call containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
|
6516 |
-
| | (WordPress.WP.I18n.MissingTranslatorsComment)
|
6517 |
-
1451 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6518 |
-
1451 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6519 |
-
1451 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6520 |
-
1451 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6521 |
-
1451 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6522 |
-
1451 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6523 |
-
1451 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6524 |
-
1602 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6525 |
-
1602 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6526 |
-
1602 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6527 |
-
1602 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6528 |
-
1602 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6529 |
-
1602 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6530 |
-
1613 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6531 |
-
1613 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6532 |
-
1613 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6533 |
-
1613 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6534 |
-
1613 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6535 |
-
1613 | ERROR | Doc comment for parameter "$in_form" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6536 |
-
1679 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
6537 |
-
2417 | WARNING | Silencing errors is discouraged (Generic.PHP.NoSilencedErrors.Discouraged)
|
6538 |
-
2658 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "members_get_capabilities". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6539 |
-
2719 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6540 |
-
2720 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6541 |
-
2721 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6542 |
-
2722 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6543 |
-
2723 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6544 |
-
2724 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6545 |
-
2725 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6546 |
-
2726 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6547 |
-
2727 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6548 |
-
2728 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6549 |
-
2729 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6550 |
-
2730 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6551 |
-
2731 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6552 |
-
2732 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6553 |
-
2733 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6554 |
-
2734 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6555 |
-
2735 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6556 |
-
2736 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6557 |
-
2737 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6558 |
-
2738 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6559 |
-
2739 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6560 |
-
2740 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6561 |
-
2741 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6562 |
-
2742 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6563 |
-
2743 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6564 |
-
2744 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6565 |
-
2745 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6566 |
-
2746 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6567 |
-
2747 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6568 |
-
2748 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6569 |
-
2749 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6570 |
-
2750 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6571 |
-
2751 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6572 |
-
2752 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6573 |
-
2753 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6574 |
-
2754 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6575 |
-
2755 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6576 |
-
2756 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6577 |
-
2757 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6578 |
-
2758 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6579 |
-
2759 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6580 |
-
2760 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6581 |
-
2761 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6582 |
-
2762 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6583 |
-
2763 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6584 |
-
2764 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6585 |
-
2765 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6586 |
-
2766 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6587 |
-
2767 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6588 |
-
2768 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6589 |
-
2769 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6590 |
-
2770 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6591 |
-
2771 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6592 |
-
2772 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6593 |
-
2773 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6594 |
-
2774 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6595 |
-
2775 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6596 |
-
2776 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6597 |
-
2777 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6598 |
-
2778 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6599 |
-
2779 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6600 |
-
2780 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6601 |
-
2781 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6602 |
-
2782 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6603 |
-
2783 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6604 |
-
2784 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6605 |
-
2785 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6606 |
-
2786 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6607 |
-
2787 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6608 |
-
2788 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6609 |
-
2789 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6610 |
-
2790 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6611 |
-
2791 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6612 |
-
2792 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6613 |
-
2793 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6614 |
-
2794 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6615 |
-
2795 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6616 |
-
2796 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6617 |
-
2797 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6618 |
-
2798 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6619 |
-
2799 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6620 |
-
2800 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6621 |
-
2801 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6622 |
-
2802 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6623 |
-
2803 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6624 |
-
2804 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6625 |
-
2805 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6626 |
-
2806 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6627 |
-
2807 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6628 |
-
2808 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6629 |
-
2809 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6630 |
-
2810 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6631 |
-
2811 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6632 |
-
2812 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6633 |
-
2813 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6634 |
-
2814 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6635 |
-
2815 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6636 |
-
2816 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6637 |
-
2817 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6638 |
-
2818 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6639 |
-
2819 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6640 |
-
2820 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6641 |
-
2821 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6642 |
-
2822 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6643 |
-
2823 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6644 |
-
2824 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6645 |
-
2825 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6646 |
-
2826 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6647 |
-
2827 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6648 |
-
2828 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6649 |
-
2829 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6650 |
-
2830 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6651 |
-
2831 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6652 |
-
2832 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6653 |
-
2833 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6654 |
-
2834 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6655 |
-
2835 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6656 |
-
2836 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6657 |
-
2837 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6658 |
-
2838 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6659 |
-
2839 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6660 |
-
2840 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6661 |
-
2841 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6662 |
-
2842 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6663 |
-
2843 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6664 |
-
2844 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6665 |
-
2845 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6666 |
-
2846 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6667 |
-
2847 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6668 |
-
2848 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6669 |
-
2849 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6670 |
-
2850 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6671 |
-
2851 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6672 |
-
2852 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6673 |
-
2853 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6674 |
-
2854 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6675 |
-
2855 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6676 |
-
2856 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6677 |
-
2857 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6678 |
-
2858 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6679 |
-
2859 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6680 |
-
2860 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6681 |
-
2861 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6682 |
-
2862 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6683 |
-
2863 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6684 |
-
2864 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6685 |
-
2865 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6686 |
-
2866 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6687 |
-
2867 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6688 |
-
2868 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6689 |
-
2869 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6690 |
-
2870 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6691 |
-
2871 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6692 |
-
2872 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6693 |
-
2873 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6694 |
-
2874 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6695 |
-
2875 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6696 |
-
2876 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6697 |
-
2877 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6698 |
-
2878 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6699 |
-
2879 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6700 |
-
2880 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6701 |
-
2881 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6702 |
-
2882 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6703 |
-
2883 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6704 |
-
2884 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6705 |
-
2885 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6706 |
-
2886 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6707 |
-
2887 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6708 |
-
2888 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6709 |
-
2889 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6710 |
-
2890 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6711 |
-
2891 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6712 |
-
2892 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6713 |
-
2893 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6714 |
-
2894 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6715 |
-
2895 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6716 |
-
2896 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6717 |
-
2897 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6718 |
-
2898 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6719 |
-
2899 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6720 |
-
2900 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6721 |
-
2901 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6722 |
-
2902 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6723 |
-
2903 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6724 |
-
2904 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6725 |
-
2905 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6726 |
-
2906 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6727 |
-
2907 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6728 |
-
2908 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6729 |
-
2909 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6730 |
-
2910 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6731 |
-
2911 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6732 |
-
2912 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6733 |
-
2913 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6734 |
-
2914 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6735 |
-
2915 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6736 |
-
2916 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6737 |
-
2917 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6738 |
-
2918 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6739 |
-
2919 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6740 |
-
2920 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6741 |
-
2921 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6742 |
-
2922 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6743 |
-
2923 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6744 |
-
2924 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6745 |
-
2925 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6746 |
-
2926 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6747 |
-
2927 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6748 |
-
2928 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6749 |
-
2929 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6750 |
-
2930 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6751 |
-
2931 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6752 |
-
2932 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6753 |
-
2933 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6754 |
-
2934 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6755 |
-
2935 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6756 |
-
2936 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6757 |
-
2937 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6758 |
-
2938 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6759 |
-
2939 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6760 |
-
2940 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6761 |
-
2941 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6762 |
-
2942 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6763 |
-
2943 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6764 |
-
2944 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6765 |
-
2945 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6766 |
-
2946 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6767 |
-
2947 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6768 |
-
2948 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6769 |
-
2949 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6770 |
-
2950 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6771 |
-
2951 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6772 |
-
2952 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6773 |
-
2953 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6774 |
-
2954 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6775 |
-
2955 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6776 |
-
2956 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6777 |
-
2957 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6778 |
-
2958 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6779 |
-
2959 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6780 |
-
2960 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6781 |
-
2961 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6782 |
-
2962 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6783 |
-
2963 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6784 |
-
2964 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6785 |
-
2965 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6786 |
-
2966 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6787 |
-
2967 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6788 |
-
2968 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6789 |
-
2969 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6790 |
-
2970 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6791 |
-
2971 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6792 |
-
2972 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6793 |
-
2973 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6794 |
-
2974 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6795 |
-
2975 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6796 |
-
2976 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6797 |
-
2977 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6798 |
-
2978 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6799 |
-
2979 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6800 |
-
2980 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6801 |
-
2981 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6802 |
-
2982 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6803 |
-
3005 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6804 |
-
3006 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6805 |
-
3007 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6806 |
-
3008 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6807 |
-
3009 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6808 |
-
3010 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6809 |
-
3011 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6810 |
-
3012 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6811 |
-
3013 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6812 |
-
3014 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6813 |
-
3015 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6814 |
-
3016 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6815 |
-
3017 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6816 |
-
3018 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6817 |
-
3019 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6818 |
-
3020 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6819 |
-
3021 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6820 |
-
3022 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6821 |
-
3023 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6822 |
-
3024 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6823 |
-
3025 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6824 |
-
3026 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6825 |
-
3027 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6826 |
-
3028 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6827 |
-
3029 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6828 |
-
3030 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6829 |
-
3031 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6830 |
-
3032 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6831 |
-
3033 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6832 |
-
3034 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6833 |
-
3035 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6834 |
-
3036 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6835 |
-
3037 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6836 |
-
3038 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6837 |
-
3039 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6838 |
-
3040 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6839 |
-
3041 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6840 |
-
3042 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6841 |
-
3043 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6842 |
-
3044 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6843 |
-
3045 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6844 |
-
3046 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6845 |
-
3047 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6846 |
-
3048 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6847 |
-
3049 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6848 |
-
3050 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6849 |
-
3051 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6850 |
-
3052 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6851 |
-
3053 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6852 |
-
3054 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6853 |
-
3055 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6854 |
-
3078 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6855 |
-
3079 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6856 |
-
3080 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6857 |
-
3081 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6858 |
-
3082 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6859 |
-
3083 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6860 |
-
3084 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6861 |
-
3085 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6862 |
-
3086 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6863 |
-
3087 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6864 |
-
3088 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6865 |
-
3089 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6866 |
-
3090 | ERROR | Missing $domain arg. (WordPress.WP.I18n.MissingArgDomain)
|
6867 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6868 |
-
|
6869 |
-
|
6870 |
-
FILE: classes/fields/text.php
|
6871 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6872 |
-
FOUND 36 ERRORS AFFECTING 11 LINES
|
6873 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6874 |
-
6 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsField_Text". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6875 |
-
10 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6876 |
-
15 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6877 |
-
20 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6878 |
-
25 | ERROR | Missing @var tag in member variable comment (Squiz.Commenting.VariableComment.MissingVar)
|
6879 |
-
94 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6880 |
-
110 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6881 |
-
110 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6882 |
-
110 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6883 |
-
110 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6884 |
-
110 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6885 |
-
124 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6886 |
-
124 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6887 |
-
124 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6888 |
-
124 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6889 |
-
124 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6890 |
-
151 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6891 |
-
151 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6892 |
-
151 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6893 |
-
151 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6894 |
-
151 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6895 |
-
151 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6896 |
-
151 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6897 |
-
177 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6898 |
-
177 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6899 |
-
177 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6900 |
-
177 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6901 |
-
177 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6902 |
-
177 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6903 |
-
177 | ERROR | Doc comment for parameter "$params" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6904 |
-
193 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6905 |
-
193 | ERROR | Doc comment for parameter "$value" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6906 |
-
193 | ERROR | Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6907 |
-
193 | ERROR | Doc comment for parameter "$options" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6908 |
-
193 | ERROR | Doc comment for parameter "$fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6909 |
-
193 | ERROR | Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6910 |
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6911 |
-
|
6912 |
-
|
6913 |
-
FILE: classes/PodsRESTHandlers.php
|
6914 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6915 |
-
FOUND 5 ERRORS AFFECTING 4 LINES
|
6916 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6917 |
-
11 | ERROR | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsRESTHandlers". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6918 |
-
22 | ERROR | Doc comment for parameter "$pod_name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6919 |
-
22 | ERROR | Doc comment for parameter "$id" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6920 |
-
27 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
6921 |
-
28 | ERROR | Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
6922 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6923 |
-
|
6924 |
-
|
6925 |
-
FILE: classes/Pods.php
|
6926 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6927 |
-
FOUND 4 ERRORS AND 1 WARNING AFFECTING 5 LINES
|
6928 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6929 |
-
1240 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_is_translated_post_type".
|
6930 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6931 |
-
1241 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_master_post_from_duplicate".
|
6932 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6933 |
-
1797 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_is_translated_post_type".
|
6934 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6935 |
-
1798 | ERROR | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_master_post_from_duplicate".
|
6936 |
-
| | (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6937 |
-
3733 | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$params['helper']". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound)
|
6938 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6939 |
-
|
6940 |
-
|
6941 |
-
FILE: classes/PodsMeta.php
|
6942 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6943 |
-
FOUND 346 ERRORS AND 127 WARNINGS AFFECTING 415 LINES
|
6944 |
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
6945 |
-
6 | ERROR | [ ] Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "PodsMeta". (WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound)
|
6946 |
-
11 | ERROR | [ ] Scope modifier not specified for member variable "$instance" (Squiz.Scope.MemberVarScope.Missing)
|
6947 |
-
126 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
6948 |
-
129 | ERROR | [ ] Empty line required before block comment (Squiz.Commenting.BlockComment.NoEmptyLineBefore)
|
6949 |
-
130 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6950 |
-
130 | ERROR | [ ] Block comments must start with a capital letter (Squiz.Commenting.BlockComment.NoCapital)
|
6951 |
-
131 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6952 |
-
133 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6953 |
-
134 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6954 |
-
136 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6955 |
-
137 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6956 |
-
138 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6957 |
-
200 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
6958 |
-
241 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
6959 |
-
266 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
6960 |
-
291 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
6961 |
-
297 | ERROR | [x] Block comment text must start on a new line (Squiz.Commenting.BlockComment.NoNewLine)
|
6962 |
-
298 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6963 |
-
299 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6964 |
-
300 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6965 |
-
301 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6966 |
-
302 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6967 |
-
303 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6968 |
-
304 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6969 |
-
305 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
6970 |
-
322 | ERROR | [ ] Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
6971 |
-
332 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
6972 |
-
341 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6973 |
-
342 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6974 |
-
343 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6975 |
-
344 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6976 |
-
345 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6977 |
-
346 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6978 |
-
347 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
6979 |
-
350 | ERROR | [ ] Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6980 |
-
350 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6981 |
-
351 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
6982 |
-
352 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
6983 |
-
360 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6984 |
-
362 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6985 |
-
364 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6986 |
-
396 | ERROR | [ ] Doc comment for parameter "$pod" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6987 |
-
396 | ERROR | [ ] Doc comment for parameter "$field" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
6988 |
-
397 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
6989 |
-
398 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
6990 |
-
414 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6991 |
-
423 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6992 |
-
425 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6993 |
-
427 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
6994 |
-
444 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
6995 |
-
449 | ERROR | [ ] Doc comment is empty (Generic.Commenting.DocComment.Empty)
|
6996 |
-
471 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
6997 |
-
472 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
6998 |
-
494 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
6999 |
-
496 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7000 |
-
498 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7001 |
-
500 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7002 |
-
512 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7003 |
-
519 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7004 |
-
525 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
7005 |
-
546 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7006 |
-
564 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7007 |
-
565 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7008 |
-
566 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7009 |
-
589 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7010 |
-
591 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7011 |
-
593 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7012 |
-
595 | ERROR | [ ] Assignments must be the first block of code on a line (Squiz.PHP.DisallowMultipleAssignments.Found)
|
7013 |
-
607 | ERROR | [ ] The value of a comparison must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedComparison)
|
7014 |
-
607 | ERROR | [x] String "cpachidden" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
7015 |
-
607 | ERROR | [ ] Inline IF statements are not allowed (Squiz.PHP.DisallowInlineIf.Found)
|
7016 |
-
619 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7017 |
-
620 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7018 |
-
621 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7019 |
-
622 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7020 |
-
623 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7021 |
-
624 | ERROR | [x] Array item not aligned correctly; expected 16 spaces but found 20 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7022 |
-
624 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7023 |
-
625 | ERROR | [x] Multi-line function call not indented correctly; expected 12 spaces but found 16 (PEAR.Functions.FunctionCallSignature.Indent)
|
7024 |
-
625 | ERROR | [x] Array closer not aligned correctly; expected 12 space(s) but found 16 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
7025 |
-
645 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7026 |
-
648 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7027 |
-
680 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7028 |
-
689 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
7029 |
-
695 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7030 |
-
703 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7031 |
-
709 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7032 |
-
725 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7033 |
-
749 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7034 |
-
757 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7035 |
-
770 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7036 |
-
780 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7037 |
-
791 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7038 |
-
796 | ERROR | [x] Block comment text must start on a new line (Squiz.Commenting.BlockComment.NoNewLine)
|
7039 |
-
797 | ERROR | [x] Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed)
|
7040 |
-
798 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7041 |
-
808 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7042 |
-
818 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7043 |
-
825 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7044 |
-
833 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7045 |
-
836 | ERROR | [ ] Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7046 |
-
836 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7047 |
-
837 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7048 |
-
838 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7049 |
-
846 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7050 |
-
850 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7051 |
-
852 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7052 |
-
854 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7053 |
-
856 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7054 |
-
860 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7055 |
-
863 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7056 |
-
877 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7057 |
-
888 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7058 |
-
895 | ERROR | [ ] Doc comment for parameter "$type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7059 |
-
895 | ERROR | [ ] Doc comment for parameter "$name" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7060 |
-
895 | ERROR | [ ] Doc comment for parameter "$default_fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7061 |
-
896 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7062 |
-
897 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7063 |
-
898 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7064 |
-
904 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7065 |
-
904 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7066 |
-
907 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7067 |
-
918 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7068 |
-
920 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7069 |
-
922 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7070 |
-
924 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7071 |
-
926 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7072 |
-
933 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7073 |
-
951 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7074 |
-
962 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7075 |
-
985 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7076 |
-
986 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7077 |
-
1005 | ERROR | [ ] Doc comment for parameter "$post_type" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7078 |
-
1006 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7079 |
-
1007 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7080 |
-
1007 | ERROR | [x] Expected 6 spaces after parameter type; 1 found (Squiz.Commenting.FunctionComment.SpacingAfterParamType)
|
7081 |
-
1011 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7082 |
-
1034 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7083 |
-
1050 | ERROR | [x] Array item not aligned correctly; expected 20 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7084 |
-
1051 | ERROR | [x] Array item not aligned correctly; expected 20 spaces but found 24 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7085 |
-
1051 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7086 |
-
1052 | ERROR | [x] Multi-line function call not indented correctly; expected 16 spaces but found 20 (PEAR.Functions.FunctionCallSignature.Indent)
|
7087 |
-
1052 | ERROR | [x] Array closer not aligned correctly; expected 16 space(s) but found 20 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
7088 |
-
1055 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7089 |
-
1067 | ERROR | [x] Additional blank lines found at end of doc comment (Generic.Commenting.DocComment.SpacingAfter)
|
7090 |
-
1073 | ERROR | [ ] Doc comment for parameter "$post" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7091 |
-
1073 | ERROR | [ ] Doc comment for parameter "$metabox" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7092 |
-
1074 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7093 |
-
1075 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7094 |
-
1084 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7095 |
-
1098 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7096 |
-
1100 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7097 |
-
1122 | ERROR | [ ] All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. (WordPress.XSS.EscapeOutput.UnsafePrintingFunction)
|
7098 |
-
1129 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
7099 |
-
1147 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
7100 |
-
1154 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7101 |
-
1157 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7102 |
-
1167 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
7103 |
-
1176 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
7104 |
-
1177 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
7105 |
-
1183 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7106 |
-
1184 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7107 |
-
1194 | ERROR | [ ] All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'PodsForm'. (WordPress.XSS.EscapeOutput.OutputNotEscaped)
|
7108 |
-
1213 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7109 |
-
1214 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7110 |
-
1215 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7111 |
-
1230 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7112 |
-
1231 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7113 |
-
1232 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7114 |
-
1243 | ERROR | [ ] The value of a boolean operation must not be assigned to a variable (Squiz.PHP.DisallowComparisonAssignment.AssignedBool)
|
7115 |
-
1244 | ERROR | [ ] Space found before closing comment; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.SpacingBefore)
|
7116 |
-
1244 | ERROR | [x] Incorrect closing comment; expected "//end if" but found "// false is new item" (Squiz.Commenting.LongConditionClosingComment.Invalid)
|
7117 |
-
1246 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7118 |
-
1247 | ERROR | [x] Array item not aligned correctly; expected 12 spaces but found 16 (WordPress.Arrays.ArrayIndentation.ItemNotAligned)
|
7119 |
-
1247 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7120 |
-
1248 | ERROR | [x] Multi-line function call not indented correctly; expected 8 spaces but found 12 (PEAR.Functions.FunctionCallSignature.Indent)
|
7121 |
-
1248 | ERROR | [x] Array closer not aligned correctly; expected 8 space(s) but found 12 (WordPress.Arrays.ArrayIndentation.CloseBraceNotAligned)
|
7122 |
-
1266 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7123 |
-
1271 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
7124 |
-
1274 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
7125 |
-
1296 | WARNING | [ ] Not using strict comparison for in_array; supply true for third argument. (WordPress.PHP.StrictInArray.MissingTrueStrict)
|
7126 |
-
1321 | ERROR | [x] There must be no blank line following an inline comment (Squiz.Commenting.InlineComment.SpacingAfter)
|
7127 |
-
1351 | ERROR | [x] End comment for long condition not found; expected "//end if" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7128 |
-
1360 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
7129 |
-
1385 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7130 |
-
1386 | ERROR | [ ] Missing parameter comment (Squiz.Commenting.FunctionComment.MissingParamComment)
|
7131 |
-
1405 | ERROR | [ ] Doc comment for parameter "$form_fields" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7132 |
-
1405 | ERROR | [ ] Doc comment for parameter "$post" missing (Squiz.Commenting.FunctionComment.MissingParamTag)
|
7133 |
-
1406 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7134 |
-
1407 | ERROR | [ ] Missing parameter name (Squiz.Commenting.FunctionComment.MissingParamName)
|
7135 |
-
1415 | WARNING | [ ] Found: ==. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7136 |
-
1437 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7137 |
-
1438 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7138 |
-
1440 | WARNING | [ ] Found: !=. Use strict comparisons (=== or !==). (WordPress.PHP.StrictComparisons.LooseComparison)
|
7139 |
-
1457 | ERROR | [x] When a multi-item array uses associative keys, each value should start on a new line. (WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound)
|
7140 |
-
1468 | ERROR | [x] String "<script>PodsDFV.init();</script>" does not require double quotes; use single quotes instead (Squiz.Strings.DoubleQuoteUsage.NotRequired)
|
7141 |
-
1474 | ERROR | [x] Each array item in a multi-line array declaration must end in a comma (WordPress.Arrays.CommaAfterArrayItem.NoComma)
|
7142 |
-
1476 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7143 |
-
1477 | ERROR | [x] End comment for long condition not found; expected "//end foreach" (Squiz.Commenting.LongConditionClosingComment.Missing)
|
7144 |
-
1484 | ERROR | [ ] Doc comment for parameter
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|