CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-includes/script-loader.php

Summary

Maintainability
D
2 days
Test Coverage

Method wp_default_scripts has 268 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function wp_default_scripts( &$scripts ) {

    if ( !$guessurl = site_url() )
        $guessurl = wp_guess_url();

Severity: Major
Found in Web.Admin/2014/wordpress/wp-includes/script-loader.php - About 1 day to fix

    File script-loader.php has 464 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * WordPress scripts and styles default loader.
     *
     * Most of the functionality that existed here was moved to
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/script-loader.php - About 7 hrs to fix

      Function script_concat_settings has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

      function script_concat_settings() {
          global $concatenate_scripts, $compress_scripts, $compress_css;
      
          $compressed_output = ( ini_get('zlib.output_compression') || 'ob_gzhandler' == ini_get('output_handler') );
      
      
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/script-loader.php - About 1 hr 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

      Method wp_default_styles has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function wp_default_styles( &$styles ) {
          // This checks to see if site_url() returns something and if it does not
          // then it assigns $guess_url to wp_guess_url(). Strange format, but it works.
          if ( ! $guessurl = site_url() )
              $guessurl = wp_guess_url();
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/script-loader.php - About 1 hr to fix

        Function wp_style_loader_src has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        function wp_style_loader_src( $src, $handle ) {
            if ( defined('WP_INSTALLING') )
                return preg_replace( '#^wp-admin/#', './', $src );
        
            if ( 'colors' == $handle || 'colors-rtl' == $handle ) {
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/script-loader.php - About 1 hr 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 print_admin_styles has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        function print_admin_styles() {
            global $wp_styles, $concatenate_scripts, $compress_css;
        
            if ( !is_a($wp_styles, 'WP_Styles') )
                $wp_styles = new WP_Styles();
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/script-loader.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 wp_default_scripts has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        function wp_default_scripts( &$scripts ) {
        
            if ( !$guessurl = site_url() )
                $guessurl = wp_guess_url();
        
        
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/script-loader.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 _print_scripts has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function _print_scripts() {
            global $wp_scripts, $compress_scripts;
        
            $zip = $compress_scripts ? 1 : 0;
            if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP )
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/script-loader.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

        There are no issues that match your filters.

        Category
        Status