gocodebox/lifterlms

View on GitHub
includes/llms.functions.core.php

Summary

Maintainability
D
2 days
Test Coverage
B
86%

File llms.functions.core.php has 539 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Core LifterLMS functions file
 *
 * @package LifterLMS/Functions
Severity: Major
Found in includes/llms.functions.core.php - About 1 day to fix

    Method llms_get_date_diff has 56 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function llms_get_date_diff( $time1, $time2, $precision = 2 ) {
        // If not numeric then convert timestamps.
        if ( ! is_numeric( $time1 ) ) {
            $time1 = strtotime( $time1 );
        }
    Severity: Major
    Found in includes/llms.functions.core.php - About 2 hrs to fix

      Function llms_get_date_diff has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

      function llms_get_date_diff( $time1, $time2, $precision = 2 ) {
          // If not numeric then convert timestamps.
          if ( ! is_numeric( $time1 ) ) {
              $time1 = strtotime( $time1 );
          }
      Severity: Minor
      Found in includes/llms.functions.core.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 llms_get_post has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      function llms_get_post( $post, $error = false ) {
      
          $post = get_post( $post );
          if ( ! $post ) {
              return $post;
      Severity: Minor
      Found in includes/llms.functions.core.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 llms_anonymize_string has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          function llms_anonymize_string( $string, $char = '*' ) {
      
              if ( is_email( $string ) ) {
                  $parts = explode( '@', $string );
                  return llms_anonymize_string( $parts[0] ) . '@' . llms_anonymize_string( $parts[1] );
      Severity: Minor
      Found in includes/llms.functions.core.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 llms_cleanup_tmp has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      function llms_cleanup_tmp() {
      
          $max_age = llms_current_time( 'timestamp' ) - apply_filters( 'llms_tmpfile_max_age', DAY_IN_SECONDS );
      
          $exclude = array( '.htaccess', 'index.html' );
      Severity: Minor
      Found in includes/llms.functions.core.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 llms_make_select2_student_array has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      function llms_make_select2_student_array( $user_ids = array(), $template = '' ) {
          if ( ! $template ) {
              $template = '%1$s &lt;%2$s&gt;';
          }
          if ( ! is_array( $user_ids ) ) {
      Severity: Minor
      Found in includes/llms.functions.core.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

              array(
                  'user_registration'      => __( 'Student creates a new account', 'lifterlms' ),
                  'access_plan_purchased'  => __( 'Student Purchases an Access Plan', 'lifterlms' ),
                  'course_enrollment'      => __( 'Student enrolls in a course', 'lifterlms' ),
                  'course_purchased'       => __( 'Student purchases a course', 'lifterlms' ),
      Severity: Major
      Found in includes/llms.functions.core.php and 1 other location - About 5 hrs to fix
      includes/notifications/views/class.llms.notification.view.purchase.receipt.php on lines 88..102

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

      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 4 locations. Consider refactoring.
      Open

          $l18n_plural   = array(
              'year'   => __( 'years', 'lifterlms' ),
              'month'  => __( 'months', 'lifterlms' ),
              'day'    => __( 'days', 'lifterlms' ),
              'hour'   => __( 'hours', 'lifterlms' ),
      Severity: Major
      Found in includes/llms.functions.core.php and 3 other locations - About 55 mins to fix
      includes/abstracts/llms.abstract.notification.view.quiz.completion.php on lines 52..59
      includes/admin/reporting/class.llms.admin.reporting.php on lines 323..330
      includes/llms.functions.core.php on lines 335..342

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

      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 4 locations. Consider refactoring.
      Open

          $l18n_singular = array(
              'year'   => __( 'year', 'lifterlms' ),
              'month'  => __( 'month', 'lifterlms' ),
              'day'    => __( 'day', 'lifterlms' ),
              'hour'   => __( 'hour', 'lifterlms' ),
      Severity: Major
      Found in includes/llms.functions.core.php and 3 other locations - About 55 mins to fix
      includes/abstracts/llms.abstract.notification.view.quiz.completion.php on lines 52..59
      includes/admin/reporting/class.llms.admin.reporting.php on lines 323..330
      includes/llms.functions.core.php on lines 343..350

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

      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