Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx;
4
 
5
class Namespaces
6
{
7
    const SCHEMAS = 'http://schemas.openxmlformats.org';
8
 
9
    const RELATIONSHIPS = 'http://schemas.openxmlformats.org/package/2006/relationships';
10
 
11
    // This one used in Reader\Xlsx
12
    const CORE_PROPERTIES = 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties';
13
 
14
    // This one used in Reader\Xlsx\Properties
15
    const CORE_PROPERTIES2 = 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties';
16
 
17
    const THUMBNAIL = 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail';
18
 
19
    const THEME = 'http://schemas.openxmlformats.org/package/2006/relationships/theme';
20
 
21
    const THEME2 = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme';
22
 
23
    const COMPATIBILITY = 'http://schemas.openxmlformats.org/markup-compatibility/2006';
24
 
25
    const MAIN = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main';
26
 
27
    const RELATIONSHIPS_DRAWING = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing';
28
 
29
    const DRAWINGML = 'http://schemas.openxmlformats.org/drawingml/2006/main';
30
 
31
    const CHART = 'http://schemas.openxmlformats.org/drawingml/2006/chart';
32
 
33
    const CHART_ALTERNATE = 'http://schemas.microsoft.com/office/drawing/2007/8/2/chart';
34
 
35
    const RELATIONSHIPS_CHART = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart';
36
 
37
    const SPREADSHEET_DRAWING = 'http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing';
38
 
39
    const SCHEMA_OFFICE_DOCUMENT = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships';
40
 
41
    const COMMENTS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments';
42
 
43
    const RELATIONSHIPS_CUSTOM_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties';
44
 
45
    const RELATIONSHIPS_EXTENDED_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties';
46
 
47
    const RELATIONSHIPS_CTRLPROP = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/ctrlProp';
48
 
49
    const CUSTOM_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/custom-properties';
50
 
51
    const EXTENDED_PROPERTIES = 'http://schemas.openxmlformats.org/officeDocument/2006/extended-properties';
52
 
53
    const PROPERTIES_VTYPES = 'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes';
54
 
55
    const HYPERLINK = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink';
56
 
57
    const OFFICE_DOCUMENT = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument';
58
 
59
    const SHARED_STRINGS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings';
60
 
61
    const STYLES = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles';
62
 
63
    const IMAGE = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image';
64
 
65
    const VML = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing';
66
 
67
    const WORKSHEET = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet';
68
 
69
    const CHARTSHEET = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chartsheet';
70
 
71
    const SCHEMA_MICROSOFT = 'http://schemas.microsoft.com/office/2006/relationships';
72
 
73
    const EXTENSIBILITY = 'http://schemas.microsoft.com/office/2006/relationships/ui/extensibility';
74
 
75
    const VBA = 'http://schemas.microsoft.com/office/2006/relationships/vbaProject';
76
 
77
    const VBA_SIGNATURE = 'http://schemas.microsoft.com/office/2006/relationships/vbaProject';
78
 
79
    const DATA_VALIDATIONS1 = 'http://schemas.microsoft.com/office/spreadsheetml/2009/9/main';
80
 
81
    const DATA_VALIDATIONS2 = 'http://schemas.microsoft.com/office/excel/2006/main';
82
 
83
    const CONTENT_TYPES = 'http://schemas.openxmlformats.org/package/2006/content-types';
84
 
85
    const RELATIONSHIPS_PRINTER_SETTINGS = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/printerSettings';
86
 
87
    const RELATIONSHIPS_TABLE = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/table';
88
 
89
    const SPREADSHEETML_AC = 'http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac';
90
 
91
    const DC_ELEMENTS = 'http://purl.org/dc/elements/1.1/';
92
 
93
    const DC_TERMS = 'http://purl.org/dc/terms/';
94
 
95
    const DC_DCMITYPE = 'http://purl.org/dc/dcmitype/';
96
 
97
    const SCHEMA_INSTANCE = 'http://www.w3.org/2001/XMLSchema-instance';
98
 
99
    const URN_EXCEL = 'urn:schemas-microsoft-com:office:excel';
100
 
101
    const URN_MSOFFICE = 'urn:schemas-microsoft-com:office:office';
102
 
103
    const URN_VML = 'urn:schemas-microsoft-com:vml';
104
 
105
    const SCHEMA_PURL = 'http://purl.oclc.org/ooxml';
106
 
107
    const PURL_OFFICE_DOCUMENT = 'http://purl.oclc.org/ooxml/officeDocument/relationships/officeDocument';
108
 
109
    const PURL_RELATIONSHIPS = 'http://purl.oclc.org/ooxml/officeDocument/relationships';
110
 
111
    const PURL_MAIN = 'http://purl.oclc.org/ooxml/spreadsheetml/main';
112
 
113
    const PURL_DRAWING = 'http://purl.oclc.org/ooxml/drawingml/main';
114
 
115
    const PURL_CHART = 'http://purl.oclc.org/ooxml/drawingml/chart';
116
 
117
    const PURL_WORKSHEET = 'http://purl.oclc.org/ooxml/officeDocument/relationships/worksheet';
118
}