Use a constant for birthday cache time

This commit is contained in:
nathangray 2017-04-04 12:09:52 -06:00
parent e16f9676d4
commit f7c45403ad

View File

@ -23,6 +23,13 @@ use calendar_bo; // to_do: do NOT require it, just use if there
*/ */
class Contacts extends Contacts\Storage class Contacts extends Contacts\Storage
{ {
/**
* Birthdays are read into the cache, cache is expired when a
* birthday changes, or after 10 days.
*/
const BIRTHDAY_CACHE_TIME = 864000; /* 10 days*/
/** /**
* @var int $now_su actual user (!) time * @var int $now_su actual user (!) time
*/ */
@ -1743,7 +1750,7 @@ class Contacts extends Contacts\Storage
); );
} }
} }
Cache::setInstance(__CLASS__,"birthday-$year-$addressbook", $birthdays, 864000 /* 10 days*/); Cache::setInstance(__CLASS__,"birthday-$year-$addressbook", $birthdays, self::BIRTHDAY_CACHE_TIME);
return $birthdays; return $birthdays;
} }