destination = $destination; $this->data = $data; } /** * @return array */ public function getData() { return $this->data; } /** * @return string */ public function getDestination() { return $this->destination; } public function renderContent() { $content = <<<'EOT' POST data
%s
EOT; $fields = ''; foreach ($this->data as $name => $value) { $fields .= sprintf( '', htmlspecialchars($name), htmlspecialchars($value) ); } $content = sprintf($content, htmlspecialchars($this->destination ?? ''), $fields); $this->setContent($content); } }