You are here

function rtf::getInformation in Bibliography Module 6

Same name and namespace in other branches
  1. 6.2 modules/rtf/rtf_export.inc \rtf::getInformation()
  2. 7 modules/rtf/rtf_export.inc \rtf::getInformation()
  3. 7.2 modules/rtf/rtf_export.inc \rtf::getInformation()
1 call to rtf::getInformation()
rtf::getDocument in ./class_rtf.php

File

./class_rtf.php, line 243

Class

rtf

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;
}