Source for file Rels.php
Documentation is available at Rels.php
* Copyright (c) 2009 - 2010 PHPPowerPoint
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* @category PHPPowerPoint
* @package PHPPowerPoint_Writer_PowerPoint2007
* @copyright Copyright (c) 2009 - 2010 PHPPowerPoint (http://www.codeplex.com/PHPPowerPoint)
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @version 0.1.0, 2009-04-27
require_once 'PHPPowerPoint.php';
/** PHPPowerPoint_Slide */
require_once 'PHPPowerPoint/Slide.php';
/** PHPPowerPoint_Writer_PowerPoint2007 */
require_once 'PHPPowerPoint/Writer/PowerPoint2007.php';
/** PHPPowerPoint_Writer_PowerPoint2007_WriterPart */
require_once 'PHPPowerPoint/Writer/PowerPoint2007/WriterPart.php';
/** PHPPowerPoint_Shared_XMLWriter */
require_once 'PHPPowerPoint/Shared/XMLWriter.php';
* PHPPowerPoint_Writer_PowerPoint2007_Rels
* @category PHPPowerPoint
* @package PHPPowerPoint_Writer_PowerPoint2007
* @copyright Copyright (c) 2009 - 2010 PHPPowerPoint (http://www.codeplex.com/PHPPowerPoint)
* Write relationships to XML format
* @param PHPPowerPoint $pPHPPowerPoint
* @return string XML Output
$objWriter->startDocument('1.0','UTF-8','yes');
$objWriter->startElement('Relationships');
$objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships');
// Relationship docProps/app.xml
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties',
// Relationship docProps/core.xml
'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties',
// Relationship ppt/presentation.xml
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument',
$objWriter->endElement();
return $objWriter->getData();
* Write presentation relationships to XML format
* @param PHPPowerPoint $pPHPPowerPoint
* @return string XML Output
$objWriter->startDocument('1.0','UTF-8','yes');
$objWriter->startElement('Relationships');
$objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships');
// Relationship slideMasters/slideMaster1.xml
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideMaster',
'slideMasters/slideMaster1.xml'
// Relationship theme/theme1.xml
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme',
// Relationships with slides
$slideCount = $pPHPPowerPoint->getSlideCount();
for ($i = 0; $i < $slideCount; ++ $i) {
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide',
'slides/slide' . ($i + 1) . '.xml'
$objWriter->endElement();
return $objWriter->getData();
* Write slide master relationships to XML format
* @return string XML Output
$objWriter->startDocument('1.0','UTF-8','yes');
$objWriter->startElement('Relationships');
$objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships');
// Write slideLayout relationships
for ($i = 0; $i < count($layoutPack->getLayouts()); ++ $i) {
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout',
'../slideLayouts/slideLayout' . ($i + 1) . '.xml'
// Relationship theme/theme1.xml
count($layoutPack->getLayouts()) + 1,
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme',
$objWriter->endElement();
return $objWriter->getData();
* Write slide layout relationships to XML format
* @return string XML Output
$objWriter->startDocument('1.0','UTF-8','yes');
$objWriter->startElement('Relationships');
$objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships');
// Write slideMaster relationship
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideMaster',
'../slideMasters/slideMaster1.xml'
$objWriter->endElement();
return $objWriter->getData();
* Write slide relationships to XML format
* Numbering is as follows:
* @param PHPPowerPoint_Slide $pSlide
* @return string XML Output
$objWriter->startDocument('1.0','UTF-8','yes');
$objWriter->startElement('Relationships');
$objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/relationships');
// Write slideLayout relationship
$layoutIndex = $layoutPack->findlayoutIndex( $pSlide->getSlideLayout() );
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout',
'../slideLayouts/slideLayout' . ($layoutIndex + 1) . '.xml'
// Write drawing relationships?
if ($pSlide->getShapeCollection()->count() > 0) {
// Loop trough images and write relationships
$iterator = $pSlide->getShapeCollection()->getIterator();
while ($iterator->valid()) {
// Write relationship for image drawing
'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image',
'../media/' . str_replace(' ', '', $iterator->current()->getIndexedFilename())
$objWriter->endElement();
return $objWriter->getData();
* Write Override content type
* @param PHPPowerPoint_Shared_XMLWriter $objWriter XML Writer
* @param int $pId Relationship ID. rId will be prepended!
* @param string $pType Relationship type
* @param string $pTarget Relationship target
* @param string $pTargetMode Relationship target mode
private function _writeRelationship(PHPPowerPoint_Shared_XMLWriter $objWriter = null, $pId = 1, $pType = '', $pTarget = '', $pTargetMode = '')
if ($pType != '' && $pTarget != '') {
$objWriter->startElement('Relationship');
$objWriter->writeAttribute('Id', 'rId' . $pId);
$objWriter->writeAttribute('Type', $pType);
$objWriter->writeAttribute('Target', $pTarget);
if ($pTargetMode != '') {
$objWriter->writeAttribute('TargetMode', $pTargetMode);
$objWriter->endElement();
throw new Exception("Invalid parameters passed.");
|