1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
FacebookRefreshTimer.php
См. документацию.
1<?php
2
3namespace Bitrix\Catalog\v2\Integration\Seo\Facebook;
4
5use Bitrix\Main\Config\Option;
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}