• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/adv/yandexbanner.php
  • Класс: BitrixSeoAdvYandexBannerTable
  • Вызов: YandexBannerTable::markResumed
static function markResumed(array $idList)
{
	if(count($idList) > 0)
	{
		$connection = MainApplication::getConnection();
		$sqlHelper = $connection->getSqlHelper();

		$idList = array_map("intval", $idList);

		$update = $sqlHelper->prepareUpdate(static::getTableName(), array(
			"AUTO_QUANTITY_ON" => static::MARKED,
		));

		$connection->queryExecute(
			"UPDATE ".static::getTableName()." SET ".$update[0]." WHERE ID IN (".implode(",", $idList).")"
		);
	}
}