public function MessageNotifierBase::deliver in Message Notify 7.2
Deliver a message via the required transport method.
Parameters
$output: Array keyed by the view mode, and the rendered entity in the specified view mode.
Return value
TRUE or FALSE based on delivery status.
Overrides MessageNotifierInterface::deliver
1 call to MessageNotifierBase::deliver()
- MessageNotifierBase::send in plugins/
notifier/ abstract.inc - Entry point to send and process a message.
3 methods override MessageNotifierBase::deliver()
- MessageNotifierEmail::deliver in plugins/
notifier/ email/ MessageNotifierEmail.class.php - Deliver a message via the required transport method.
- MessageNotifierSMS::deliver in plugins/
notifier/ sms/ MessageNotifierSMS.class.php - Deliver a message via the required transport method.
- MessageNotifierTest::deliver in tests/
plugins/ notifier/ MessageNotifierTest.class.php - Deliver a message via the required transport method.
File
- plugins/
notifier/ abstract.inc, line 85
Class
- MessageNotifierBase
- An abstract implementation of MessageNotifierInterface.
Code
public function deliver(array $output = array()) {
}