• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/registry/tagregistry.php
  • Класс: BitrixTasksInternalsRegistryTagRegistry
  • Вызов: TagRegistry::drop
public function drop(int $tagId = null)
{
	if ($tagId)
	{
		unset($this->storage[$tagId]);
	}
	else
	{
		$this->storage = [];
	}
}