FIXED: indentation.
This commit is contained in:
Roman Syroeshko 2014-03-03 21:12:05 +04:00
parent a8b73b9061
commit b765312469
1 changed files with 15 additions and 15 deletions

View File

@ -64,7 +64,7 @@ class PHPWord_Template
if ($this->_tempFileName !== false) { if ($this->_tempFileName !== false) {
// Copy the source File to the temp File // Copy the source File to the temp File
if (!copy($strFilename, $this->_tempFileName)) { if (!copy($strFilename, $this->_tempFileName)) {
throw new PHPWord_Exception('Could not copy the template from ' . $strFilename . ' to ' . $this->_tempFileName . '.'); throw new PHPWord_Exception("Could not copy the template from {$strFilename} to {$this->_tempFileName}.");
} }
$this->_objZip = new ZipArchive(); $this->_objZip = new ZipArchive();
@ -85,25 +85,25 @@ class PHPWord_Template
*/ */
public function applyXslStyleSheet(&$xslDOMDocument, $xslOptions = array(), $xslOptionsURI = '') public function applyXslStyleSheet(&$xslDOMDocument, $xslOptions = array(), $xslOptionsURI = '')
{ {
$processor = new \XSLTProcessor(); $processor = new \XSLTProcessor();
$processor->importStylesheet($xslDOMDocument); $processor->importStylesheet($xslDOMDocument);
if ($processor->setParameter($xslOptionsURI, $xslOptions) === false) { if ($processor->setParameter($xslOptionsURI, $xslOptions) === false) {
throw new \Exception('Could not set values for the given XSL style sheet parameters.'); throw new \Exception('Could not set values for the given XSL style sheet parameters.');
} }
$xmlDOMDocument = new \DOMDocument(); $xmlDOMDocument = new \DOMDocument();
if ($xmlDOMDocument->loadXML($this->_documentXML) === false) { if ($xmlDOMDocument->loadXML($this->_documentXML) === false) {
throw new \Exception('Could not load XML from the given template.'); throw new \Exception('Could not load XML from the given template.');
} }
$xmlTransformed = $processor->transformToXml($xmlDOMDocument); $xmlTransformed = $processor->transformToXml($xmlDOMDocument);
if ($xmlTransformed === false) { if ($xmlTransformed === false) {
throw new \Exception('Could not transform the given XML document.'); throw new \Exception('Could not transform the given XML document.');
} }
$this->_documentXML = $xmlTransformed; $this->_documentXML = $xmlTransformed;
} }
/** /**