1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Informant.php
См. документацию.
1<?php
2
3namespace Bitrix\MessageService\Providers\Edna\SMS;
4
5use Bitrix\Main\Localization\Loc;
6use Bitrix\MessageService\Providers\Edna\RegionHelper;
7
9{
10
11 public function isConfigurable(): bool
12 {
13 return true;
14 }
15
16 public function getId(): string
17 {
18 return Constants::ID;
19 }
20
21 public function getName(): string
22 {
23 return Loc::getMessage(RegionHelper::getPhrase('MESSAGESERVICE_SENDER_SMS_SMSEDNARU_NAME'));
24 }
25
26 public function getShortName(): string
27 {
29 {
30 return 'sms.edna.io';
31 }
32
33 return 'sms.edna.ru';
34 }
35}
static getPhrase(string $phraseCode)
Определения RegionHelper.php:22