public function SmsGateway::getPushReportPath in SMS Framework 8
Same name and namespace in other branches
- 2.x src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::getPushReportPath()
- 2.1.x src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::getPushReportPath()
Get the internal path where pushed delivery reports can be received.
Return value
string 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 231
Class
- SmsGateway
- Defines storage for an SMS Gateway instance.
Namespace
Drupal\sms\EntityCode
public function getPushReportPath() {
return $this->reports_push_path;
}