• Модуль: catalogmobile
  • Путь к файлу: ~/bitrix/modules/catalogmobile/lib/Controller/StoreDocumentDetails.php
  • Класс: Bitrix\CatalogMobile\Controller\StoreDocumentDetails
  • Вызов: StoreDocumentDetails::getDateFields
private function getDateFields(): array
{
	return array_keys(
		array_filter(
			array_map(
				static function ($field) {
					return $field->getDataType();
				},
				StoreDocumentTable::getEntity()->getFields()
			),
			static function ($v) {
				return in_array($v, ['datetime', 'date'], true);
			}
		)
	);
}