• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/component/loglist/processor.php
  • Класс: BitrixSocialnetworkComponentLogListProcessor
  • Вызов: Processor::makeTimeStampFromDateTime
public function makeTimeStampFromDateTime($value, $type = 'FULL')
{
	static $siteDateFormatShort = null;
	static $siteDateFormatFull = null;

	if ($siteDateFormatShort === null)
	{
		$siteDateFormatShort = CSite::getDateFormat('SHORT');
	}
	if ($siteDateFormatFull === null)
	{
		$siteDateFormatFull = CSite::getDateFormat();
	}

	return makeTimeStamp($value, ($type === 'SHORT' ? $siteDateFormatShort : $siteDateFormatFull));
}