• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/classes/mysql/cml2.php
  • Класс: is
  • Вызов: is::DropTemporaryTables
public function DropTemporaryTables()
{
	global $DB;

	if ($DB->TableExists($this->_table_name))
	{
		return $DB->DDL("drop table ".$this->_table_name);
	}
	return true;
}