Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
transporttoloka.php
1<?php
9
14
15Loc::loadMessages(__FILE__);
16
20class TransportToloka implements iBase
21{
22 const CODE = 'toloka';
23
27 public function getName()
28 {
29 return Loc::getMessage('SENDER_INTEGRATION_YANDEX_TOLOKA');
30 }
31
35 public function getCode()
36 {
37 return self::CODE;
38 }
39
46 {
47 return array(Type::EMAIL);
48 }
49
53 public function loadConfiguration()
54 {
55 // TODO: Implement loadConfiguration() method.
56 }
57
61 public function saveConfiguration(Message\Configuration $configuration)
62 {
63 // TODO: Implement saveConfiguration() method.
64 }
65
69 public function start()
70 {
71 // TODO: Implement start() method.
72 }
73
77 public function send(Message\Adapter $message)
78 {
79 // TODO: Implement send() method.
80 }
81
85 public function end()
86 {
87 // TODO: Implement end() method.
88 }
89}
static loadMessages($file)
Definition loc.php:64
static getMessage($code, $replace=null, $language=null)
Definition loc.php:29
saveConfiguration(Message\Configuration $configuration)