Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
FacebookRefreshTimer.php
1<?php
2
4
6
8{
9 private const OPTION_NAME = 'facebook_last_refreshed_product_timestamp';
10
11 public static function getLastRefreshedTimestamp(): int
12 {
13 // ToDo return (int)Option::get('catalog', self::OPTION_NAME, 0);
14 // last 3 days right now
15 return time() - 3 * 24 * 60 * 60;
16 }
17
18 public static function setLastRefreshedTimestamp(int $timestamp): void
19 {
20 Option::set('catalog', self::OPTION_NAME, $timestamp);
21 }
22}