You are here

function smiley_import_help in Smiley 6

Implementation of hook_help().

File

./smiley_import.module, line 6

Code

function smiley_import_help($section) {
  switch ($section) {
    case 'admin/settings/smiley/import':
      return t("To import new Smileys, download smiley packs for !phpBB or !Adium and extract them in <em>smiley</em> folder under website's files directory.", array(
        '!phpBB' => l('phpBB', 'http://www.phpbb.com/styles/db/index.php?i=browse&mode=group:component&sub=smilies'),
        '!Adium' => l('Adium', 'http://www.adiumxtras.com/index.php?a=search&cat_id=2'),
      ));
  }
}