1: <?php
2: 3: 4: 5: 6: 7:
8: class RelsDirRelsStructureDocFile extends StructureDocFile {
9: public function __construct() {
10: $this->name = '.rels';
11: }
12:
13: public function getContent() {
14: return '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
15: <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/></Relationships>';
16: }
17: }