setPhpWord($phpWord); $this->parts = array('Head', 'Body'); foreach ($this->parts as $partName) { $partClass = 'PhpOffice\\PhpWord\\Writer\\HTML\\Part\\' . $partName; if (class_exists($partClass)) { /** @var \PhpOffice\PhpWord\Writer\HTML\Part\AbstractPart $part Type hint */ $part = new $partClass(); $part->setParentWriter($this); $this->writerParts[strtolower($partName)] = $part; } } } /** * Save PhpWord to file. * * @param string $filename * * @throws \PhpOffice\PhpWord\Exception\Exception */ public function save($filename = null) { $this->writeFile($this->openFile($filename), $this->getContent()); } /** * Get content * * @return string * @since 0.11.0 */ public function getContent() { $content = ''; $content .= '' . PHP_EOL; $content .= '' . PHP_EOL; $content .= '' . PHP_EOL; $content .= $this->getWriterPart('Head')->write(); $content .= $this->getWriterPart('Body')->write(); $content .= '' . PHP_EOL; return $content; } /** * Get is PDF * * @return bool */ public function isPdf() { return $this->isPdf; } /** * Get notes * * @return array */ public function getNotes() { return $this->notes; } /** * Add note. * * @param int $noteId * @param string $noteMark */ public function addNote($noteId, $noteMark) { $this->notes[$noteId] = $noteMark; } /** * Write document * * @deprecated 0.11.0 * * @return string * * @codeCoverageIgnore */ public function writeDocument() { return $this->getContent(); } }