CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-admin/network.php

Summary

Maintainability
F
4 days
Test Coverage

Method network_step2 has 184 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function network_step2( $errors = false ) {
    global $wpdb;

    $hostname          = get_clean_basedomain();
    $slashed_home      = trailingslashit( get_option( 'home' ) );
Severity: Major
Found in Web.Admin/2014/wordpress/wp-admin/network.php - About 7 hrs to fix

    File network.php has 440 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Network installation administration panel.
     *
     * A multi-step process allowing the user to enable a network of WordPress sites.
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-admin/network.php - About 6 hrs to fix

      Function network_step2 has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
      Open

      function network_step2( $errors = false ) {
          global $wpdb;
      
          $hostname          = get_clean_basedomain();
          $slashed_home      = trailingslashit( get_option( 'home' ) );
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/network.php - About 6 hrs 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 network_step1 has 146 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function network_step1( $errors = false ) {
          global $is_apache;
      
          if ( defined('DO_NOT_UPGRADE_GLOBAL_TABLES') ) {
              echo '<div class="error"><p><strong>' . __('ERROR:') . '</strong> ' . __( 'The constant DO_NOT_UPGRADE_GLOBAL_TABLES cannot be defined when creating a network.' ) . '</p></div>';
      Severity: Major
      Found in Web.Admin/2014/wordpress/wp-admin/network.php - About 5 hrs to fix

        Function network_step1 has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
        Open

        function network_step1( $errors = false ) {
            global $is_apache;
        
            if ( defined('DO_NOT_UPGRADE_GLOBAL_TABLES') ) {
                echo '<div class="error"><p><strong>' . __('ERROR:') . '</strong> ' . __( 'The constant DO_NOT_UPGRADE_GLOBAL_TABLES cannot be defined when creating a network.' ) . '</p></div>';
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-admin/network.php - About 4 hrs 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

        $network_help = '<p>' . __('This screen allows you to configure a network as having subdomains (<code>site1.example.com</code>) or subdirectories (<code>example.com/site1</code>). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.') . '</p>' .
            '<p>' . __('Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your install. Fill out the network details, and click install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).') . '</p>' .
            '<p>' . __('The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.') . '</p>' .
            '<p>' . __('Add the designated lines of code to wp-config.php (just before <code>/*...stop editing...*/</code>) and <code>.htaccess</code> (replacing the existing WordPress rules).') . '</p>' .
            '<p>' . __('Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.') . '</p>' .
        Severity: Major
        Found in Web.Admin/2014/wordpress/wp-admin/network.php and 1 other location - About 4 hrs to fix
        Web.Admin/2014/wordpress/wp-admin/network/sites.php on lines 31..39

        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 168.

        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