You are here

function emogrifier_help in Emogrifier 6

Same name and namespace in other branches
  1. 8 emogrifier.module \emogrifier_help()
  2. 7.2 emogrifier.module \emogrifier_help()
  3. 7 emogrifier.module \emogrifier_help()

Implements hook_help().

File

./emogrifier.module, line 19

Code

function emogrifier_help($path = 'admin/help#emogrifier', $arg) {
  switch ($path) {
    case 'admin/help#emogrifier':
      return '<p>' . t('The <a href="!module">%emogrifier</a> module uses the <a href="!class">%emogrifier</a> class library to convert stylesheet rules to inline style attributes. This ensures proper display on email and mobile device readers that lack stylesheet support.', array(
        '!module' => url('http://drupal.org/project/emogrifier'),
        '%emogrifier' => 'emogrifier',
        '!class' => url('http://www.pelagodesign.com/sidecar/emogrifier/'),
      )) . '</p>';
      break;
  }
}