Log 2281
07/12/2023 2023-12-07 9:18$date = #DATE#;
if (strtotime($date) >= strtotime(‘monday this week’) && strtotime($date) <= strtotime('sunday this week')) {
return "this week";
} else {
// Default value if date is not within this week
return "";
}