public function SmsGateway::getPushReportPath in SMS Framework 2.1.x
Same name and namespace in other branches
- 8 src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::getPushReportPath()
- 2.x src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::getPushReportPath()
Get the internal path where pushed delivery reports can be received.
Return value
string|null The internal path where pushed delivery reports can be received.
Overrides SmsGatewayInterface::getPushReportPath
1 call to SmsGateway::getPushReportPath()
- SmsGateway::postSave in src/
Entity/ SmsGateway.php - Acts on a saved entity before the insert or update hook is invoked.
File
- src/
Entity/ SmsGateway.php, line 244
Class
- SmsGateway
- Defines storage for an SMS Gateway instance.
Namespace
Drupal\sms\EntityCode
public function getPushReportPath() {
return $this->reports_push_path;
}