CaffGeek/MBACNationals

View on GitHub

Showing 7,504 of 7,504 total issues

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

  function privOptionDefaultThreshold(&$p_options)
  {
    $v_result=1;

    if (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD])
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-pclzip.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 get_bulk_actions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    function get_bulk_actions() {
        $actions = array();

        if ( is_multisite() ) {
            if ( current_user_can( 'remove_users' ) )
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-users-list-table.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 get_sample_permalink has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function get_sample_permalink($id, $title = null, $name = null) {
    $post = &get_post($id);
    if (!$post->ID) {
        return array('', '');
    }
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/post.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 mu_dropdown_languages has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function mu_dropdown_languages( $lang_files = array(), $current = '' ) {
    $flag = false;
    $output = array();

    foreach ( (array) $lang_files as $val ) {
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/ms.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 sync_category_tag_slugs has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function sync_category_tag_slugs( $term, $taxonomy ) {
    if ( global_terms_enabled() && ( $taxonomy == 'category' || $taxonomy == 'post_tag' ) ) {
        if ( is_object( $term ) ) {
            $term->slug = sanitize_title( $term->name );
        } else {
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/ms.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_edit_attachments_query has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function wp_edit_attachments_query( $q = false ) {
    if ( false === $q )
        $q = $_GET;

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

    function get_imported_comments( $bid ) {
        global $wpdb;

        $hashtable = array();

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

function postbox_classes( $id, $page ) {
    if ( isset( $_GET['edit'] ) && $_GET['edit'] == $id )
        return '';
    $current_user = wp_get_current_user();
    if ( $closed = get_user_option('closedpostboxes_'.$page, 0, false ) ) {
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/post.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 inline_edit has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    function inline_edit() {
        $tax = get_taxonomy( $this->screen->taxonomy );

        if ( ! current_user_can( $tax->cap->edit_terms ) )
            return;
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-terms-list-table.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 show_screen_options has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    public function show_screen_options() {
        global $wp_meta_boxes;

        if ( is_bool( $this->_show_screen_options ) )
            return $this->_show_screen_options;
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/screen.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_nav_menu_meta_box_object has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function _wp_nav_menu_meta_box_object( $object = null ) {
    if ( isset( $object->name ) ) {

        if ( 'page' == $object->name ) {
            $object->_default_query = array(
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/nav-menu.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 _search_callback has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    function _search_callback( $theme ) {
        static $term;
        if ( is_null( $term ) )
            $term = wp_unslash( $_REQUEST['s'] );

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 set_pagination_args has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    function set_pagination_args( $args ) {
        $args = wp_parse_args( $args, array(
            'total_items' => 0,
            'total_pages' => 0,
            'per_page' => 0,
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-list-table.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 _readmsg has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    function _readmsg($fnction="_readmsg"){
        if(!$this->_connected) {
            $this->PushError($fnction, 'Connect first');
            return FALSE;
        }
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-ftp-pure.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 wxr_post_taxonomy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function wxr_post_taxonomy() {
    $categories = get_the_category();
    $tags = get_the_tags();
    $the_list = '';
    $filter = 'rss';
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/export.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 get_editable_user_ids has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) {
    global $wpdb;

    $user = new WP_User( $user_id );

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

function media_sideload_image($file, $post_id, $desc = null) {
    if (!empty($file) ) {
        // Download file to temp location
        $tmp = download_url($file);

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

    function after() {

        if ( !empty($this->upgrader->result['destination_name']) &&
            ($theme_info = $this->upgrader->theme_info()) &&
            !empty($theme_info) ) {
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/includes/class-wp-upgrader.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 inline_edit_term_row has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function inline_edit_term_row($type) {

    if ( ! current_user_can( 'manage_categories' ) )
        return;

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

    function delete($file, $recursive = false ) {
        if ( empty($file) )
            return false;
        if ( $this->is_file($file) )
            return @ftp_delete($this->link, $file);

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