Get date plus or minus today
Several times I have came across same requirement of getting few days back from today, or few days after today. SugarCRM comes with few very handy date utility functions, and there is one which does the job! global $timedate; $today = $timedate->getInstance()->nowDbDate(); // Today $earlier = $timedate->asDbDate($timedate->getNow()->modify("-30 days")); // 30…