| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function buildRelationshipsXML() |
||
| 22 | { |
||
| 23 | $relXml = ''; |
||
| 24 | $relXml .= $this->xml; |
||
| 25 | $relXml .= '<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">'; |
||
| 26 | $relXml .= '<Relationship Id="rId1" Type="'.$this->urlSchemaFormat.'/relationships/officeDocument"'; |
||
| 27 | $relXml .= ' Target="xl/workbook.xml"/>'; |
||
| 28 | $relXml .= '<Relationship Id="rId2" Type="'.$this->urlSchemaFormat.'/relationships/metadata/core-properties"'; |
||
| 29 | $relXml .= ' Target="docProps/core.xml"/>'; |
||
| 30 | $relXml .= '<Relationship Id="rId3" Type="'.$this->urlSchemaFormat.'/relationships/extended-properties"'; |
||
| 31 | $relXml .= ' Target="docProps/app.xml"/>'."\n"; |
||
| 32 | $relXml .= '</Relationships>'; |
||
| 33 | |||
| 34 | return $relXml; |
||
| 35 | } |
||
| 36 | } |
||
| 37 |