CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-includes/post-template.php

Summary

Maintainability
F
1 wk
Test Coverage

File post-template.php has 700 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * WordPress Post Template Functions.
 *
 * Gets content for the current post in the loop.
Severity: Major
Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 day to fix

    Function wp_link_pages has a Cognitive Complexity of 73 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_link_pages($args = '') {
        $defaults = array(
            'before' => '<p>' . __('Pages:'), 'after' => '</p>',
            'link_before' => '', 'link_after' => '',
            'next_or_number' => 'number', 'nextpagelink' => __('Next page'),
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 day 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 get_body_class has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
    Open

    function get_body_class( $class = '' ) {
        global $wp_query, $wpdb, $current_user;
    
        $classes = array();
    
    
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/post-template.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

    Function wp_list_post_revisions has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_list_post_revisions( $post_id = 0, $args = null ) {
        if ( !$post = get_post( $post_id ) )
            return;
    
        $defaults = array( 'parent' => false, 'right' => false, 'left' => false, 'format' => 'list', 'type' => 'all' );
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/post-template.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

    Method get_body_class has 96 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function get_body_class( $class = '' ) {
        global $wp_query, $wpdb, $current_user;
    
        $classes = array();
    
    
    Severity: Major
    Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 3 hrs to fix

      Method wp_list_post_revisions has 85 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function wp_list_post_revisions( $post_id = 0, $args = null ) {
          if ( !$post = get_post( $post_id ) )
              return;
      
          $defaults = array( 'parent' => false, 'right' => false, 'left' => false, 'format' => 'list', 'type' => 'all' );
      Severity: Major
      Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 3 hrs to fix

        Function get_the_content has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

        function get_the_content($more_link_text = null, $stripteaser = 0) {
            global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;
        
            if ( null === $more_link_text )
                $more_link_text = __( '(more...)' );
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 2 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 wp_link_pages has 66 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function wp_link_pages($args = '') {
            $defaults = array(
                'before' => '<p>' . __('Pages:'), 'after' => '</p>',
                'link_before' => '', 'link_after' => '',
                'next_or_number' => 'number', 'nextpagelink' => __('Next page'),
        Severity: Major
        Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 2 hrs to fix

          Function wp_page_menu has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_page_menu( $args = array() ) {
              $defaults = array('sort_column' => 'menu_order, post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => '');
              $args = wp_parse_args( $args, $defaults );
              $args = apply_filters( 'wp_page_menu_args', $args );
          
          
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 2 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

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

          function get_post_class( $class = '', $post_id = null ) {
              $post = get_post($post_id);
          
              $classes = array();
          
          
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/post-template.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 get_attachment_icon has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

          function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
              $id = (int) $id;
              if ( !$post = & get_post($id) )
                  return false;
          
          
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/post-template.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 get_the_content has 38 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function get_the_content($more_link_text = null, $stripteaser = 0) {
              global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;
          
              if ( null === $more_link_text )
                  $more_link_text = __( '(more...)' );
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 hr to fix

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

            function wp_page_menu( $args = array() ) {
                $defaults = array('sort_column' => 'menu_order, post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => '');
                $args = wp_parse_args( $args, $defaults );
                $args = apply_filters( 'wp_page_menu_args', $args );
            
            
            Severity: Minor
            Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 hr to fix

              Method wp_list_pages has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function wp_list_pages($args = '') {
                  $defaults = array(
                      'depth' => 0, 'show_date' => '',
                      'date_format' => get_option('date_format'),
                      'child_of' => 0, 'exclude' => '',
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 hr to fix

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

                function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
                    $id = (int) $id;
                    if ( !$post = & get_post($id) )
                        return false;
                
                
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 hr to fix

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

                  function wp_list_pages($args = '') {
                      $defaults = array(
                          'depth' => 0, 'show_date' => '',
                          'date_format' => get_option('date_format'),
                          'child_of' => 0, 'exclude' => '',
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/post-template.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 get_post_class has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function get_post_class( $class = '', $post_id = null ) {
                      $post = get_post($post_id);
                  
                      $classes = array();
                  
                  
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 1 hr to fix

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

                    function get_the_title( $id = 0 ) {
                        $post = &get_post($id);
                    
                        $title = $post->post_title;
                    
                    
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/post-template.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

                    Method wp_get_attachment_link has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                    function wp_get_attachment_link($id = 0, $size = 'thumbnail', $permalink = false, $icon = false, $text = false) {
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/post-template.php - About 35 mins to fix

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

                      function wp_get_attachment_link($id = 0, $size = 'thumbnail', $permalink = false, $icon = false, $text = false) {
                          $id = intval($id);
                          $_post = & get_post( $id );
                      
                          if ( ('attachment' != $_post->post_type) || !$url = wp_get_attachment_url($_post->ID) )
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.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 the_meta has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                      function the_meta() {
                          if ( $keys = get_post_custom_keys() ) {
                              echo "<ul class='post-meta'>\n";
                              foreach ( (array) $keys as $key ) {
                                  $keyt = trim($key);
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.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 get_attachment_icon_src has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                      function get_attachment_icon_src( $id = 0, $fullsize = false ) {
                          $id = (int) $id;
                          if ( !$post = & get_post($id) )
                              return false;
                      
                      
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.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 wp_post_revision_title has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                      function wp_post_revision_title( $revision, $link = true ) {
                          if ( !$revision = get_post( $revision ) )
                              return $revision;
                      
                          if ( !in_array( $revision->post_type, array( 'post', 'page', 'revision' ) ) )
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.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

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

                      function wp_dropdown_pages($args = '') {
                          $defaults = array(
                              'depth' => 0, 'child_of' => 0,
                              'selected' => 0, 'echo' => 1,
                              'name' => 'page_id', 'show_option_none' => '', 'show_option_no_change' => '',
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.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

                                      if ( $i <= $numpages && $more ) {
                                          if ( 1 == $i ) {
                                              $output .= '<a href="' . get_permalink() . '">' . $link_before. $nextpagelink . $link_after . '</a>';
                                          } else {
                                              if ( '' == get_option('permalink_structure') || in_array($post->post_status, array('draft', 'pending')) )
                      Severity: Major
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.php and 1 other location - About 5 hrs to fix
                      Web.Admin/2014/wordpress/wp-includes/post-template.php on lines 601..610

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

                      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

                                      if ( $i && $more ) {
                                          if ( 1 == $i ) {
                                              $output .= '<a href="' . get_permalink() . '">' . $link_before. $previouspagelink . $link_after . '</a>';
                                          } else {
                                              if ( '' == get_option('permalink_structure') || in_array($post->post_status, array('draft', 'pending')) )
                      Severity: Major
                      Found in Web.Admin/2014/wordpress/wp-includes/post-template.php and 1 other location - About 5 hrs to fix
                      Web.Admin/2014/wordpress/wp-includes/post-template.php on lines 612..621

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

                      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