| 1 |
<?php |
<?php |
| 2 |
// $Id: smileys_import.module,v 1.2.2.8 2009/01/05 08:50:25 Gurpartap Exp $ |
// $Id: smileys_import.module,v 1.2.2.9 2009/06/27 14:36:13 Gurpartap Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Implementation of hook_help(). |
* Implementation of hook_help(). |
| 7 |
function smileys_import_help($section) { |
function smileys_import_help($section) { |
| 8 |
switch ($section) { |
switch ($section) { |
| 9 |
case 'admin/settings/smileys/import': |
case 'admin/settings/smileys/import': |
| 10 |
return t("To import new Smileys, download smiley packs for !phpBB or !Adium and extract them in <em>packs</em> folder under the smileys module's folder.", 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'))); |
return t("To import new Smileys, download smiley packs for !phpBB or !Adium and extract them in <em>smileys</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'))); |
| 11 |
} |
} |
| 12 |
} |
} |
| 13 |
|
|