gocodebox/lifterlms

View on GitHub
includes/class.llms.template.loader.php

Summary

Maintainability
D
1 day
Test Coverage
F
44%

File class.llms.template.loader.php has 299 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Template loader
 *
 * @package LifterLMS/Classes
Severity: Minor
Found in includes/class.llms.template.loader.php - About 3 hrs to fix

    Function maybe_restrict_post_content has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        public function maybe_restrict_post_content( $post, $query ) {
            /**
             * Filters the post types that must be skipped.
             *
             * The LifterLMS post types content restriction should be handled by the LifterLMS rest-api.
    Severity: Minor
    Found in includes/class.llms.template.loader.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 maybe_restrict_post_content has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function maybe_restrict_post_content( $post, $query ) {
            /**
             * Filters the post types that must be skipped.
             *
             * The LifterLMS post types content restriction should be handled by the LifterLMS rest-api.
    Severity: Minor
    Found in includes/class.llms.template.loader.php - About 1 hr to fix

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

          public function restricted_by_membership( $info ) {
      
              $membership_id = $info['restriction_id'];
      
              // Do nothing if we don't have a membership id.
      Severity: Minor
      Found in includes/class.llms.template.loader.php - About 1 hr to fix

        Function get_maybe_forced_template has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            private function get_maybe_forced_template() {
        
                $page_restricted = llms_page_restricted( get_the_ID() );
                $template        = null;
        
        
        Severity: Minor
        Found in includes/class.llms.template.loader.php - About 55 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 restricted_by_membership has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function restricted_by_membership( $info ) {
        
                $membership_id = $info['restriction_id'];
        
                // Do nothing if we don't have a membership id.
        Severity: Minor
        Found in includes/class.llms.template.loader.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 restricted_by_quiz has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function restricted_by_quiz( $info ) {
        
                $msg      = '';
                $redirect = '';
        
        
        Severity: Minor
        Found in includes/class.llms.template.loader.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 template_loader has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public function template_loader( $template ) {
        
                $page_restricted = llms_page_restricted( get_the_ID() );
        
                $this->maybe_print_notices_on_sales_page_redirect();
        Severity: Minor
        Found in includes/class.llms.template.loader.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

            public function restricted_by_course_track_prerequisite( $info ) {
        
                if ( 'course' === get_post_type( $info['content_id'] ) ) {
                    return;
                }
        Severity: Major
        Found in includes/class.llms.template.loader.php and 1 other location - About 2 hrs to fix
        includes/class.llms.template.loader.php on lines 196..211

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

        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

            public function restricted_by_course_prerequisite( $info ) {
        
                if ( 'course' === get_post_type( $info['content_id'] ) ) {
                    return;
                }
        Severity: Major
        Found in includes/class.llms.template.loader.php and 1 other location - About 2 hrs to fix
        includes/class.llms.template.loader.php on lines 167..182

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

        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