include/smarty/libs/plugins/modifier.relative_date.php
Function smarty_modifier_relative_date
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
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);
- Read upRead up
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
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);
Avoid too many return
statements within this method. Open
Open
return "1 month ago";
Avoid too many return
statements within this method. Open
Open
return intval($difference / (60*60*24*7)) . " weeks ago";
Avoid too many return
statements within this method. Open
Open
return @date($format, $timestamp);
Avoid too many return
statements within this method. Open
Open
return "1 minute ago";
Avoid too many return
statements within this method. Open
Open
return intval($difference / (60*60*24)) . " days ago";
Avoid too many return
statements within this method. Open
Open
return intval($difference / (60*60)) . " hours ago";
Avoid too many return
statements within this method. Open
Open
return intval($difference / (60*60*24*7*(52/12))) . " months ago";
Avoid too many return
statements within this method. Open
Open
return "1 hour ago";
Avoid too many return
statements within this method. Open
Open
return "1 day ago";
Avoid too many return
statements within this method. Open
Open
return "1 week ago";
Avoid too many return
statements within this method. Open
Open
return intval($difference / 60) . " minutes ago";