You are here

function _support_pm_days_in_month in Support Ticketing System 7

Same name and namespace in other branches
  1. 6 support_pm/support_pm.admin.inc \_support_pm_days_in_month()
2 calls to _support_pm_days_in_month()
support_pm_admin_reports in support_pm/support_pm.admin.inc
_support_pm_last_day_month in support_pm/support_pm.admin.inc

File

support_pm/support_pm.admin.inc, line 330

Code

function _support_pm_days_in_month($time) {
  return date('j', mktime(date('H', $time), date('i', $time), date('s', $time), date('n', $time), -1));
}