Method:
grabAbstract()
Class:
EXPORTCOMMON
Method Call:
include_once("core/file/export/EXPORTCOMMON.php");
$common = new EXPORTCOMMON($this->db);
STRING $common->grabAbstract(ASSOC ARRAY: $row, STRING: $exportType);
Description:
This method returns the abstract of a WIKINDX resource.
$row is an associative array returned by SQL::fetchAssoc().
$exportType is a string indicating the target format ('endnote', 'bibtex', 'ris' etc.) and whitespace characters within the abstract will be dealt with differently according to value here.
Usage:include_once("core/file/export/EXPORTCOMMON.php"); $common = new EXPORTCOMMON($this->db); while($row = $this->db->fetchAssoc($sth)) $abstract = $common->grabAbstract($row, 'bibtex');