1: <?php
2: 3: 4: 5: 6: 7:
8: class DocPropsDirAppStructureDocFile extends StructureDocFile {
9: public function __construct() {
10: $this->name = 'app.xml';
11: }
12:
13: public function getContent() {
14: return '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
15: <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Template>Normal.dotm</Template><TotalTime>0</TotalTime><Pages>1</Pages><Words>0</Words><Characters>0</Characters><Application>Microsoft Office Word</Application><DocSecurity>0</DocSecurity><Lines>0</Lines><Paragraphs>0</Paragraphs><ScaleCrop>false</ScaleCrop><Company></Company><LinksUpToDate>false</LinksUpToDate><CharactersWithSpaces>0</CharactersWithSpaces><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>14.0000</AppVersion></Properties>';
16: }
17: }