function rtf::getInformation in Bibliography Module 7.2
Same name and namespace in other branches
- 6.2 modules/rtf/rtf_export.inc \rtf::getInformation()
- 6 class_rtf.php \rtf::getInformation()
- 7 modules/rtf/rtf_export.inc \rtf::getInformation()
1 call to rtf::getInformation()
- rtf::getDocument in modules/
rtf/ rtf_export.inc
File
- modules/
rtf/ rtf_export.inc, line 242
Class
Code
function getInformation() {
$info_buffer = "";
if (sizeof($this->info_table) > 0) {
$info_buffer = "{\\info\n";
foreach ($this->info_table as $name => $value) {
$info_buffer .= "{\\{$name} {$value}}";
}
$info_buffer .= "}\n\n";
}
return $info_buffer;
}