%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/edujugon/push-notification/src/Messages/ |
Upload File : |
<?php
namespace Edujugon\PushNotification\Messages;
class PushMessage
{
/**
* @var string
*/
public $to;
/**
* @var string
*/
public $title;
/**
* @var string
*/
public $body;
/**
* @var string
*/
public $icon;
/**
* @var string
*/
public $sound = 'default';
/**
* @var string
*/
public $click_action;
/**
* @var string
*/
public $category;
/**
* @var integer
*/
public $badge;
/**
* @var array
*/
public $extra = [];
/**
* @var array
*/
public $config = [];
/**
* @var string
*/
public $color = '#000000';
/**
* Create a new message instance.
*
* @param string $body
* @return void
*/
public function __construct($body = '')
{
$this->body = $body;
}
public function to($to)
{
$this->to = $to;
return $this;
}
/**
* Set the message body.
*
* @param string $body
* @return $this
*/
public function body($body)
{
$this->body = $body;
return $this;
}
/**
* Set the message title.
*
* @param string $title
* @return $this
*/
public function title($title)
{
$this->title = $title;
return $this;
}
/**
* Set the message icon.
*
* @param string $icon
* @return $this
*/
public function icon($icon)
{
$this->icon = $icon;
return $this;
}
/**
* Set the notification sound.
*
* @param string $sound
* @return $this
*/
public function sound($sound)
{
$this->sound = $sound;
return $this;
}
/**
* The action associated with a user click on the notification.(Android)
*
* @param string $click_action
* @return $this
*/
public function clickAction($click_action)
{
$this->click_action = $click_action;
return $this;
}
/**
* The action associated with a user click on the notification.(iOS)
*
* @param string $click_action
* @return $this
*/
public function category($category)
{
$this->category = $category;
return $this;
}
/**
* Set the notification badge.
*
* @param integer $badge
* @return $this
*/
public function badge($badge)
{
$this->badge = $badge;
return $this;
}
/**
* Set notification icon color.
*
* @param string $color
* @return $this
*/
public function color($color)
{
$this->color = $color;
return $this;
}
/**
* Set message extra data.
*
* @param array $extra
* @return $this
*/
public function extra(array $extra)
{
$this->extra = $extra;
return $this;
}
/**
* Set message config.
*
* @param array $config
* @return $this
*/
public function config(array $config)
{
$this->config = $config;
return $this;
}
}