You are here

function expiry_dates in User Points 5.3

Same name and namespace in other branches
  1. 6 userpoints.module \expiry_dates()
1 call to expiry_dates()
userpoints_admin_settings in ./userpoints.module
menu callback for settings form.

File

./userpoints.module, line 1464

Code

function expiry_dates() {
  return array(
    NULL => 'Never',
    3600 => 'One hour',
    86400 => 'One Day',
    604800 => 'One Week',
    1209600 => 'Two Weeks',
    2419200 => 'Four Weeks',
    31536000 => '365 Days',
  );
}