MPOS/php-mpos

View on GitHub
include/smarty/libs/plugins/modifier.relative_date.php

Summary

Maintainability
C
1 day
Test Coverage

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

function smarty_modifier_relative_date($timestamp, $days = false, $format = "M j, Y") {
  
  if (!is_numeric($timestamp)) {
    // It's not a time stamp, so try to convert it...
    $timestamp = strtotime($timestamp);
Severity: Minor
Found in include/smarty/libs/plugins/modifier.relative_date.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 smarty_modifier_relative_date has 47 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function smarty_modifier_relative_date($timestamp, $days = false, $format = "M j, Y") {
  
  if (!is_numeric($timestamp)) {
    // It's not a time stamp, so try to convert it...
    $timestamp = strtotime($timestamp);
Severity: Minor
Found in include/smarty/libs/plugins/modifier.relative_date.php - About 1 hr to fix

    Avoid too many return statements within this method.
    Open

        return "1 month ago"; 
    Severity: Major
    Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

          return intval($difference / (60*60*24*7)) . " weeks ago"; 
      Severity: Major
      Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

          return @date($format, $timestamp);
        Severity: Major
        Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

              return "1 minute ago"; 
          Severity: Major
          Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                return intval($difference / (60*60*24)) . " days ago"; 
            Severity: Major
            Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                  return intval($difference / (60*60)) . " hours ago"; 
              Severity: Major
              Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                    return intval($difference / (60*60*24*7*(52/12))) . " months ago"; 
                Severity: Major
                Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                      return "1 hour ago"; 
                  Severity: Major
                  Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                        return "1 day ago"; 
                    Severity: Major
                    Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                          return "1 week ago"; 
                      Severity: Major
                      Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                            return intval($difference / 60) . " minutes ago"; 
                        Severity: Major
                        Found in include/smarty/libs/plugins/modifier.relative_date.php - About 30 mins to fix

                          There are no issues that match your filters.

                          Category
                          Status