CaffGeek/MBACNationals

View on GitHub

Showing 7,504 of 7,504 total issues

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

  function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p_options)
  {
    $v_result=PCLZIP_ERR_NO_ERROR;

    // ----- Working variable
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-pclzip.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_edit_posts_query has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function wp_edit_posts_query( $q = false ) {
    if ( false === $q )
        $q = $_GET;
    $q['m']   = isset($q['m']) ? (int) $q['m'] : 0;
    $q['cat'] = isset($q['cat']) ? (int) $q['cat'] : 0;
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/post.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 get_views has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    function get_views() {
        global $wp_roles, $role;

        if ( $this->is_site_users ) {
            $url = 'site-users.php?id=' . $this->site_id;
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-users-list-table.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 _fix_attachment_links has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function _fix_attachment_links( $post_ID ) {
    global $_fix_attachment_link_id;

    $post = & get_post( $post_ID, ARRAY_A );

Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/post.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_create_categories has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function wp_create_categories($categories, $post_id = '') {
    $cat_ids = array ();
    foreach ($categories as $category) {
        if ($id = category_exists($category))
            $cat_ids[] = $id;
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/taxonomy.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 avoid_blog_page_permalink_collision has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function avoid_blog_page_permalink_collision( $data, $postarr ) {
    if ( is_subdomain_install() )
        return $data;
    if ( $data['post_type'] != 'page' )
        return $data;
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/ms.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 check_upload_size has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function check_upload_size( $file ) {
    if ( get_site_option( 'upload_space_check_disabled' ) )
        return $file;

    if ( $file['error'] != '0' ) // there's already an error
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/ms.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 pagination has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    function pagination( $which ) {
        if ( empty( $this->_pagination_args ) )
            return;

        extract( $this->_pagination_args, EXTR_SKIP );
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-list-table.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 chmod has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    function chmod($file, $mode = false, $recursive = false) {
        if ( ! $this->exists($file) )
            return false;

        if ( ! $mode ) {
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-filesystem-ssh2.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 run has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    function run($options) {

        $defaults = array(     'package' => '', //Please always pass this.
                            'destination' => '', //And this
                            'clear_destination' => false,
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-upgrader.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 prepare_query has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    function prepare_query() {
        global $wpdb;
        $this->first_user = ($this->page - 1) * $this->users_per_page;
        $this->query_limit = $wpdb->prepare(" LIMIT %d, %d", $this->first_user, $this->users_per_page);
        $this->query_sort = ' ORDER BY user_login';
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/user.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

Avoid deeply nested control flow statements.
Open

                    if ( $file == '.' || $file == '..' )
                        continue;
Severity: Major
Found in Web.Admin/2014/wordpress/wp-admin/includes/ms.php - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                        else if ( @is_file( $dir . DIRECTORY_SEPARATOR . $file ) )
                            @unlink( $dir . DIRECTORY_SEPARATOR . $file );
    Severity: Major
    Found in Web.Admin/2014/wordpress/wp-admin/includes/ms.php - About 45 mins to fix

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

          function get_columns() {
              $posts_columns = array();
              $posts_columns['cb'] = '<input type="checkbox" />';
              $posts_columns['icon'] = '';
              /* translators: column name */
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-media-list-table.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 maybe_add_column has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      function maybe_add_column($table_name, $column_name, $create_ddl) {
          global $wpdb, $debug;
          foreach ($wpdb->get_col("DESC $table_name", 0) as $column ) {
              if ($debug) echo("checking $column == $column_name<br />");
              if ($column == $column_name) {
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/includes/upgrade.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 _list_meta_row has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      function _list_meta_row( $entry, &$count ) {
          static $update_nonce = false;
          if ( !$update_nonce )
              $update_nonce = wp_create_nonce( 'add-meta' );
      
      
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/includes/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

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

          function dirlist($remote) {
              $list=$this->rawlist($remote, "-la");
              if($list===false) {
                  $this->PushError("dirlist","can't read remote folder list", "Can't read remote folder \"".$remote."\" contents");
                  return false;
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/includes/class-ftp.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 _page_rows has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      function _page_rows( &$children_pages, &$count, $parent, $level, $pagenum, $per_page ) {
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/includes/template.php - About 45 mins to fix

        Method add_settings_field has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        function add_settings_field($id, $title, $callback, $page, $section = 'default', $args = array()) {
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-admin/includes/template.php - About 45 mins to fix

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

          function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = array() ) {
              $loading = '<p class="widget-loading">' . __( 'Loading&#8230;' ) . '</p>';
          
              if ( empty($check_urls) ) {
                  $widgets = get_option( 'dashboard_widget_options' );
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-admin/includes/dashboard.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

          Severity
          Category
          Status
          Source
          Language