function sms_track_help in SMS Framework 6
Same name and namespace in other branches
- 6.2 modules/sms_track/sms_track.module \sms_track_help()
- 7 modules/sms_track/sms_track.module \sms_track_help()
Implement hook_help()
Parameters
$path: URI string
$arg: Page argument array
Return value
HTML page content string
File
- modules/
sms_track/ sms_track.module, line 23 - Message tracking feature module for Drupal SMS Framework.
Code
function sms_track_help($path, $arg) {
switch ($path) {
case "admin/help#sms_archive":
$output = '<p>' . t("<i>TO BE RE-WRITTEN</i> This module simply records all incoming and outgoing SMS messages from the SMS Framework. This can be used to enable an audit trail for your system, so that you can investigate any issues and keen an eye on what is flowing in and out.<br /><br /><strong>Outgoing: </strong>It is important to be aware of your outgoing SMS traffic because user spamming can be expensive for you, and may also expose you to legal issues. A small code error can cause this kind of problem.<br /><br /><strong>Incoming: </strong>The proper handling of inbound messages depends heavily on the quality of your software code. You may find that someone is sending malformed messages to your gateway receiver, which could expose a vulnerability and potentially release sensitive data.<br /><br />This module uses a database table to store messages, and implements Views for reporting.") . '</p>';
break;
}
return $output;
}