You are here

function fontyourface_ui_help in @font-your-face 7.2

Implements hook_help().

File

modules/fontyourface_ui/fontyourface_ui.module, line 107

Code

function fontyourface_ui_help($path, $arg) {
  switch ($path) {
    case 'admin/config/user-interface/fontyourface':
      return '<p>' . t('All fonts can be managed under !appearance', array(
        '!appearance' => l(t('Appearance'), 'admin/appearance/fontyourface'),
      )) . '</p>';
  }
}