woocommerce/woocommerce

View on GitHub
includes/abstracts/abstract-wc-settings-api.php

Summary

Maintainability
F
6 days
Test Coverage

File abstract-wc-settings-api.php has 514 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Abstract Settings API Class
 *
 * Admin Settings API used by Integrations, Shipping Methods, and Payment Gateways.
Severity: Major
Found in includes/abstracts/abstract-wc-settings-api.php - About 1 day to fix

    WC_Settings_API has 42 functions (exceeds 20 allowed). Consider refactoring.
    Open

    abstract class WC_Settings_API {
    
        /**
         * The plugin ID. Used for option names.
         *
    Severity: Minor
    Found in includes/abstracts/abstract-wc-settings-api.php - About 5 hrs to fix

      Method generate_multiselect_html has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function generate_multiselect_html( $key, $data ) {
              $field_key = $this->get_field_key( $key );
              $defaults  = array(
                  'title'             => '',
                  'disabled'          => false,
      Severity: Minor
      Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

        Method generate_select_html has 34 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function generate_select_html( $key, $data ) {
                $field_key = $this->get_field_key( $key );
                $defaults  = array(
                    'title'             => '',
                    'disabled'          => false,
        Severity: Minor
        Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

          Method generate_checkbox_html has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function generate_checkbox_html( $key, $data ) {
                  $field_key = $this->get_field_key( $key );
                  $defaults  = array(
                      'title'             => '',
                      'label'             => '',
          Severity: Minor
          Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

            Method generate_color_html has 30 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function generate_color_html( $key, $data ) {
                    $field_key = $this->get_field_key( $key );
                    $defaults  = array(
                        'title'             => '',
                        'disabled'          => false,
            Severity: Minor
            Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

              Method generate_price_html has 29 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function generate_price_html( $key, $data ) {
                      $field_key = $this->get_field_key( $key );
                      $defaults  = array(
                          'title'             => '',
                          'disabled'          => false,
              Severity: Minor
              Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

                Method generate_decimal_html has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function generate_decimal_html( $key, $data ) {
                        $field_key = $this->get_field_key( $key );
                        $defaults  = array(
                            'title'             => '',
                            'disabled'          => false,
                Severity: Minor
                Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

                  Method generate_textarea_html has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function generate_textarea_html( $key, $data ) {
                          $field_key = $this->get_field_key( $key );
                          $defaults  = array(
                              'title'             => '',
                              'disabled'          => false,
                  Severity: Minor
                  Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

                    Method generate_text_html has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function generate_text_html( $key, $data ) {
                            $field_key = $this->get_field_key( $key );
                            $defaults  = array(
                                'title'             => '',
                                'disabled'          => false,
                    Severity: Minor
                    Found in includes/abstracts/abstract-wc-settings-api.php - About 1 hr to fix

                      Function generate_multiselect_html has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function generate_multiselect_html( $key, $data ) {
                              $field_key = $this->get_field_key( $key );
                              $defaults  = array(
                                  'title'             => '',
                                  'disabled'          => false,
                      Severity: Minor
                      Found in includes/abstracts/abstract-wc-settings-api.php - About 45 mins to fix

                      Cognitive Complexity

                      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                      A method's cognitive complexity is based on a few simple rules:

                      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                      • Code is considered more complex for each "break in the linear flow of the code"
                      • Code is considered more complex when "flow breaking structures are nested"

                      Further reading

                      Function generate_settings_html has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function generate_settings_html( $form_fields = array(), $echo = true ) {
                              if ( empty( $form_fields ) ) {
                                  $form_fields = $this->get_form_fields();
                              }
                      
                      
                      Severity: Minor
                      Found in includes/abstracts/abstract-wc-settings-api.php - About 35 mins to fix

                      Cognitive Complexity

                      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                      A method's cognitive complexity is based on a few simple rules:

                      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                      • Code is considered more complex for each "break in the linear flow of the code"
                      • Code is considered more complex when "flow breaking structures are nested"

                      Further reading

                      Function process_admin_options has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function process_admin_options() {
                              $this->init_settings();
                      
                              $post_data = $this->get_post_data();
                      
                      
                      Severity: Minor
                      Found in includes/abstracts/abstract-wc-settings-api.php - About 25 mins to fix

                      Cognitive Complexity

                      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                      A method's cognitive complexity is based on a few simple rules:

                      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                      • Code is considered more complex for each "break in the linear flow of the code"
                      • Code is considered more complex when "flow breaking structures are nested"

                      Further reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                          public function generate_decimal_html( $key, $data ) {
                              $field_key = $this->get_field_key( $key );
                              $defaults  = array(
                                  'title'             => '',
                                  'disabled'          => false,
                      Severity: Major
                      Found in includes/abstracts/abstract-wc-settings-api.php and 1 other location - About 1 day to fix
                      includes/abstracts/abstract-wc-settings-api.php on lines 449..482

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 303.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                          public function generate_price_html( $key, $data ) {
                              $field_key = $this->get_field_key( $key );
                              $defaults  = array(
                                  'title'             => '',
                                  'disabled'          => false,
                      Severity: Major
                      Found in includes/abstracts/abstract-wc-settings-api.php and 1 other location - About 1 day to fix
                      includes/abstracts/abstract-wc-settings-api.php on lines 492..525

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 303.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                          public function validate_textarea_field( $key, $value ) {
                              $value = is_null( $value ) ? '' : $value;
                              return wp_kses(
                                  trim( stripslashes( $value ) ),
                                  array_merge(
                      Severity: Major
                      Found in includes/abstracts/abstract-wc-settings-api.php and 1 other location - About 1 hr to fix
                      includes/rest-api/Controllers/Version3/class-wc-rest-controller.php on lines 442..458

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 115.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                          public function init_settings() {
                              $this->settings = get_option( $this->get_option_key(), null );
                      
                              // If there are no settings defined, use defaults.
                              if ( ! is_array( $this->settings ) ) {
                      Severity: Major
                      Found in includes/abstracts/abstract-wc-settings-api.php and 1 other location - About 1 hr to fix
                      includes/abstracts/abstract-wc-shipping-method.php on lines 525..533

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 101.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      There are no issues that match your filters.

                      Category
                      Status