2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Excel writer abstraction layer.
20 * @copyright (C) 2001-3001 Eloy Lafuente (stronk7) {@link http://contiento.com}
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') ||
die();
27 require_once("$CFG->libdir/phpspreadsheet/vendor/autoload.php");
29 use \PhpOffice\PhpSpreadsheet\Spreadsheet
;
30 use \PhpOffice\PhpSpreadsheet\IOFactory
;
31 use \PhpOffice\PhpSpreadsheet\Cell\Coordinate
;
32 use \PhpOffice\PhpSpreadsheet\Cell\DataType
;
33 use \PhpOffice\PhpSpreadsheet\Shared\Date
;
34 use \PhpOffice\PhpSpreadsheet\Style\Alignment
;
35 use \PhpOffice\PhpSpreadsheet\Style\Border
;
36 use \PhpOffice\PhpSpreadsheet\Style\Fill
;
37 use \PhpOffice\PhpSpreadsheet\Style\Font
;
38 use \PhpOffice\PhpSpreadsheet\Style\NumberFormat
;
39 use \PhpOffice\PhpSpreadsheet\Worksheet\Drawing
;
40 use \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet
;
43 * Define and operate over one Moodle Workbook.
45 * This class acts as a wrapper around another library
46 * maintaining Moodle functions isolated from underlying code.
48 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
49 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
52 class MoodleExcelWorkbook
{
53 /** @var PhpSpreadsheet */
54 protected $objspreadsheet;
59 /** @var string format type */
63 * Constructs one Moodle Workbook.
65 * @param string $filename The name of the file
66 * @param string $type file format type used to be 'Xls or Xlsx' but now only 'Xlsx'
68 public function __construct($filename, $type = 'Xlsx') {
71 $this->objspreadsheet
= new Spreadsheet();
72 $this->objspreadsheet
->removeSheetByIndex(0);
74 $this->filename
= $filename;
76 if (strtolower($type) === 'Xls') {
77 debugging('Xls is no longer supported, using Xlsx instead');
85 * Create one Moodle Worksheet
87 * @param string $name Name of the sheet
88 * @return MoodleExcelWorksheet
90 public function add_worksheet($name = '') {
91 return new MoodleExcelWorksheet($name, $this->objspreadsheet
);
95 * Create one cell Format.
97 * @param array $properties array of properties [name]=value;
98 * valid names are set_XXXX existing
99 * functions without the set_ part
100 * i.e: [bold]=1 for set_bold(1)...Optional!
101 * @return MoodleExcelFormat
103 public function add_format($properties = array()) {
104 return new MoodleExcelFormat($properties);
108 * Close the Moodle Workbook
110 public function close() {
113 foreach ($this->objspreadsheet
->getAllSheets() as $sheet) {
114 $sheet->setSelectedCells('A1');
116 $this->objspreadsheet
->setActiveSheetIndex(0);
118 $filename = preg_replace('/\.xlsx?$/i', '', $this->filename
);
120 $mimetype = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
121 $filename = $filename.'.xlsx';
123 if (is_https()) { // HTTPS sites - watch out for IE! KB812935 and KB316431.
124 header('Cache-Control: max-age=10');
125 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
127 } else { //normal http - prevent caching at all cost
128 header('Cache-Control: private, must-revalidate, pre-check=0, post-check=0, max-age=0');
129 header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
130 header('Pragma: no-cache');
133 if (core_useragent
::is_ie() || core_useragent
::is_edge()) {
134 $filename = rawurlencode($filename);
136 $filename = s($filename);
139 header('Content-Type: '.$mimetype);
140 header('Content-Disposition: attachment;filename="'.$filename.'"');
142 $objwriter = IOFactory
::createWriter($this->objspreadsheet
, $this->type
);
143 $objwriter->save('php://output');
147 * Not required to use.
148 * @param string $filename Name of the downloaded file
150 public function send($filename) {
151 $this->filename
= $filename;
156 * Define and operate over one Worksheet.
158 * This class acts as a wrapper around another library
159 * maintaining Moodle functions isolated from underlying code.
161 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
162 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
165 class MoodleExcelWorksheet
{
166 /** @var Worksheet */
167 protected $worksheet;
170 * Constructs one Moodle Worksheet.
172 * @param string $name The name of the file
173 * @param Spreadsheet $workbook The internal Workbook object we are creating.
175 public function __construct($name, Spreadsheet
$workbook) {
176 // Replace any characters in the name that Excel cannot cope with.
177 $name = strtr(trim($name, "'"), '[]*/\?:', ' ');
178 // Shorten the title if necessary.
179 $name = core_text
::substr($name, 0, 31);
180 // After the substr, we might now have a single quote on the end.
181 $name = trim($name, "'");
185 $name = 'Sheet'.($workbook->getSheetCount()+
1);
188 $this->worksheet
= new Worksheet($workbook, $name);
189 $this->worksheet
->setPrintGridlines(false);
191 $workbook->addSheet($this->worksheet
);
195 * Write one string somewhere in the worksheet.
197 * @param integer $row Zero indexed row
198 * @param integer $col Zero indexed column
199 * @param string $str The string to write
200 * @param mixed $format The XF format for the cell
202 public function write_string($row, $col, $str, $format = null) {
203 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
206 $this->worksheet
->getStyleByColumnAndRow($col, $row +
1)->getNumberFormat()->setFormatCode(NumberFormat
::FORMAT_TEXT
);
207 $this->worksheet
->setCellValueExplicitByColumnAndRow($col, $row +
1, $str, DataType
::TYPE_STRING
);
208 $this->apply_format($row, $col, $format);
212 * Write one number somewhere in the worksheet.
214 * @param integer $row Zero indexed row
215 * @param integer $col Zero indexed column
216 * @param float $num The number to write
217 * @param mixed $format The XF format for the cell
219 public function write_number($row, $col, $num, $format = null) {
220 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
223 $this->worksheet
->getStyleByColumnAndRow($col, $row +
1)->getNumberFormat()->setFormatCode(NumberFormat
::FORMAT_GENERAL
);
224 $this->worksheet
->setCellValueExplicitByColumnAndRow($col, $row +
1, $num, DataType
::TYPE_NUMERIC
);
225 $this->apply_format($row, $col, $format);
229 * Write one url somewhere in the worksheet.
231 * @param integer $row Zero indexed row
232 * @param integer $col Zero indexed column
233 * @param string $url The url to write
234 * @param mixed $format The XF format for the cell
236 public function write_url($row, $col, $url, $format = null) {
237 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
240 $this->worksheet
->setCellValueByColumnAndRow($col, $row +
1, $url);
241 $this->worksheet
->getCellByColumnAndRow($col, $row +
1)->getHyperlink()->setUrl($url);
242 $this->apply_format($row, $col, $format);
246 * Write one date somewhere in the worksheet.
247 * @param integer $row Zero indexed row
248 * @param integer $col Zero indexed column
249 * @param int $date The date to write in UNIX timestamp format
250 * @param mixed $format The XF format for the cell
252 public function write_date($row, $col, $date, $format = null) {
253 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
256 $getdate = usergetdate($date);
257 $exceldate = Date
::FormattedPHPToExcel(
266 $this->worksheet
->setCellValueByColumnAndRow($col, $row +
1, $exceldate);
267 $style = $this->worksheet
->getStyleByColumnAndRow($col, $row +
1);
268 $style->getNumberFormat()->setFormatCode(NumberFormat
::FORMAT_DATE_XLSX22
);
269 $this->apply_format($row, $col, $format);
273 * Write one formula somewhere in the worksheet.
275 * @param integer $row Zero indexed row
276 * @param integer $col Zero indexed column
277 * @param string $formula The formula to write
278 * @param mixed $format The XF format for the cell
280 public function write_formula($row, $col, $formula, $format = null) {
281 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
284 $this->worksheet
->setCellValueExplicitByColumnAndRow($col, $row +
1, $formula, DataType
::TYPE_FORMULA
);
285 $this->apply_format($row, $col, $format);
289 * Write one blank somewhere in the worksheet.
291 * @param integer $row Zero indexed row
292 * @param integer $col Zero indexed column
293 * @param mixed $format The XF format for the cell
295 public function write_blank($row, $col, $format = null) {
296 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
299 $this->worksheet
->setCellValueByColumnAndRow($col, $row +
1, '');
300 $this->apply_format($row, $col, $format);
304 * Write anything somewhere in the worksheet,
305 * type will be automatically detected.
307 * @param integer $row Zero indexed row
308 * @param integer $col Zero indexed column
309 * @param mixed $token What we are writing
310 * @param mixed $format The XF format for the cell
312 public function write($row, $col, $token, $format = null) {
313 // Analyse what are we trying to send.
314 if (preg_match("/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/", $token)) {
316 return $this->write_number($row, $col, $token, $format);
317 } elseif (preg_match("/^[fh]tt?p:\/\//", $token)) {
318 // Match http or ftp URL
319 return $this->write_url($row, $col, $token, '', $format);
320 } elseif (preg_match("/^mailto:/", $token)) {
322 return $this->write_url($row, $col, $token, '', $format);
323 } elseif (preg_match("/^(?:in|ex)ternal:/", $token)) {
324 // Match internal or external sheet link
325 return $this->write_url($row, $col, $token, '', $format);
326 } elseif (preg_match("/^=/", $token)) {
328 return $this->write_formula($row, $col, $token, $format);
329 } elseif (preg_match("/^@/", $token)) {
331 return $this->write_formula($row, $col, $token, $format);
332 } elseif ($token == '') {
334 return $this->write_blank($row, $col, $format);
336 // Default: match string
337 return $this->write_string($row, $col, $token, $format);
342 * Sets the height (and other settings) of one row.
344 * @param integer $row The row to set
345 * @param integer $height Height we are giving to the row (null to set just format without setting the height)
346 * @param mixed $format The optional format we are giving to the row
347 * @param bool $hidden The optional hidden attribute
348 * @param integer $level The optional outline level (0-7)
350 public function set_row($row, $height, $format = null, $hidden = false, $level = 0) {
353 } else if ($level > 7) {
356 if (isset($height)) {
357 $this->worksheet
->getRowDimension($row +
1)->setRowHeight($height);
359 $this->worksheet
->getRowDimension($row +
1)->setVisible(!$hidden);
360 $this->worksheet
->getRowDimension($row +
1)->setOutlineLevel($level);
361 $this->apply_row_format($row, $format);
365 * Sets the width (and other settings) of one column.
367 * @param integer $firstcol first column on the range
368 * @param integer $lastcol last column on the range
369 * @param integer $width width to set (null to set just format without setting the width)
370 * @param mixed $format The optional format to apply to the columns
371 * @param bool $hidden The optional hidden attribute
372 * @param integer $level The optional outline level (0-7)
374 public function set_column($firstcol, $lastcol, $width, $format = null, $hidden = false, $level = 0) {
377 } else if ($level > 7) {
380 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
382 while ($i <= $lastcol +
1) {
384 $this->worksheet
->getColumnDimensionByColumn($i)->setWidth($width);
386 $this->worksheet
->getColumnDimensionByColumn($i)->setVisible(!$hidden);
387 $this->worksheet
->getColumnDimensionByColumn($i)->setOutlineLevel($level);
388 $this->apply_column_format($i, $format);
394 * Set the option to hide grid lines on the printed page.
396 public function hide_gridlines() {
397 // Not implemented - always off.
401 * Set the option to hide gridlines on the worksheet (as seen on the screen).
403 public function hide_screen_gridlines() {
404 $this->worksheet
->setShowGridlines(false);
408 * Insert an image in a worksheet.
410 * @param integer $row The row we are going to insert the bitmap into
411 * @param integer $col The column we are going to insert the bitmap into
412 * @param string $bitmap The bitmap filename
413 * @param integer $x The horizontal position (offset) of the image inside the cell.
414 * @param integer $y The vertical position (offset) of the image inside the cell.
415 * @param integer $scalex The horizontal scale
416 * @param integer $scaley The vertical scale
418 public function insert_bitmap($row, $col, $bitmap, $x = 0, $y = 0, $scalex = 1, $scaley = 1) {
419 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
422 $objdrawing = new Drawing();
423 $objdrawing->setPath($bitmap);
424 $objdrawing->setCoordinates(Coordinate
::stringFromColumnIndex($col) . ($row +
1));
425 $objdrawing->setOffsetX($x);
426 $objdrawing->setOffsetY($y);
427 $objdrawing->setWorksheet($this->worksheet
);
429 $objdrawing->setResizeProportional(false);
430 $objdrawing->getWidth($objdrawing->getWidth() * $scalex);
433 $objdrawing->setResizeProportional(false);
434 $objdrawing->setHeight($objdrawing->getHeight() * $scaley);
439 * Merges the area given by its arguments.
441 * @param integer $firstrow First row of the area to merge
442 * @param integer $firstcol First column of the area to merge
443 * @param integer $lastrow Last row of the area to merge
444 * @param integer $lastcol Last column of the area to merge
446 public function merge_cells($firstrow, $firstcol, $lastrow, $lastcol) {
447 // For PhpSpreadsheet library, the column indexes start on 1 (instead of 0 as before).
448 $this->worksheet
->mergeCellsByColumnAndRow($firstcol +
1, $firstrow +
1, $lastcol +
1, $lastrow +
1);
451 protected function apply_format($row, $col, $format = null) {
453 $format = new MoodleExcelFormat();
454 } else if (is_array($format)) {
455 $format = new MoodleExcelFormat($format);
457 $this->worksheet
->getStyleByColumnAndRow($col, $row +
1)->applyFromArray($format->get_format_array());
460 protected function apply_column_format($col, $format = null) {
462 $format = new MoodleExcelFormat();
463 } else if (is_array($format)) {
464 $format = new MoodleExcelFormat($format);
466 $this->worksheet
->getStyle(Coordinate
::stringFromColumnIndex($col))->applyFromArray($format->get_format_array());
469 protected function apply_row_format($row, $format = null) {
471 $format = new MoodleExcelFormat();
472 } else if (is_array($format)) {
473 $format = new MoodleExcelFormat($format);
475 $this->worksheet
->getStyle($row +
1)->applyFromArray($format->get_format_array());
481 * Define and operate over one Format.
483 * A big part of this class acts as a wrapper over other libraries
484 * maintaining Moodle functions isolated from underlying code.
486 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
487 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
488 * @package moodlecore
490 class MoodleExcelFormat
{
492 protected $format = array();
495 * Constructs one Moodle Format.
497 * @param array $properties
499 public function __construct($properties = array()) {
500 // If we have something in the array of properties, compute them
501 foreach($properties as $property => $value) {
502 if(method_exists($this,"set_$property")) {
503 $aux = 'set_'.$property;
510 * Returns standardised Excel format array.
515 public function get_format_array() {
516 return $this->format
;
519 * Set the size of the text in the format (in pixels).
520 * By default all texts in generated sheets are 10pt.
522 * @param integer $size Size of the text (in points)
524 public function set_size($size) {
525 $this->format
['font']['size'] = $size;
529 * Set weight of the format.
531 * @param integer $weight Weight for the text, 0 maps to 400 (normal text),
532 * 1 maps to 700 (bold text). Valid range is: 100-1000.
533 * It's Optional, default is 1 (bold).
535 public function set_bold($weight = 1) {
539 $this->format
['font']['bold'] = ($weight > 400);
543 * Set underline of the format.
545 * @param integer $underline The value for underline. Possible values are:
546 * 1 => underline, 2 => double underline
548 public function set_underline($underline) {
549 if ($underline == 1) {
550 $this->format
['font']['underline'] = Font
::UNDERLINE_SINGLE
;
551 } else if ($underline == 2) {
552 $this->format
['font']['underline'] = Font
::UNDERLINE_DOUBLE
;
554 $this->format
['font']['underline'] = Font
::UNDERLINE_NONE
;
559 * Set italic of the format.
561 public function set_italic() {
562 $this->format
['font']['italic'] = true;
566 * Set strikeout of the format.
568 public function set_strikeout() {
569 $this->format
['font']['strikethrough'] = true;
573 * Set outlining of the format.
575 public function set_outline() {
580 * Set shadow of the format.
582 public function set_shadow() {
587 * Set the script of the text.
589 * @param integer $script The value for script type. Possible values are:
590 * 1 => superscript, 2 => subscript
592 public function set_script($script) {
594 $this->format
['font']['superscript'] = true;
595 } else if ($script == 2) {
596 $this->format
['font']['subscript'] = true;
598 $this->format
['font']['superscript'] = false;
599 $this->format
['font']['subscript'] = false;
604 * Set color of the format. Used to specify the color of the text to be formatted.
606 * @param mixed $color either a string (like 'blue'), or an integer (range is [8...63])
608 public function set_color($color) {
609 $this->format
['font']['color']['rgb'] = $this->parse_color($color);
613 * Standardise colour name.
615 * @param mixed $color name of the color (i.e.: 'blue', 'red', etc..), or an integer (range is [8...63]).
616 * @return string the RGB color value
618 protected function parse_color($color) {
619 if (strpos($color, '#') === 0) {
620 // No conversion should be needed.
621 return substr($color, 1);
624 if ($color > 7 and $color < 53) {
643 if (isset($numbers[$color])) {
644 $color = $numbers[$color];
656 'fuchsia' => 'FF00FF',
661 'magenta' => 'FF00FF',
662 'maroon' => '800000',
664 'orange' => 'FFA500',
667 'purple' => '800080',
669 'silver' => 'C0C0C0',
672 'yellow' => 'FFFF00',
675 if (isset($colors[$color])) {
676 return($colors[$color]);
679 return($colors['black']);
685 * @param mixed $color
687 public function set_fg_color($color) {
692 * Set background color of the cell.
694 * @param mixed $color either a string (like 'blue'), or an integer (range is [8...63])
696 public function set_bg_color($color) {
697 if (!isset($this->format
['fill']['fillType'])) {
698 $this->format
['fill']['fillType'] = Fill
::FILL_SOLID
;
700 $this->format
['fill']['color']['rgb'] = $this->parse_color($color);
704 * Set the cell fill pattern.
706 * @deprecated use set_bg_color() instead.
709 public function set_pattern($pattern=1) {
711 if (!isset($this->format
['fill']['color']['rgb'])) {
712 $this->set_bg_color('black');
715 unset($this->format
['fill']['color']['rgb']);
716 unset($this->format
['fill']['fillType']);
721 * Set text wrap of the format.
723 public function set_text_wrap() {
724 $this->format
['alignment']['wrapText'] = true;
728 * Set the cell alignment of the format.
730 * @param string $location alignment for the cell ('left', 'right', 'justify', etc...)
732 public function set_align($location) {
733 if (in_array($location, array('left', 'centre', 'center', 'right', 'fill', 'merge', 'justify', 'equal_space'))) {
734 $this->set_h_align($location);
736 } else if (in_array($location, array('top', 'vcentre', 'vcenter', 'bottom', 'vjustify', 'vequal_space'))) {
737 $this->set_v_align($location);
742 * Set the cell horizontal alignment of the format.
744 * @param string $location alignment for the cell ('left', 'right', 'justify', etc...)
746 public function set_h_align($location) {
749 $this->format
['alignment']['horizontal'] = Alignment
::HORIZONTAL_LEFT
;
753 $this->format
['alignment']['horizontal'] = Alignment
::HORIZONTAL_CENTER
;
756 $this->format
['alignment']['horizontal'] = Alignment
::HORIZONTAL_RIGHT
;
759 $this->format
['alignment']['horizontal'] = Alignment
::HORIZONTAL_JUSTIFY
;
762 $this->format
['alignment']['horizontal'] = Alignment
::HORIZONTAL_GENERAL
;
767 * Set the cell vertical alignment of the format.
769 * @param string $location alignment for the cell ('top', 'bottom', 'center', 'justify')
771 public function set_v_align($location) {
774 $this->format
['alignment']['vertical'] = Alignment
::VERTICAL_TOP
;
780 $this->format
['alignment']['vertical'] = Alignment
::VERTICAL_CENTER
;
784 $this->format
['alignment']['vertical'] = Alignment
::VERTICAL_JUSTIFY
;
787 $this->format
['alignment']['vertical'] = Alignment
::VERTICAL_BOTTOM
;
792 * Set the top border of the format.
794 * @param integer $style style for the cell. 1 => thin, 2 => thick
796 public function set_top($style) {
798 $this->format
['borders']['top']['borderStyle'] = Border
::BORDER_THIN
;
799 } else if ($style == 2) {
800 $this->format
['borders']['top']['borderStyle'] = Border
::BORDER_THICK
;
802 $this->format
['borders']['top']['borderStyle'] = Border
::BORDER_NONE
;
807 * Set the bottom border of the format.
809 * @param integer $style style for the cell. 1 => thin, 2 => thick
811 public function set_bottom($style) {
813 $this->format
['borders']['bottom']['borderStyle'] = Border
::BORDER_THIN
;
814 } else if ($style == 2) {
815 $this->format
['borders']['bottom']['borderStyle'] = Border
::BORDER_THICK
;
817 $this->format
['borders']['bottom']['borderStyle'] = Border
::BORDER_NONE
;
822 * Set the left border of the format.
824 * @param integer $style style for the cell. 1 => thin, 2 => thick
826 public function set_left($style) {
828 $this->format
['borders']['left']['borderStyle'] = Border
::BORDER_THIN
;
829 } else if ($style == 2) {
830 $this->format
['borders']['left']['borderStyle'] = Border
::BORDER_THICK
;
832 $this->format
['borders']['left']['borderStyle'] = Border
::BORDER_NONE
;
837 * Set the right border of the format.
839 * @param integer $style style for the cell. 1 => thin, 2 => thick
841 public function set_right($style) {
843 $this->format
['borders']['right']['borderStyle'] = Border
::BORDER_THIN
;
844 } else if ($style == 2) {
845 $this->format
['borders']['right']['borderStyle'] = Border
::BORDER_THICK
;
847 $this->format
['borders']['right']['borderStyle'] = Border
::BORDER_NONE
;
852 * Set cells borders to the same style.
854 * @param integer $style style to apply for all cell borders. 1 => thin, 2 => thick.
856 public function set_border($style) {
857 $this->set_top($style);
858 $this->set_bottom($style);
859 $this->set_left($style);
860 $this->set_right($style);
864 * Set the numerical format of the format.
865 * It can be date, time, currency, etc...
867 * @param mixed $numformat The numeric format
869 public function set_num_format($numformat) {
873 $numbers[2] = '0.00';
874 $numbers[3] = '#,##0';
875 $numbers[4] = '#,##0.00';
876 $numbers[11] = '0.00E+00';
877 $numbers[12] = '# ?/?';
878 $numbers[13] = '# ??/??';
879 $numbers[14] = 'mm-dd-yy';
880 $numbers[15] = 'd-mmm-yy';
881 $numbers[16] = 'd-mmm';
882 $numbers[17] = 'mmm-yy';
883 $numbers[22] = 'm/d/yy h:mm';
886 if ($numformat !== 0 and in_array($numformat, $numbers)) {
887 $this->format
['numberFormat']['formatCode'] = $numformat;
890 if (!isset($numbers[$numformat])) {
894 $this->format
['numberFormat']['formatCode'] = $numbers[$numformat];