• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/preset/installation/installer.php
  • Класс: BitrixSenderPresetInstallationInstaller
  • Вызов: Installer::install
public function install()
{
	if(!self::checkVersion())
	{
		return true;
	}

	foreach($this->getInstallable() as $installable)
	{
		if($installable->isInstalled())
		{
			continue;
		}

		$installable->install();
	}

	if(!$this->hasErrors())
	{
		self::updateInstalledVersion();
	}

	return $this->hasErrors();
}