admin
Karma: 57
|
Re:SimpleBoard Support ? - 2005/10/12 03:39
No problem. The code for Remository is shown below - Simpleboard should be able to do something similar.
| Code: |
if (file_exists ($mosConfig_absolute_path. '/mambots/content/glossarbot.php'))
require_once ($mosConfig_absolute_path. '/mambots/content/glossarbot.php');
class glossarBotRow {
var $text = '';
function glossarBotRow ($content) {
$this->text = $content;
}
}
if (is_callable('botglossarbot')) {
$glossarow = new glossarBotRow($file->description);
botglossarbot(true,$glossarow,$glossarow);
$file->description = $glossarow->text;
}
|
Martin Brampton aka Counterpoint http://black-sheep-research.com http://mamboguru.com |