SmsGatewayInterface.php in SMS Framework 2.1.x
Same filename and directory in other branches
Namespace
Drupal\sms\EntityFile
src/Entity/SmsGatewayInterface.phpView source
<?php
declare (strict_types=1);
namespace Drupal\sms\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface defining a SMS Gateway entity.
*/
interface SmsGatewayInterface extends ConfigEntityInterface {
/**
* Returns the plugin instance.
*
* @return \Drupal\sms\Plugin\SmsGatewayPluginInterface
* The plugin instance for this SMS Gateway.
*/
public function getPlugin();
/**
* Returns the plugin ID.
*
* @return string
* The plugin ID for this SMS Gateway.
*/
public function getPluginId();
/**
* Get whether messages sent to this gateway should be sent immediately.
*
* @return bool
* Whether messages sent to this gateway should be sent immediately.
*/
public function getSkipQueue();
/**
* Set whether messages sent to this gateway should be sent immediately.
*
* @param bool $skip_queue
* Whether messages sent to this gateway should be sent immediately.
*
* @return $this
* Return this gateway for chaining.
*/
public function setSkipQueue($skip_queue);
/**
* Get the internal path where incoming messages are received.
*
* @return string|null
* The internal path where incoming messages are received.
*/
public function getPushIncomingPath();
/**
* Set the internal path where incoming messages are received.
*
* @param string|null $path
* The internal path where incoming messages are received.
*
* @return $this
* Return this gateway for chaining.
*/
public function setPushIncomingPath($path);
/**
* Get the url where pushed delivery reports can be received.
*
* @return \Drupal\Core\Url
* The url where pushed delivery reports can be received.
*/
public function getPushReportUrl();
/**
* Get the internal path where pushed delivery reports can be received.
*
* @return string|null
* The internal path where pushed delivery reports can be received.
*/
public function getPushReportPath();
/**
* Set the internal path where pushed delivery reports can be received.
*
* @param string|null $path
* The internal path where pushed delivery reports can be received.
*
* @return $this
* Return this gateway for chaining.
*/
public function setPushReportPath($path);
/**
* Get how many seconds to hold messages.
*
* @param int $direction
* The direction of the message. See SmsMessageInterface::DIRECTION_*
* constants.
*
* @return int
* How long messages should persist in seconds. -1 to never expire.
*/
public function getRetentionDuration($direction);
/**
* Set how many seconds to hold messages..
*
* @param int $direction
* The direction of the message. See SmsMessageInterface::DIRECTION_*
* constants.
* @param int $retention_duration
* How many seconds to hold messages, or use -1 to never expire.
*
* @return $this
* Return this gateway for chaining.
*/
public function setRetentionDuration($direction, $retention_duration);
/**
* Get maximum number of recipients per outgoing message.
*
* @return int
* Maximum number of recipients, or -1 for no limit.
*/
public function getMaxRecipientsOutgoing();
/**
* Whether the gateway supports receiving messages.
*
* @return bool
* Whether the gateway supports receiving messages.
*/
public function supportsIncoming();
/**
* Whether to automatically create a route for receiving incoming messages.
*
* @return bool
* Whether to automatically create a route for receiving incoming messages.
*/
public function autoCreateIncomingRoute();
/**
* Get whether this gateway is schedule aware.
*
* @return bool
* Whether this gateway is schedule aware.
*/
public function isScheduleAware();
/**
* Gets whether this gateway can pull reports.
*
* @return bool
* Whether this gateway can pull reports.
*
* @see \Drupal\sms\Annotation\SmsGateway::reports_pull
*/
public function supportsReportsPull();
/**
* Gets whether this gateway can handle reports pushed to the site.
*
* @return bool
* Whether this gateway can handle reports pushed to the site.
*
* @see \Drupal\sms\Annotation\SmsGateway::reports_push
*/
public function supportsReportsPush();
/**
* Get whether this gateway supports credit balance queries.
*
* @return bool
* Whether this gateway supports credit balance queries.
*
* @see \Drupal\sms\Annotation\SmsGateway::credit_balance_available
*/
public function supportsCreditBalanceQuery();
}
Interfaces
Name | Description |
---|---|
SmsGatewayInterface | Provides an interface defining a SMS Gateway entity. |