1: <?php if (!defined('APPLICATION')) exit();
2: 3: 4: 5: 6: 7: 8:
9:
10: if(!function_exists('AgeArray')) {
11: 12: 13: 14: 15:
16: function AgeArray() {
17: return array(
18: strtotime('0 seconds', 0) => T('Yaga.Perks.AgeDNC'),
19: strtotime('1 hour', 0) => sprintf(T('Yaga.AgeFormat'), T('1 hour')),
20: strtotime('1 day', 0) => sprintf(T('Yaga.AgeFormat'), T('1 day')),
21: strtotime('1 week', 0) => sprintf(T('Yaga.AgeFormat'), T('1 week')),
22: strtotime('1 month', 0) => sprintf(T('Yaga.AgeFormat'), T('1 month')),
23: strtotime('3 months', 0) => sprintf(T('Yaga.AgeFormat'), T('3 months')),
24: strtotime('6 months', 0) => sprintf(T('Yaga.AgeFormat'), T('6 months')),
25: strtotime('1 year', 0) => sprintf(T('Yaga.AgeFormat'), T('1 year')),
26: strtotime('5 years', 0) => sprintf(T('Yaga.AgeFormat'), T('5 years'))
27: );
28: }
29: }
30: