• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/sender/sms/smsednaru.php
  • Класс: BitrixMessageServiceSenderSmsSmsEdnaru
  • Вызов: SmsEdnaru::__construct
public function __construct()
{
	$this->informant = new SMSInformant();
	$this->optionManager = new Option($this->getType(), $this->getId());
	$this->utils = new SMSUtils($this->getId(), $this->optionManager);

	if (!$this->isMigratedToNewAPI())
	{
		$this->initializeOldApiComponents();

		return;
	}
	$this->initializeNewApiComponents();

	$this->migrateToNewApi();
}