Okay, this is going to sound dumb, but I have a site that uses the forward.module. As you probably know, it's made so a link appears at the bottom of a blog post that says "email this page."
Anyway, the client wants a little envelope graphic to appear after the "email this page" text. (Gag.) So, me, being new to Drupal, looks at the forward.module and pretty much panic because I don't want to explode the site if I screw up the PHP code.
It looks like I'd need to add a HTML img src blurb in the function forward_link, but like I said, I'm a newbie and don't want to kill the site.
// This var is set in the settings section under the admin/modules/forward section
// It shows 'email this $nodetype' or 'email this page'
$forward_link_type = variable_get('forward_link_type', 0);
if ($forward_link_type) {
if ($type == 'comment') {
$forward_link_type = 'comment';
$links[] = l(t('email this %type', array('%type' => $forward_link_type)), "forward/$node->nid&cid=$node->cid", array('title' => FORWARD_TITLE), NULL);
return $links;
}
$forward_link_type = $node->type;
}
else $forward_link_type = 'page';
if ($main) { // not on an index page
if (variable_get('forward_show_on_main', 0)) {
$links[] = l(t('email this %type', array('%type' => $forward_link_type)), "forward/$node->nid", array('title' => FORWARD_TITLE), NULL);