Home
last modified time | relevance | path

Searched refs:max_day_in_month (Results 1 – 7 of 7) sorted by relevance

/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/comm/action/
H A Dindex.php277 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year)); // Nb of days in next month variable
284 $next_day = 7 - ($max_day_in_month + 1 - $tmpday) % 7;
310 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year, 'gmt')); variable
1261 elseif ($tmpday <= $max_day_in_month) // If number of the current day is in current month
1267 …intf("%04d", $next_year).sprintf("%02d", $next_month).sprintf("%02d", $tmpday - $max_day_in_month);
1282 } elseif ($tmpday <= $max_day_in_month) {
1300 …show_day_events($db, $tmpday - $max_day_in_month, $next_month, $next_year, $month, $style, $eventa…
H A Dpertype.php219 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year)); variable
274 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year, 'gmt')); variable
H A Dperuser.php219 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year)); variable
279 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year, 'gmt')); variable
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/comm/action/
H A Dindex.php312 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year)); // Nb of days in next month variable
321 $next_day = 7 - ($max_day_in_month + 1 - $tmpday) % 7;
348 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year, 'gmt')); variable
1396 } elseif ($tmpday <= $max_day_in_month) { // If number of the current day is in current month
1400 …intf("%04d", $next_year).sprintf("%02d", $next_month).sprintf("%02d", $tmpday - $max_day_in_month);
1417 } elseif ($tmpday <= $max_day_in_month) {
1445 …show_day_events($db, $tmpday - $max_day_in_month, $next_month, $next_year, $month, $style, $eventa…
H A Dpertype.php250 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year)); variable
343 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year, 'gmt')); variable
H A Dperuser.php256 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year)); variable
353 $max_day_in_month = date("t", dol_mktime(0, 0, 0, $month, 1, $year, 'gmt')); variable
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/bindings/
H A Dstr.rs565 let max_day = max_day_in_month(year_int, month_int)?; in parse_date_component()
652 fn max_day_in_month(year_num: u32, month_num: u32) -> Result<u32, ()> { in max_day_in_month() function