• Модуль: pull
  • Путь к файлу: ~/bitrix/modules/pull/lib/push/message/applemessage.php
  • Класс: BitrixPullPushMessageAppleMessage
  • Вызов: AppleMessage::getAlertData
protected function getAlertData()
{
	$this->text = $this->customProperties["senderMessage"] ?? $this->text;
	unset($this->customProperties["senderMessage"]);
	$this->title = $this->customProperties["senderName"] ?? $this->title ?? "";
	unset($this->customProperties["senderName"]);
	if ($this->text != null && $this->text != "")
	{
		return [
			'body' => $this->text,
			'title'=>  $this->title,
		];
	}

	return [];
}