function _ed_classified_ad_expired_already in Classified Ads 6.2
Same name and namespace in other branches
- 5.2 ed_classified_utils.inc \_ed_classified_ad_expired_already()
- 5 ed_classified_utils.inc \_ed_classified_ad_expired_already()
- 7.2 ed_classified_utils.inc \_ed_classified_ad_expired_already()
return true if ad has expired
1 call to _ed_classified_ad_expired_already()
- theme_ed_classified_ending_date in ./
ed_classified_themefuncs.inc - Get a formatted div with a readable, friendly ad expiration date.
File
- ./
ed_classified_utils.inc, line 326 - Simple text-based classified ads module.
Code
function _ed_classified_ad_expired_already($expiration_date) {
return $expiration_date <= REQUEST_TIME;
}