PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
vonage
/
client-core
/
src
/
SMS
/
Message
<?php /** * Vonage Client Library for PHP * * @copyright Copyright (c) 2016-2020 Vonage, Inc. (http://vonage.com) * @license https://github.com/Vonage/vonage-php-sdk-core/blob/master/LICENSE.txt Apache License 2.0 */ declare(strict_types=1); namespace Vonage\SMS\Message; use Vonage\SMS\EncodingDetector; use function function_exists; class SMS extends OutboundMessage { /** * @var string */ protected $contentId; /** * @var string */ protected $entityId; /** * @var string */ protected $message; /** * @var string */ protected $type = 'text'; public function __construct(string $to, string $from, string $message) { parent::__construct($to, $from); $encoder = new EncodingDetector(); if (function_exists('mb_convert_encoding') && $encoder->requiresUnicodeEncoding($message)) { $this->type = 'unicode'; } $this->message = $message; } public function getContentId(): string { return $this->contentId; } public function getEntityId(): string { return $this->entityId; } public function setContentId(string $id): self { $this->contentId = $id; return $this; } public function setEntityId(string $id): self { $this->entityId = $id; return $this; } /** * @return array<mixed> */ public function toArray(): array { $data = ['text' => $this->getMessage()]; if (!empty($this->entityId)) { $data['entity-id'] = $this->entityId; } if (!empty($this->contentId)) { $data['content-id'] = $this->contentId; } $data = $this->appendUniversalOptions($data); return $data; } public function getMessage(): string { return $this->message; } public function enableDLT(string $entityId, string $templateId): self { $this->entityId = $entityId; $this->contentId = $templateId; return $this; } }
[-] Message.php
[edit]
[+]
..
[-] Vcal.php
[edit]
[-] Binary.php
[edit]
[-] OutboundMessage.php
[edit]
[-] WAPPush.php
[edit]
[-] Vcard.php
[edit]
[-] SMS.php
[edit]