function calendar_part_is_valid in Calendar 5.2
Same name and namespace in other branches
- 5 calendar.module \calendar_part_is_valid()
- 6.2 calendar.module \calendar_part_is_valid()
- 7 calendar.module \calendar_part_is_valid()
- 7.2 calendar.module \calendar_part_is_valid()
A function to test the validity of various date parts
6 calls to calendar_part_is_valid()
- calendar_build_filter in ./
calendar.inc - Compile the filter query for this view.
- calendar_filter_day in ./
calendar.module - Callback for day filter. Build year, month, day, min, and max into query object.
- calendar_filter_month in ./
calendar.module - Callback for month filter. Build year, month, day, min, and max into query object.
- calendar_filter_week in ./
calendar.module - Callback for week filter. Build year, month, day, min, and max into query object.
- calendar_filter_year in ./
calendar.module - Callback for year filter. Build year, month, day, min, and max into query object.
File
- ./
calendar.module, line 434 - Adds calendar filtering and displays to Views.
Code
function calendar_part_is_valid($value, $type) {
if (!preg_match('/^[0-9]*$/', $value)) {
return false;
}
$value = intval($value);
if ($value <= 0) {
return false;
}
switch ($type) {
case 'year':
if ($value < DATE_MIN_YEAR) {
return false;
}
break;
case 'month':
if ($value < 0 || $value > 12) {
return false;
}
break;
case 'day':
if ($value < 0 || $value > 31) {
return false;
}
break;
case 'week':
if ($value < 0 || $value > 53) {
return false;
}
}
return true;
}