• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/model/roleaccess.php
  • Класс: BitrixVoximplantModelRoleAccessTable
  • Вызов: RoleAccessTable::truncate
static function truncate()
{
	$connection = Application::getConnection();
	$entity = self::getEntity();

	$sql = "TRUNCATE TABLE ".$entity->getDBTableName();
	$connection->queryExecute($sql);

	$result = new EntityDeleteResult();
	return $result;
}