content = &$content;
}
// ------------------------------------------------------------------------
public function addTaxonTableBegin() {
$template = <<
TAXON |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addTaxonTableEnd() {
$template = <<
EOT;
$this->content .= $template;
$dummy = 11;
}
// ------------------------------------------------------------------------
public function addTaxonFirstRow($name, $value) {
$template = <<
$name: |
$value |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addTaxonRow($name, $value) {
$template = <<
$name: |
$value |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addHerkunftTableBegin() {
$template = <<
HERKUNFT |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addHerkunftTableEnd() {
$template = <<
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addHerkunftRow($name, $value) {
$template = <<
$name: |
$value |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addGartenherbarTableBegin() {
$template = <<
GARTENHERBAR |
Sammelnr.: |
Sammler: |
Sammeldatum: |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addGartenherbarTableEnd() {
$template = <<
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addGartenherbarRow($row) {
$sammelNr = $row['GHBelegId'];
$sammler = $row['GHSammler'];
$sammelDatum = $row['GHSamDatum'];
$template = <<
$sammelNr |
$sammler |
$sammelDatum |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addGartenstandortTableBegin() {
$template = <<
GARTENSTANDORT |
Einheit: |
Standort: |
Inv.datum: |
Anzahl: |
Gehölz: |
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addGartenstandortTableEnd() {
$template = <<
EOT;
$this->content .= $template;
}
// ------------------------------------------------------------------------
public function addGartenstandortRow($row) {
$einheit = $row['EinheitNr'];
$standort = $row['B_OrtAbkuerzung'];
$invDatum = $row['InvDatum'];
$anzahl = $row['InventurEinheiten'];
$gehoelz = $row['Gehoelzkataster'];
$template = <<
$einheit |
$standort |
$invDatum |
$anzahl |
$gehoelz |
EOT;
$this->content .= $template;
}
}
?>