AttendeeCollection::count

  1. Bitrix24 API (v. 23.675.0)
  2. calendar
  3. AttendeeCollection
  4. count
  • Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/event/properties/attendeecollection.php
  • Класс: BitrixCalendarCoreEventPropertiesAttendeeCollection
  • Вызов: AttendeeCollection::count
public function count(): int
{
	if (!$this->collection && $this->attendeesIdCollection)
	{
		return count($this->attendeesIdCollection);
	}

	if (!$this->collection && $this->attendeesCodesCollection)
	{
		return count($this->attendeesCodesCollection);
	}

	return parent::count();
}

Добавить комментарий