Remzi1993/jquery-manager

View on GitHub

Showing 532 of 532 total issues

File jquery-manager.php has 495 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 * The plugin bootstrap file
 *
Severity: Minor
Found in jquery-manager.php - About 7 hrs to fix

Function wp_jquery_manager_plugin_front_end_scripts has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

function wp_jquery_manager_plugin_front_end_scripts() {
    $wp_admin = is_admin();
    $wp_customizer = is_customize_preview();

    $jquery_options = $GLOBALS['wp_jquery_manager_plugin_jquery_settings'];
Severity: Minor
Found in jquery-manager.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 wp_jquery_manager_plugin_front_end_scripts has 133 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function wp_jquery_manager_plugin_front_end_scripts() {
    $wp_admin = is_admin();
    $wp_customizer = is_customize_preview();

    $jquery_options = $GLOBALS['wp_jquery_manager_plugin_jquery_settings'];
Severity: Major
Found in jquery-manager.php - About 5 hrs to fix

Function plugin_settings_page has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
Open

        public function plugin_settings_page() {
            $jquery_options = $GLOBALS['wp_jquery_manager_plugin_jquery_settings'];
            $jquery_migrate_options = $GLOBALS['wp_jquery_manager_plugin_jquery_migrate_settings'];

            // Get jQuery version
Severity: Minor
Found in jquery-manager.php - About 5 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

    if ( isset( $jquery_options['jquery_version'] ) ) {
        switch ( $jquery_options['jquery_version'] ) {
            case 'jquery_3x_min':
                $jquery_version = WP_JQUERY_MANAGER_PLUGIN_JQUERY_3X . '.min.js';
                break;
Severity: Major
Found in jquery-manager.php and 1 other location - About 4 hrs to fix
jquery-manager.php on lines 296..323

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

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 ( isset( $jquery_options['jquery_version'] ) ) {
                switch ( $jquery_options['jquery_version'] ) {
                    case 'jquery_3x_min':
                        $jquery_version = WP_JQUERY_MANAGER_PLUGIN_JQUERY_3X . '.min.js';
                        break;
Severity: Major
Found in jquery-manager.php and 1 other location - About 4 hrs to fix
jquery-manager.php on lines 421..448

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

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

Method get_settings_fields has 99 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public function get_settings_fields() {
            $jquery_3x = WP_JQUERY_MANAGER_PLUGIN_JQUERY_3X;
            $jquery_3x_slim = WP_JQUERY_MANAGER_PLUGIN_JQUERY_3X_SLIM;
            $jquery_2x = WP_JQUERY_MANAGER_PLUGIN_JQUERY_2X;
            $jquery_1x = WP_JQUERY_MANAGER_PLUGIN_JQUERY_1X;
Severity: Major
Found in jquery-manager.php - About 3 hrs to fix

Method plugin_settings_page has 82 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public function plugin_settings_page() {
            $jquery_options = $GLOBALS['wp_jquery_manager_plugin_jquery_settings'];
            $jquery_migrate_options = $GLOBALS['wp_jquery_manager_plugin_jquery_migrate_settings'];

            // Get jQuery version
Severity: Major
Found in jquery-manager.php - About 3 hrs to fix

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

function wp_jquery_manager_plugin_add_attribute( $tag, $handle ) {
    if ( is_admin() || is_customize_preview() ) {
        return $tag;
    }
    elseif ( !isset( $jquery_options['jquery_execution'] ) && !isset( $jquery_migrate_options['jquery_migrate_execution'] ) ) { // No settings, default. Exit and stop wasting time :)
Severity: Minor
Found in jquery-manager.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_jquery_manager_plugin_add_attribute has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function wp_jquery_manager_plugin_add_attribute( $tag, $handle ) {
    if ( is_admin() || is_customize_preview() ) {
        return $tag;
    }
    elseif ( !isset( $jquery_options['jquery_execution'] ) && !isset( $jquery_migrate_options['jquery_migrate_execution'] ) ) { // No settings, default. Exit and stop wasting time :)
Severity: Minor
Found in jquery-manager.php - About 1 hr to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Open

            if ( isset( $jquery_migrate_options['jquery_migrate_version'] ) ) {
                switch ( $jquery_migrate_options['jquery_migrate_version'] ) {
                    case 'jquery_migrate_3x':
                        $jquery_migrate_version = WP_JQUERY_MANAGER_PLUGIN_JQUERY_MIGRATE_3X . '.js';
                        break;
Severity: Minor
Found in jquery-manager.php and 1 other location - About 45 mins to fix
jquery-manager.php on lines 451..466

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

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 ( isset( $jquery_migrate_options['jquery_migrate_version'] ) ) {
        switch ( $jquery_migrate_options['jquery_migrate_version'] ) {
            case 'jquery_migrate_3x':
                $jquery_migrate_version = WP_JQUERY_MANAGER_PLUGIN_JQUERY_MIGRATE_3X . '.js';
                break;
Severity: Minor
Found in jquery-manager.php and 1 other location - About 45 mins to fix
jquery-manager.php on lines 326..341

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

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

Avoid too many return statements within this method.
Open

                    return str_replace( "src", "defer src", $tag );
Severity: Major
Found in jquery-manager.php - About 30 mins to fix

Avoid too many return statements within this method.
Open

                    return str_replace( "src", "async src", $tag );
Severity: Major
Found in jquery-manager.php - About 30 mins to fix

Avoid too many return statements within this method.
Open

    return $tag;
Severity: Major
Found in jquery-manager.php - About 30 mins to fix

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

        public function get_pages() {
            $pages = get_pages();
            $pages_options = array();
            if ( $pages ) {
                foreach ($pages as $page) {
Severity: Minor
Found in jquery-manager.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

Expected an indentation at 8 instead of at 6.
Open

      conditional: yes
Severity: Minor
Found in codecov.yml by editorconfig

Expected an indentation at 4 instead of at 2.
Open

  We would appreciate it if you could provide us with more info about this issue/pr!
Severity: Minor
Found in .github/config.yml by editorconfig

Expected an indentation at 4 instead of at 2.
Open

  - package-ecosystem: "composer"
Severity: Minor
Found in .github/dependabot.yml by editorconfig

Expected an indentation at 4 instead of at 2.
Open

  to take action. Please reach out if you have or find the answers we need so
Severity: Minor
Found in .github/no-response.yml by editorconfig
Severity
Category
Status
Source
Language