Lines Matching refs:value

34         $value  =   '<' . '?xml version="1.0" encoding="UTF-8"?' . ">\n";
35 $value .= '<office:document-content ';
36 $value .= 'xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" ';
37 $value .= 'xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" ';
38 $value .= 'xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" ';
39 $value .= 'xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" ';
40 $value .= 'xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" ';
41 $value .= 'xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" ';
42 $value .= 'xmlns:xlink="http://www.w3.org/1999/xlink" ';
43 $value .= 'xmlns:dc="http://purl.org/dc/elements/1.1/" ';
44 $value .= 'xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" ';
45 $value .= 'xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" ';
46 $value .= 'xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" ';
47 $value .= 'xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" ';
48 $value .= 'xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" ';
49 $value .= 'xmlns:math="http://www.w3.org/1998/Math/MathML" ';
50 $value .= 'xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" ';
51 $value .= 'xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" ';
52 $value .= 'xmlns:ooo="http://openoffice.org/2004/office" ';
53 $value .= 'xmlns:ooow="http://openoffice.org/2004/writer" ';
54 $value .= 'xmlns:oooc="http://openoffice.org/2004/calc" ';
55 $value .= 'xmlns:dom="http://www.w3.org/2001/xml-events" ';
56 $value .= 'xmlns:xforms="http://www.w3.org/2002/xforms" ';
57 $value .= 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" ';
58 $value .= 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ';
59 $value .= 'xmlns:rpt="http://openoffice.org/2005/report" ';
60 $value .= 'xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" ';
61 $value .= 'xmlns:xhtml="http://www.w3.org/1999/xhtml" ';
62 $value .= 'xmlns:grddl="http://www.w3.org/2003/g/data-view#" ';
63 $value .= 'xmlns:officeooo="http://openoffice.org/2009/office" ';
64 $value .= 'xmlns:tableooo="http://openoffice.org/2009/table" ';
65 $value .= 'xmlns:drawooo="http://openoffice.org/2010/draw" ';
66 …$value .= 'xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1…
67 …$value .= 'xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0…
68 … $value .= 'xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" ';
69 …$value .= 'xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" …
70 $value .= 'xmlns:css3t="http://www.w3.org/TR/css3-text/" ';
71 $value .= 'office:version="1.2">';
72 $value .= '<office:scripts/>';
73 $value .= '<office:font-face-decls>';
74 …$value .= '<style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol" style:f…
75 …$value .= '<style:font-face style:name="StarSymbol1" svg:font-family="StarSymbol" style:…
76 … $value .= '<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>';
77 $value .= '<style:font-face style:name="Tahoma1" svg:font-family="Tahoma"/>';
78 …$value .= '<style:font-face style:name="Lucida Sans Unicode" svg:font-family="&apos;Luci…
79 …$value .= '<style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-pitc…
80 …$value .= '<style:font-face style:name="Times New Roman" svg:font-family="&apos;Times Ne…
81 $value .= '</office:font-face-decls>';
82 $value .= $autostyles;
83 $value .= '<office:body>';
84 $value .= '<office:text>';
85 …$value .= '<office:forms form:automatic-focus="false" form:apply-design-mode="false"…
86 $value .= '<text:sequence-decls>';
87 …$value .= '<text:sequence-decl text:display-outline-level="0" text:name="Illustr…
88 …$value .= '<text:sequence-decl text:display-outline-level="0" text:name="Table"/…
89 …$value .= '<text:sequence-decl text:display-outline-level="0" text:name="Text"/>…
90 …$value .= '<text:sequence-decl text:display-outline-level="0" text:name="Drawing…
91 $value .= '</text:sequence-decls>';
92 $value .= $userfields;
93 $value .= $params->content;
94 $value .= '</office:text>';
95 $value .= '</office:body>';
96 $value .= '</office:document-content>';
98 $params->ZIP->addData('content.xml', $value);
101 $value = io_readFile(DOKU_PLUGIN.'odt/styles.xml');
109 … $value = str_replace('</office:master-styles>', $page.'</office:master-styles>', $value);
113 $original = XMLUtil::getElement('office:styles', $value);
114 $value = str_replace($original, $commonstyles, $value);
117 $value = str_replace('<office:automatic-styles/>', $autostyles, $value);
118 $params->ZIP->addData('styles.xml', $value);
209 $value = io_readFile($tempDir.'/content.xml');
210 $original = XMLUtil::getElement('office:automatic-styles', $value);
213 $value = io_readFile($tempDir.'/styles.xml');
214 $original = XMLUtil::getElement('office:automatic-styles', $value);
217 $value = io_readFile($tempDir.'/styles.xml');
218 $original = XMLUtil::getElement('office:styles', $value);
269 $value = io_readFile($file);
271 $value = preg_replace($from, $to, $value);
273 $value = str_replace($from, $to, $value);
276 fwrite($file_f, $value);