• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/update/block/nodeattributes.php
  • Класс: BitrixLandingUpdateBlockNodeAttributes
  • Вызов: NodeAttributes::clearOptions
static function clearOptions()
{
	foreach (Option::getForModule('landing') as $key => $option)
	{
		if (mb_strpos($key, self::OPTION_NAME) === 0)
		{
			Option::delete('landing', array('name' => $key));
		}
	}
}