function document_get_years in Document 8.x
Same name and namespace in other branches
- 6 document.inc \document_get_years()
- 7 document.inc \document_get_years()
2 calls to document_get_years()
- document_form in ./
document.module - Implementation of hook_form().
- document_search_form in ./
document.search.inc
File
- ./
document.inc, line 90
Code
function document_get_years() {
$years = array();
for ($i = 1950; $i <= date('Y'); $i++) {
$years[] = $i;
}
return $years;
}