Use this to build the datastore:
Code:
build_datastore('glossary_links', serialize($glossary_links),1);
and this to fetch it:
Code:
if (method_exists($vbulletin->datastore,'do_fetch'))
{ // Datastore extension exists, use it
$vbulletin->datastore->do_fetch('glossary_links',$errors);
if ($errors[0])
{ // Fetch failed, use original datastore
$vbulletin->datastore->do_db_fetch("'glossary_links'");
}
}
else
{ // No extension, use original datastore
$vbulletin->datastore->do_db_fetch("'glossary_links'");
}
$glossary_links = $vbulletin->glossary_links;