• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Link/Reminder/ReminderCollection.php
  • Класс: BitrixImV2LinkReminderReminderCollection
  • Вызов: ReminderCollection::getNeedReminded
static function getNeedReminded(): self
{
	$entities = LinkReminderTable::query()
		->setSelect(['ID', 'CHAT_ID', 'AUTHOR_ID', 'DATE_CREATE', 'MESSAGE_ID', 'DATE_REMIND', 'IS_REMINDED', 'MESSAGE'])
		->where('DATE_REMIND', '<', new DateTime())
		->where('IS_REMINDED', false)
		->fetchCollection()
	;

	if ($entities === null)
	{
		return new static();
	}

	return static::initByEntityCollection($entities);
}