Exemple #1
0
 public function writeStyles(PHPWord $pPHPWord = null)
 {
     // Create XML writer
     $objWriter = null;
     if ($this->getParentWriter()->getUseDiskCaching()) {
         $objWriter = new PHPWord_Shared_XMLWriter(PHPWord_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory());
     } else {
         $objWriter = new PHPWord_Shared_XMLWriter(PHPWord_Shared_XMLWriter::STORAGE_MEMORY);
     }
     $this->_document = $pPHPWord;
     // XML header
     $objWriter->startDocument('1.0', 'UTF-8', 'yes');
     $objWriter->startElement('w:styles');
     $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships');
     $objWriter->writeAttribute('xmlns:w', 'http://schemas.openxmlformats.org/wordprocessingml/2006/main');
     // Write DocDefaults
     $this->_writeDocDefaults($objWriter);
     // Write Style Definitions
     $styles = PHPWord_Style::getStyles();
     if (count($styles) > 0) {
         foreach ($styles as $styleName => $style) {
             if ($style instanceof PHPWord_Style_Font) {
                 $paragraphStyle = $style->getParagraphStyle();
                 $styleType = $style->getStyleType();
                 $type = $styleType == 'title' ? 'paragraph' : 'character';
                 if (!is_null($paragraphStyle)) {
                     $type = 'paragraph';
                 }
                 $objWriter->startElement('w:style');
                 $objWriter->writeAttribute('w:type', $type);
                 if ($styleType == 'title') {
                     $arrStyle = explode('_', $styleName);
                     $styleId = 'Heading' . $arrStyle[1];
                     $styleName = 'heading ' . $arrStyle[1];
                     $styleLink = 'Heading' . $arrStyle[1] . 'Char';
                     $objWriter->writeAttribute('w:styleId', $styleId);
                     $objWriter->startElement('w:link');
                     $objWriter->writeAttribute('w:val', $styleLink);
                     $objWriter->endElement();
                 }
                 $objWriter->startElement('w:name');
                 $objWriter->writeAttribute('w:val', $styleName);
                 $objWriter->endElement();
                 if (!is_null($paragraphStyle)) {
                     $this->_writeParagraphStyle($objWriter, $paragraphStyle);
                 }
                 $this->_writeTextStyle($objWriter, $style);
                 $objWriter->endElement();
             } elseif ($style instanceof PHPWord_Style_Paragraph) {
                 $objWriter->startElement('w:style');
                 $objWriter->writeAttribute('w:type', 'paragraph');
                 $objWriter->writeAttribute('w:customStyle', '1');
                 $objWriter->writeAttribute('w:styleId', $styleName);
                 $objWriter->startElement('w:name');
                 $objWriter->writeAttribute('w:val', $styleName);
                 $objWriter->endElement();
                 $this->_writeParagraphStyle($objWriter, $style);
                 $objWriter->endElement();
             } elseif ($style instanceof PHPWord_Style_TableFull) {
                 $objWriter->startElement('w:style');
                 $objWriter->writeAttribute('w:type', 'table');
                 $objWriter->writeAttribute('w:customStyle', '1');
                 $objWriter->writeAttribute('w:styleId', $styleName);
                 $objWriter->startElement('w:name');
                 $objWriter->writeAttribute('w:val', $styleName);
                 $objWriter->endElement();
                 $objWriter->startElement('w:uiPriority');
                 $objWriter->writeAttribute('w:val', '99');
                 $objWriter->endElement();
                 $this->_writeFullTableStyle($objWriter, $style);
                 $objWriter->endElement();
             }
         }
     }
     $objWriter->endElement();
     // w:styles
     // Return
     return $objWriter->getData();
 }
Exemple #2
0
 /**
  * Add a Title Element
  * 
  * @param string $text
  * @param int $depth
  * @return PHPWord_Section_Title
  */
 public function addTitle($text, $depth = 1)
 {
     $styles = PHPWord_Style::getStyles();
     if (array_key_exists('Heading_' . $depth, $styles)) {
         $style = 'Heading' . $depth;
     } else {
         $style = null;
     }
     $title = new PHPWord_Section_Title($text, $depth, $style);
     $data = PHPWord_TOC::addTitle($text, $depth);
     $anchor = $data[0];
     $bookmarkId = $data[1];
     $title->setAnchor($anchor);
     $title->setBookmarkId($bookmarkId);
     $this->_elementCollection[] = $title;
     return $title;
 }
 /**
  * Write content file to XML format
  *
  * @param    PHPWord $pPHPWord
  * @return    string                        XML Output
  * @throws    Exception
  */
 public function writeContent(PHPWord $pPHPWord = null)
 {
     // Create XML writer
     $objWriter = null;
     if ($this->getParentWriter()->getUseDiskCaching()) {
         $objWriter = new PHPWord_Shared_XMLWriter(PHPWord_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory());
     } else {
         $objWriter = new PHPWord_Shared_XMLWriter(PHPWord_Shared_XMLWriter::STORAGE_MEMORY);
     }
     // XML header
     $objWriter->startDocument('1.0', 'UTF-8');
     // office:document-content
     $objWriter->startElement('office:document-content');
     $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0');
     $objWriter->writeAttribute('xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0');
     $objWriter->writeAttribute('xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0');
     $objWriter->writeAttribute('xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0');
     $objWriter->writeAttribute('xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0');
     $objWriter->writeAttribute('xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0');
     $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink');
     $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/');
     $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0');
     $objWriter->writeAttribute('xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0');
     $objWriter->writeAttribute('xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0');
     $objWriter->writeAttribute('xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0');
     $objWriter->writeAttribute('xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0');
     $objWriter->writeAttribute('xmlns:math', 'http://www.w3.org/1998/Math/MathML');
     $objWriter->writeAttribute('xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0');
     $objWriter->writeAttribute('xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0');
     $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office');
     $objWriter->writeAttribute('xmlns:ooow', 'http://openoffice.org/2004/writer');
     $objWriter->writeAttribute('xmlns:oooc', 'http://openoffice.org/2004/calc');
     $objWriter->writeAttribute('xmlns:dom', 'http://www.w3.org/2001/xml-events');
     $objWriter->writeAttribute('xmlns:xforms', 'http://www.w3.org/2002/xforms');
     $objWriter->writeAttribute('xmlns:xsd', 'http://www.w3.org/2001/XMLSchema');
     $objWriter->writeAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
     $objWriter->writeAttribute('xmlns:rpt', 'http://openoffice.org/2005/report');
     $objWriter->writeAttribute('xmlns:of', 'urn:oasis:names:tc:opendocument:xmlns:of:1.2');
     $objWriter->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml');
     $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#');
     $objWriter->writeAttribute('xmlns:tableooo', 'http://openoffice.org/2009/table');
     $objWriter->writeAttribute('xmlns:field', 'urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0');
     $objWriter->writeAttribute('xmlns:formx', 'urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0');
     $objWriter->writeAttribute('xmlns:css3t', 'http://www.w3.org/TR/css3-text/');
     $objWriter->writeAttribute('office:version', '1.2');
     // We firstly search all fonts used
     $_sections = $pPHPWord->getSections();
     $countSections = count($_sections);
     if ($countSections > 0) {
         $pSection = 0;
         $numPStyles = 0;
         $numFStyles = 0;
         foreach ($_sections as $section) {
             $pSection++;
             $_elements = $section->getElements();
             foreach ($_elements as $element) {
                 if ($element instanceof PHPWord_Section_Text) {
                     $fStyle = $element->getFontStyle();
                     $pStyle = $element->getParagraphStyle();
                     if ($fStyle instanceof PHPWord_Style_Font) {
                         $numFStyles++;
                         $arrStyle = array('color' => $fStyle->getColor(), 'name' => $fStyle->getName());
                         $pPHPWord->addFontStyle('T' . $numFStyles, $arrStyle);
                         $element->setFontStyle('T' . $numFStyles);
                     } elseif ($pStyle instanceof PHPWord_Style_Paragraph) {
                         $numPStyles++;
                         $pPHPWord->addParagraphStyle('P' . $numPStyles, array());
                         $element->setParagraph('P' . $numPStyles);
                     }
                 }
             }
         }
     }
     // office:font-face-decls
     $objWriter->startElement('office:font-face-decls');
     $arrFonts = array();
     $styles = PHPWord_Style::getStyles();
     $numFonts = 0;
     if (count($styles) > 0) {
         foreach ($styles as $styleName => $style) {
             // PHPWord_Style_Font
             if ($style instanceof PHPWord_Style_Font) {
                 $numFonts++;
                 $name = $style->getName();
                 if (!in_array($name, $arrFonts)) {
                     $arrFonts[] = $name;
                     // style:font-face
                     $objWriter->startElement('style:font-face');
                     $objWriter->writeAttribute('style:name', $name);
                     $objWriter->writeAttribute('svg:font-family', $name);
                     $objWriter->endElement();
                 }
             }
         }
         if (!in_array('Times New Roman', $arrFonts)) {
             $objWriter->startElement('style:font-face');
             $objWriter->writeAttribute('style:name', 'Times New Roman');
             $objWriter->writeAttribute('svg:font-family', 'Times New Roman');
             $objWriter->endElement();
         }
     }
     $objWriter->endElement();
     $objWriter->startElement('office:automatic-styles');
     $styles = PHPWord_Style::getStyles();
     $numPStyles = 0;
     if (count($styles) > 0) {
         foreach ($styles as $styleName => $style) {
             if (preg_match('#^T[0-9]+$#', $styleName) != 0 || preg_match('#^P[0-9]+$#', $styleName) != 0) {
                 // PHPWord_Style_Font
                 if ($style instanceof PHPWord_Style_Font) {
                     $objWriter->startElement('style:style');
                     $objWriter->writeAttribute('style:name', $styleName);
                     $objWriter->writeAttribute('style:family', 'text');
                     // style:text-properties
                     $objWriter->startElement('style:text-properties');
                     $objWriter->writeAttribute('fo:color', '#' . $style->getColor());
                     $objWriter->writeAttribute('style:font-name', $style->getName());
                     $objWriter->writeAttribute('style:font-name-complex', $style->getName());
                     $objWriter->endElement();
                     $objWriter->endElement();
                 }
                 if ($style instanceof PHPWord_Style_Paragraph) {
                     $numPStyles++;
                     // style:style
                     $objWriter->startElement('style:style');
                     $objWriter->writeAttribute('style:name', $styleName);
                     $objWriter->writeAttribute('style:family', 'paragraph');
                     $objWriter->writeAttribute('style:parent-style-name', 'Standard');
                     $objWriter->writeAttribute('style:master-page-name', 'Standard');
                     // style:paragraph-properties
                     $objWriter->startElement('style:paragraph-properties');
                     $objWriter->writeAttribute('style:page-number', 'auto');
                     $objWriter->endElement();
                     $objWriter->endElement();
                 }
             }
         }
         if ($numPStyles == 0) {
             // style:style
             $objWriter->startElement('style:style');
             $objWriter->writeAttribute('style:name', 'P1');
             $objWriter->writeAttribute('style:family', 'paragraph');
             $objWriter->writeAttribute('style:parent-style-name', 'Standard');
             $objWriter->writeAttribute('style:master-page-name', 'Standard');
             // style:paragraph-properties
             $objWriter->startElement('style:paragraph-properties');
             $objWriter->writeAttribute('style:page-number', 'auto');
             $objWriter->endElement();
             $objWriter->endElement();
         }
     }
     $objWriter->endElement();
     // office:body
     $objWriter->startElement('office:body');
     // office:text
     $objWriter->startElement('office:text');
     // text:sequence-decls
     $objWriter->startElement('text:sequence-decls');
     // text:sequence-decl
     $objWriter->startElement('text:sequence-decl');
     $objWriter->writeAttribute('text:display-outline-level', 0);
     $objWriter->writeAttribute('text:name', 'Illustration');
     $objWriter->endElement();
     // text:sequence-decl
     $objWriter->startElement('text:sequence-decl');
     $objWriter->writeAttribute('text:display-outline-level', 0);
     $objWriter->writeAttribute('text:name', 'Table');
     $objWriter->endElement();
     // text:sequence-decl
     $objWriter->startElement('text:sequence-decl');
     $objWriter->writeAttribute('text:display-outline-level', 0);
     $objWriter->writeAttribute('text:name', 'Text');
     $objWriter->endElement();
     // text:sequence-decl
     $objWriter->startElement('text:sequence-decl');
     $objWriter->writeAttribute('text:display-outline-level', 0);
     $objWriter->writeAttribute('text:name', 'Drawing');
     $objWriter->endElement();
     $objWriter->endElement();
     $_sections = $pPHPWord->getSections();
     $countSections = count($_sections);
     $pSection = 0;
     if ($countSections > 0) {
         foreach ($_sections as $section) {
             $pSection++;
             $_elements = $section->getElements();
             foreach ($_elements as $element) {
                 if ($element instanceof PHPWord_Section_Text) {
                     $this->_writeText($objWriter, $element);
                 } elseif ($element instanceof PHPWord_Section_TextBreak) {
                     $this->_writeTextBreak($objWriter);
                 } else {
                     print_r($element);
                     echo '<br />';
                 }
             }
             if ($pSection == $countSections) {
                 $this->_writeEndSection($objWriter, $section);
             } else {
                 $this->_writeSection($objWriter, $section);
             }
         }
     }
     $objWriter->endElement();
     $objWriter->endElement();
     $objWriter->endElement();
     // Return
     return $objWriter->getData();
 }
 /**
  * Write Styles file to XML format
  *
  * @param 	PHPWord $pPHPWord
  * @return 	string 						XML Output
  * @throws 	Exception
  */
 public function writeStyles(PHPWord $pPHPWord = null)
 {
     // Create XML writer
     $objWriter = null;
     if ($this->getParentWriter()->getUseDiskCaching()) {
         $objWriter = new PHPWord_Shared_XMLWriter(PHPWord_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory());
     } else {
         $objWriter = new PHPWord_Shared_XMLWriter(PHPWord_Shared_XMLWriter::STORAGE_MEMORY);
     }
     // XML header
     $objWriter->startDocument('1.0', 'UTF-8');
     // Styles:Styles
     $objWriter->startElement('office:document-styles');
     $objWriter->writeAttribute('xmlns:office', 'urn:oasis:names:tc:opendocument:xmlns:office:1.0');
     $objWriter->writeAttribute('xmlns:style', 'urn:oasis:names:tc:opendocument:xmlns:style:1.0');
     $objWriter->writeAttribute('xmlns:text', 'urn:oasis:names:tc:opendocument:xmlns:text:1.0');
     $objWriter->writeAttribute('xmlns:table', 'urn:oasis:names:tc:opendocument:xmlns:table:1.0');
     $objWriter->writeAttribute('xmlns:draw', 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0');
     $objWriter->writeAttribute('xmlns:fo', 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0');
     $objWriter->writeAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink');
     $objWriter->writeAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/');
     $objWriter->writeAttribute('xmlns:meta', 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0');
     $objWriter->writeAttribute('xmlns:number', 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0');
     $objWriter->writeAttribute('xmlns:svg', 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0');
     $objWriter->writeAttribute('xmlns:chart', 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0');
     $objWriter->writeAttribute('xmlns:dr3d', 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0');
     $objWriter->writeAttribute('xmlns:math', 'http://www.w3.org/1998/Math/MathML');
     $objWriter->writeAttribute('xmlns:form', 'urn:oasis:names:tc:opendocument:xmlns:form:1.0');
     $objWriter->writeAttribute('xmlns:script', 'urn:oasis:names:tc:opendocument:xmlns:script:1.0');
     $objWriter->writeAttribute('xmlns:ooo', 'http://openoffice.org/2004/office');
     $objWriter->writeAttribute('xmlns:ooow', 'http://openoffice.org/2004/writer');
     $objWriter->writeAttribute('xmlns:oooc', 'http://openoffice.org/2004/calc');
     $objWriter->writeAttribute('xmlns:dom', 'http://www.w3.org/2001/xml-events');
     $objWriter->writeAttribute('xmlns:rpt', 'http://openoffice.org/2005/report');
     $objWriter->writeAttribute('xmlns:of', 'urn:oasis:names:tc:opendocument:xmlns:of:1.2');
     $objWriter->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml');
     $objWriter->writeAttribute('xmlns:grddl', 'http://www.w3.org/2003/g/data-view#');
     $objWriter->writeAttribute('xmlns:tableooo', 'http://openoffice.org/2009/table');
     $objWriter->writeAttribute('xmlns:css3t', 'http://www.w3.org/TR/css3-text/');
     $objWriter->writeAttribute('office:version', '1.2');
     // office:font-face-decls
     $objWriter->startElement('office:font-face-decls');
     $arrFonts = array();
     $styles = PHPWord_Style::getStyles();
     $numFonts = 0;
     if (count($styles) > 0) {
         foreach ($styles as $styleName => $style) {
             // PHPWord_Style_Font
             if ($style instanceof PHPWord_Style_Font) {
                 $numFonts++;
                 $name = $style->getName();
                 if (!in_array($name, $arrFonts)) {
                     $arrFonts[] = $name;
                     // style:font-face
                     $objWriter->startElement('style:font-face');
                     $objWriter->writeAttribute('style:name', $name);
                     $objWriter->writeAttribute('svg:font-family', $name);
                     $objWriter->endElement();
                 }
             }
         }
     }
     if (!in_array('Arial', $arrFonts)) {
         $objWriter->startElement('style:font-face');
         $objWriter->writeAttribute('style:name', 'Arial');
         $objWriter->writeAttribute('svg:font-family', 'Arial');
         $objWriter->endElement();
     }
     $objWriter->endElement();
     // office:styles
     $objWriter->startElement('office:styles');
     // style:default-style
     $objWriter->startElement('style:default-style');
     $objWriter->writeAttribute('style:family', 'paragraph');
     // style:paragraph-properties
     $objWriter->startElement('style:paragraph-properties');
     $objWriter->writeAttribute('fo:hyphenation-ladder-count', 'no-limit');
     $objWriter->writeAttribute('style:text-autospace', 'ideograph-alpha');
     $objWriter->writeAttribute('style:punctuation-wrap', 'hanging');
     $objWriter->writeAttribute('style:line-break', 'strict');
     $objWriter->writeAttribute('style:tab-stop-distance', '1.249cm');
     $objWriter->writeAttribute('style:writing-mode', 'page');
     $objWriter->endElement();
     // style:text-properties
     $objWriter->startElement('style:text-properties');
     $objWriter->writeAttribute('style:use-window-font-color', 'true');
     $objWriter->writeAttribute('style:font-name', 'Arial');
     $objWriter->writeAttribute('fo:font-size', '10pt');
     $objWriter->writeAttribute('fo:language', 'fr');
     $objWriter->writeAttribute('fo:country', 'FR');
     $objWriter->writeAttribute('style:letter-kerning', 'true');
     $objWriter->writeAttribute('style:font-name-asian', 'Arial2');
     $objWriter->writeAttribute('style:font-size-asian', '10pt');
     $objWriter->writeAttribute('style:language-asian', 'zh');
     $objWriter->writeAttribute('style:country-asian', 'CN');
     $objWriter->writeAttribute('style:font-name-complex', 'Arial2');
     $objWriter->writeAttribute('style:font-size-complex', '10pt');
     $objWriter->writeAttribute('style:language-complex', 'hi');
     $objWriter->writeAttribute('style:country-complex', 'IN');
     $objWriter->writeAttribute('fo:hyphenate', 'false');
     $objWriter->writeAttribute('fo:hyphenation-remain-char-count', '2');
     $objWriter->writeAttribute('fo:hyphenation-push-char-count', '2');
     $objWriter->endElement();
     $objWriter->endElement();
     // Write Style Definitions
     $styles = PHPWord_Style::getStyles();
     if (count($styles) > 0) {
         foreach ($styles as $styleName => $style) {
             if (preg_match('#^T[0-9]+$#', $styleName) == 0 && preg_match('#^P[0-9]+$#', $styleName) == 0) {
                 // PHPWord_Style_Font
                 if ($style instanceof PHPWord_Style_Font) {
                     // style:style
                     $objWriter->startElement('style:style');
                     $objWriter->writeAttribute('style:name', $styleName);
                     $objWriter->writeAttribute('style:family', 'text');
                     // style:text-properties
                     $objWriter->startElement('style:text-properties');
                     $objWriter->writeAttribute('fo:font-size', $style->getSize() / 2 . 'pt');
                     $objWriter->writeAttribute('style:font-size-asian', $style->getSize() / 2 . 'pt');
                     $objWriter->writeAttribute('style:font-size-complex', $style->getSize() / 2 . 'pt');
                     if ($style->getItalic()) {
                         $objWriter->writeAttribute('fo:font-style', 'italic');
                         $objWriter->writeAttribute('style:font-style-asian', 'italic');
                         $objWriter->writeAttribute('style:font-style-complex', 'italic');
                     }
                     if ($style->getBold()) {
                         $objWriter->writeAttribute('fo:font-weight', 'bold');
                         $objWriter->writeAttribute('style:font-weight-asian', 'bold');
                     }
                     $objWriter->endElement();
                     $objWriter->endElement();
                 } elseif ($style instanceof PHPWord_Style_Paragraph) {
                     // style:style
                     $objWriter->startElement('style:style');
                     $objWriter->writeAttribute('style:name', $styleName);
                     $objWriter->writeAttribute('style:family', 'paragraph');
                     //style:paragraph-properties
                     $objWriter->startElement('style:paragraph-properties');
                     $objWriter->writeAttribute('fo:margin-top', (is_null($style->getSpaceBefore()) ? '0' : round(17.6 / $style->getSpaceBefore(), 2)) . 'cm');
                     $objWriter->writeAttribute('fo:margin-bottom', (is_null($style->getSpaceAfter()) ? '0' : round(17.6 / $style->getSpaceAfter(), 2)) . 'cm');
                     $objWriter->writeAttribute('fo:text-align', $style->getAlign());
                     $objWriter->endElement();
                     $objWriter->endElement();
                 } elseif ($style instanceof PHPWord_Style_TableFull) {
                 }
             }
         }
     }
     $objWriter->endElement();
     // office:automatic-styles
     $objWriter->startElement('office:automatic-styles');
     // style:page-layout
     $objWriter->startElement('style:page-layout');
     $objWriter->writeAttribute('style:name', 'Mpm1');
     // style:page-layout-properties
     $objWriter->startElement('style:page-layout-properties');
     $objWriter->writeAttribute('fo:page-width', "21.001cm");
     $objWriter->writeAttribute('fo:page-height', '29.7cm');
     $objWriter->writeAttribute('style:num-format', '1');
     $objWriter->writeAttribute('style:print-orientation', 'portrait');
     $objWriter->writeAttribute('fo:margin-top', '2.501cm');
     $objWriter->writeAttribute('fo:margin-bottom', '2cm');
     $objWriter->writeAttribute('fo:margin-left', '2.501cm');
     $objWriter->writeAttribute('fo:margin-right', '2.501cm');
     $objWriter->writeAttribute('style:writing-mode', 'lr-tb');
     $objWriter->writeAttribute('style:layout-grid-color', '#c0c0c0');
     $objWriter->writeAttribute('style:layout-grid-lines', '25199');
     $objWriter->writeAttribute('style:layout-grid-base-height', '0.423cm');
     $objWriter->writeAttribute('style:layout-grid-ruby-height', '0cm');
     $objWriter->writeAttribute('style:layout-grid-mode', 'none');
     $objWriter->writeAttribute('style:layout-grid-ruby-below', 'false');
     $objWriter->writeAttribute('style:layout-grid-print', 'false');
     $objWriter->writeAttribute('style:layout-grid-display', 'false');
     $objWriter->writeAttribute('style:layout-grid-base-width', '0.37cm');
     $objWriter->writeAttribute('style:layout-grid-snap-to', 'true');
     $objWriter->writeAttribute('style:footnote-max-height', '0cm');
     //style:footnote-sep
     $objWriter->startElement('style:footnote-sep');
     $objWriter->writeAttribute('style:width', '0.018cm');
     $objWriter->writeAttribute('style:line-style', 'solid');
     $objWriter->writeAttribute('style:adjustment', 'left');
     $objWriter->writeAttribute('style:rel-width', '25%');
     $objWriter->writeAttribute('style:color', '#000000');
     $objWriter->endElement();
     $objWriter->endElement();
     // style:header-style
     $objWriter->startElement('style:header-style');
     $objWriter->endElement();
     // style:footer-style
     $objWriter->startElement('style:footer-style');
     $objWriter->endElement();
     $objWriter->endElement();
     $objWriter->endElement();
     // office:master-styles
     $objWriter->startElement('office:master-styles');
     // style:master-page
     $objWriter->startElement('style:master-page');
     $objWriter->writeAttribute('style:name', 'Standard');
     $objWriter->writeAttribute('style:page-layout-name', 'Mpm1');
     $objWriter->endElement();
     $objWriter->endElement();
     $objWriter->endElement();
     // Return
     return $objWriter->getData();
 }
Exemple #5
0
 private function _getDataColor()
 {
     $pPHPWord = $this->_document;
     $arrColors = array();
     // PHPWord object : $this->_document
     // Browse styles
     $styles = PHPWord_Style::getStyles();
     $numPStyles = 0;
     if (count($styles) > 0) {
         foreach ($styles as $styleName => $style) {
             // PHPWord_Style_Font
             if ($style instanceof PHPWord_Style_Font) {
                 $color = $style->getColor();
                 $fgcolor = $style->getFgColor();
                 if (in_array($color, $arrColors) == FALSE && $color != '000000' && !empty($color)) {
                     $arrColors[] = $color;
                 }
                 if (in_array($fgcolor, $arrColors) == FALSE && $fgcolor != '000000' && !empty($fgcolor)) {
                     $arrColors[] = $fgcolor;
                 }
             }
         }
     }
     // Search all fonts used
     $_sections = $pPHPWord->getSections();
     $countSections = count($_sections);
     if ($countSections > 0) {
         $pSection = 0;
         foreach ($_sections as $section) {
             $pSection++;
             $_elements = $section->getElements();
             foreach ($_elements as $element) {
                 if ($element instanceof PHPWord_Section_Text) {
                     $fStyle = $element->getFontStyle();
                     if ($fStyle instanceof PHPWord_Style_Font) {
                         if (in_array($fStyle->getColor(), $arrColors) == FALSE) {
                             $arrColors[] = $fStyle->getColor();
                         }
                         if (in_array($fStyle->getFgColor(), $arrColors) == FALSE) {
                             $arrColors[] = $fStyle->getFgColor();
                         }
                     }
                 }
             }
         }
     }
     return $arrColors;
 }