public function rtf::getInformation in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/rtf/rtf_export.inc \rtf::getInformation()
- 6 class_rtf.php \rtf::getInformation()
- 7.2 modules/rtf/rtf_export.inc \rtf::getInformation()
Information.
1 call to rtf::getInformation()
- rtf::getDocument in modules/
rtf/ rtf_export.inc - Ouput the RTF file.
File
- modules/
rtf/ rtf_export.inc, line 299
Class
Code
public function getInformation() {
$info_buffer = "";
if (count($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;
}