• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/update/catalog/mnemoniccode.php
  • Класс: Bitrix\Crm\Update\Catalog\MnemonicCode
  • Вызов: MnemonicCode::createMnemonicCode
protected function createMnemonicCode(array $options): array
{
	\CIBlock::disableClearTagCache();
	\CTimeZone::Disable();
	switch ($this->getCurrentAction())
	{
		case self::UPDATE_SECTIONS:
			$options = $this->createSectionMnemonicCode($options);
			break;
		case self::UPDATE_ELEMENTS:
			$options = $this->createElementMnemonicCode($options);
			break;
		default:
			$options = [];
			break;
	}
	\CTimeZone::Enable();
	\CIBlock::enableClearTagCache();
	\CIBlock::clearIblockTagCache($this->getIblockId());

	return $options;
}