【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-05-05 8a7dab004bc3eca7808d0cc196a329464402bbc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
/**
 * PHPExcel
 *
 * Copyright (c) 2006 - 2014 PHPExcel
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * @category   PHPExcel
 * @package    PHPExcel_Writer_Excel2007
 * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
 * @version    1.8.0, 2014-03-02
 */
 
 
/**
 * PHPExcel_Writer_Excel2007_ContentTypes
 *
 * @category   PHPExcel
 * @package    PHPExcel_Writer_Excel2007
 * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
 */
class PHPExcel_Writer_Excel2007_ContentTypes extends PHPExcel_Writer_Excel2007_WriterPart
{
    /**
     * Write content types to XML format
     *
     * @param     PHPExcel    $pPHPExcel
     * @param    boolean        $includeCharts    Flag indicating if we should include drawing details for charts
     * @return     string                         XML Output
     * @throws     PHPExcel_Writer_Exception
     */
    public function writeContentTypes(PHPExcel $pPHPExcel = null, $includeCharts = FALSE)
    {
        // Create XML writer
        $objWriter = null;
        if ($this->getParentWriter()->getUseDiskCaching()) {
            $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory());
        } else {
            $objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY);
        }
 
        // XML header
        $objWriter->startDocument('1.0','UTF-8','yes');
 
        // Types
        $objWriter->startElement('Types');
        $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/package/2006/content-types');
 
            // Theme
            $this->_writeOverrideContentType(
                $objWriter, '/xl/theme/theme1.xml', 'application/vnd.openxmlformats-officedocument.theme+xml'
            );
 
            // Styles
            $this->_writeOverrideContentType(
                $objWriter, '/xl/styles.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml'
            );
 
            // Rels
            $this->_writeDefaultContentType(
                $objWriter, 'rels', 'application/vnd.openxmlformats-package.relationships+xml'
            );
 
            // XML
            $this->_writeDefaultContentType(
                $objWriter, 'xml', 'application/xml'
            );
 
            // VML
            $this->_writeDefaultContentType(
                $objWriter, 'vml', 'application/vnd.openxmlformats-officedocument.vmlDrawing'
            );
 
            // Workbook
            if($pPHPExcel->hasMacros()){ //Macros in workbook ?
                // Yes : not standard content but "macroEnabled"
                $this->_writeOverrideContentType(
                    $objWriter, '/xl/workbook.xml', 'application/vnd.ms-excel.sheet.macroEnabled.main+xml'
                );
                //... and define a new type for the VBA project
                $this->_writeDefaultContentType(
                            $objWriter, 'bin', 'application/vnd.ms-office.vbaProject'
                        );
                if($pPHPExcel->hasMacrosCertificate()){// signed macros ?
                    // Yes : add needed information
                    $this->_writeOverrideContentType(
                        $objWriter, '/xl/vbaProjectSignature.bin', 'application/vnd.ms-office.vbaProjectSignature'
                );
                }
            }else{// no macros in workbook, so standard type
                $this->_writeOverrideContentType(
                    $objWriter, '/xl/workbook.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml'
                );
            }
 
            // DocProps
            $this->_writeOverrideContentType(
                $objWriter, '/docProps/app.xml', 'application/vnd.openxmlformats-officedocument.extended-properties+xml'
            );
 
            $this->_writeOverrideContentType(
                $objWriter, '/docProps/core.xml', 'application/vnd.openxmlformats-package.core-properties+xml'
            );
 
            $customPropertyList = $pPHPExcel->getProperties()->getCustomProperties();
            if (!empty($customPropertyList)) {
                $this->_writeOverrideContentType(
                    $objWriter, '/docProps/custom.xml', 'application/vnd.openxmlformats-officedocument.custom-properties+xml'
                );
            }
 
            // Worksheets
            $sheetCount = $pPHPExcel->getSheetCount();
            for ($i = 0; $i < $sheetCount; ++$i) {
                $this->_writeOverrideContentType(
                    $objWriter, '/xl/worksheets/sheet' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml'
                );
            }
 
            // Shared strings
            $this->_writeOverrideContentType(
                $objWriter, '/xl/sharedStrings.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml'
            );
 
            // Add worksheet relationship content types
            $chart = 1;
            for ($i = 0; $i < $sheetCount; ++$i) {
                $drawings = $pPHPExcel->getSheet($i)->getDrawingCollection();
                $drawingCount = count($drawings);
                $chartCount = ($includeCharts) ? $pPHPExcel->getSheet($i)->getChartCount() : 0;
 
                //    We need a drawing relationship for the worksheet if we have either drawings or charts
                if (($drawingCount > 0) || ($chartCount > 0)) {
                    $this->_writeOverrideContentType(
                        $objWriter, '/xl/drawings/drawing' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.drawing+xml'
                    );
                }
 
                //    If we have charts, then we need a chart relationship for every individual chart
                if ($chartCount > 0) {
                    for ($c = 0; $c < $chartCount; ++$c) {
                        $this->_writeOverrideContentType(
                            $objWriter, '/xl/charts/chart' . $chart++ . '.xml', 'application/vnd.openxmlformats-officedocument.drawingml.chart+xml'
                        );
                    }
                }
            }
 
            // Comments
            for ($i = 0; $i < $sheetCount; ++$i) {
                if (count($pPHPExcel->getSheet($i)->getComments()) > 0) {
                    $this->_writeOverrideContentType(
                        $objWriter, '/xl/comments' . ($i + 1) . '.xml', 'application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml'
                    );
                }
            }
 
            // Add media content-types
            $aMediaContentTypes = array();
            $mediaCount = $this->getParentWriter()->getDrawingHashTable()->count();
            for ($i = 0; $i < $mediaCount; ++$i) {
                $extension     = '';
                $mimeType     = '';
 
                if ($this->getParentWriter()->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_Drawing) {
                    $extension     = strtolower($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getExtension());
                    $mimeType     = $this->_getImageMimeType( $this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getPath() );
                } else if ($this->getParentWriter()->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_MemoryDrawing) {
                    $extension     = strtolower($this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getMimeType());
                    $extension     = explode('/', $extension);
                    $extension     = $extension[1];
 
                    $mimeType     = $this->getParentWriter()->getDrawingHashTable()->getByIndex($i)->getMimeType();
                }
 
                if (!isset( $aMediaContentTypes[$extension]) ) {
                        $aMediaContentTypes[$extension] = $mimeType;
 
                        $this->_writeDefaultContentType(
                            $objWriter, $extension, $mimeType
                        );
                }
            }
            if($pPHPExcel->hasRibbonBinObjects()){//Some additional objects in the ribbon ?
                //we need to write "Extension" but not already write for media content
                $tabRibbonTypes=array_diff($pPHPExcel->getRibbonBinObjects('types'), array_keys($aMediaContentTypes));
                foreach($tabRibbonTypes as $aRibbonType){
                    $mimeType='image/.'.$aRibbonType;//we wrote $mimeType like customUI Editor
                    $this->_writeDefaultContentType(
                        $objWriter, $aRibbonType, $mimeType
                    );
                }    
            }
            $sheetCount = $pPHPExcel->getSheetCount();
            for ($i = 0; $i < $sheetCount; ++$i) {
                if (count($pPHPExcel->getSheet()->getHeaderFooter()->getImages()) > 0) {
                    foreach ($pPHPExcel->getSheet()->getHeaderFooter()->getImages() as $image) {
                        if (!isset( $aMediaContentTypes[strtolower($image->getExtension())]) ) {
                            $aMediaContentTypes[strtolower($image->getExtension())] = $this->_getImageMimeType( $image->getPath() );
 
                            $this->_writeDefaultContentType(
                                $objWriter, strtolower($image->getExtension()), $aMediaContentTypes[strtolower($image->getExtension())]
                            );
                        }
                    }
                }
            }
 
        $objWriter->endElement();
 
        // Return
        return $objWriter->getData();
    }
 
    /**
     * Get image mime type
     *
     * @param     string    $pFile    Filename
     * @return     string    Mime Type
     * @throws     PHPExcel_Writer_Exception
     */
    private function _getImageMimeType($pFile = '')
    {
        if (PHPExcel_Shared_File::file_exists($pFile)) {
            $image = getimagesize($pFile);
            return image_type_to_mime_type($image[2]);
        } else {
            throw new PHPExcel_Writer_Exception("File $pFile does not exist");
        }
    }
 
    /**
     * Write Default content type
     *
     * @param     PHPExcel_Shared_XMLWriter     $objWriter         XML Writer
     * @param     string                         $pPartname         Part name
     * @param     string                         $pContentType     Content type
     * @throws     PHPExcel_Writer_Exception
     */
    private function _writeDefaultContentType(PHPExcel_Shared_XMLWriter $objWriter = null, $pPartname = '', $pContentType = '')
    {
        if ($pPartname != '' && $pContentType != '') {
            // Write content type
            $objWriter->startElement('Default');
            $objWriter->writeAttribute('Extension',     $pPartname);
            $objWriter->writeAttribute('ContentType',     $pContentType);
            $objWriter->endElement();
        } else {
            throw new PHPExcel_Writer_Exception("Invalid parameters passed.");
        }
    }
 
    /**
     * Write Override content type
     *
     * @param     PHPExcel_Shared_XMLWriter     $objWriter         XML Writer
     * @param     string                         $pPartname         Part name
     * @param     string                         $pContentType     Content type
     * @throws     PHPExcel_Writer_Exception
     */
    private function _writeOverrideContentType(PHPExcel_Shared_XMLWriter $objWriter = null, $pPartname = '', $pContentType = '')
    {
        if ($pPartname != '' && $pContentType != '') {
            // Write content type
            $objWriter->startElement('Override');
            $objWriter->writeAttribute('PartName',         $pPartname);
            $objWriter->writeAttribute('ContentType',     $pContentType);
            $objWriter->endElement();
        } else {
            throw new PHPExcel_Writer_Exception("Invalid parameters passed.");
        }
    }
}