Here's a nice little hack demonstrating what the new autotags (as of Geeklog 1.3.10) are all about.
Add the following piece of code to the FAQ manager's functions.php:
Text Formatted Code
function plugin_autotags_faqman ($op, $content = '', $autotag = '')
{
global $_CONF, $_TABLES;
if ($op == 'tagname' ) {
return 'faq';
} else if ($op == 'parse') {
if (is_numeric ($autotag['parm1'])) {
if (!empty ($autotag['parm2'])) {
$question = $autotag['parm2'];
} else {
$question = DB_getItem ($_TABLES['faq_topics'], 'question',
"topicID = {$autotag['parm1']}");
}
if (!empty ($question)) {
$url = $_CONF['site_url'] . '/faqman/index.php?op=view&t='
. $autotag['parm1'];
$link = '<a href="' . $url . '">' . $question . '</a>';
$content = str_replace ($autotag['tagstr'], $link, $content);
return $content;
} else {
return '(FAQ topic #' . $autotag['parm1'] . ' not found)';
}
} else {
return '(error in FAQ link)';
}
}
}
This introduces a new
faq:
autotag which creates a link to the FAQ topic with the id after the colon. It also pulls the headline (i.e. the question) of the FAQ from the database, so you don't have to enter it yourself. In other words:
would be translated into a link to this ever-popular FAQ topic:
Text Formatted Code
<a href="http://www.geeklog.net/faqman/index.php?op=view&t=38">Cannot modify header information - headers already sent by ...</a>
But you can also enter your own link text like this
Text Formatted Code
Please
read this first
There's one minor bug in Geeklog 1.3.10rc1, though: For the first variant (i.e. without your own link text) you currently have to enter a space between the topic ID and the closing square bracket.
To fix this, change line 1004 in system/lib-plugins.php to read
Text Formatted Code
'parm1' => str_replace (']', '', $parms[1]),
This will also be fixed in rc2.
Now if only the forum would support autotags ...
bye, Dirk