You are here

function mobile_tools_notification_help in Mobile Tools 5

1 call to mobile_tools_notification_help()
mobile_tools_detection_configuration_form in ./mobile_tools.module
Configuration form for the mobile device detection, redirection and notification

File

./mobile_tools.module, line 382
Mobile Tools provides a range of functionality assisting in creating a mobile drupal site . this functionality contains:

Code

function mobile_tools_notification_help() {
  $output .= '<div class="description">';
  $output .= 'Define your message that you want to display on your website to mobile users that are on your desktop site, or destkop users that are on your mobile site. Some tokens are available:';
  $output .= '<ul>';
  $output .= '<li>[mobile]: Displays the word Mobile. When the mobile user is on the mobile site, no hyperlink is attached to it. When the mobile user is on the desktop site, the word is clickable and brings the user to the mobbile site.';
  $output .= '<li>[desktop]: The desktop counterpart of [mobile]';
  $output .= '<li>[mobile-site-link]: Dislays the word "mobile" and contains always the link to the mobile site.';
  $output .= '<li>[desktop-site-link]: Displays the word "desktop" and contains always the link to the desktop site.';
  $output .= '<li>[mobile-url]: Displays the mobile url ';
  $output .= '<li>[desktop-url]: Displays the desktop url';
  $output .= '</ul>';
  $output .= 'A recommended message is: "Change site: [mobile] | [desktop]"';
  $output .= '</div>';
  return $output;
}