Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?php

namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx;

use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
> use SimpleXMLElement;
class SheetViewOptions extends BaseParserClass { private $worksheet; private $worksheetXml;
< public function __construct(Worksheet $workSheet, \SimpleXMLElement $worksheetXml = null)
> public function __construct(Worksheet $workSheet, ?SimpleXMLElement $worksheetXml = null)
{ $this->worksheet = $workSheet; $this->worksheetXml = $worksheetXml; } /** * @param bool $readDataOnly */
< public function load($readDataOnly = false)
> public function load($readDataOnly = false): void
{ if ($this->worksheetXml === null) { return; } if (isset($this->worksheetXml->sheetPr)) { $this->tabColor($this->worksheetXml->sheetPr); $this->codeName($this->worksheetXml->sheetPr); $this->outlines($this->worksheetXml->sheetPr); $this->pageSetup($this->worksheetXml->sheetPr); } if (isset($this->worksheetXml->sheetFormatPr)) { $this->sheetFormat($this->worksheetXml->sheetFormatPr); } if (!$readDataOnly && isset($this->worksheetXml->printOptions)) { $this->printOptions($this->worksheetXml->printOptions); } }
< private function tabColor(\SimpleXMLElement $sheetPr)
> private function tabColor(SimpleXMLElement $sheetPr): void
{ if (isset($sheetPr->tabColor, $sheetPr->tabColor['rgb'])) { $this->worksheet->getTabColor()->setARGB((string) $sheetPr->tabColor['rgb']); } }
< private function codeName(\SimpleXMLElement $sheetPr)
> private function codeName(SimpleXMLElement $sheetPr): void
{ if (isset($sheetPr['codeName'])) { $this->worksheet->setCodeName((string) $sheetPr['codeName'], false); } }
< private function outlines(\SimpleXMLElement $sheetPr)
> private function outlines(SimpleXMLElement $sheetPr): void
{ if (isset($sheetPr->outlinePr)) {
< if (isset($sheetPr->outlinePr['summaryRight']) && < !self::boolean((string) $sheetPr->outlinePr['summaryRight'])) {
> if ( > isset($sheetPr->outlinePr['summaryRight']) && > !self::boolean((string) $sheetPr->outlinePr['summaryRight']) > ) {
$this->worksheet->setShowSummaryRight(false); } else { $this->worksheet->setShowSummaryRight(true); }
< if (isset($sheetPr->outlinePr['summaryBelow']) && < !self::boolean((string) $sheetPr->outlinePr['summaryBelow'])) {
> if ( > isset($sheetPr->outlinePr['summaryBelow']) && > !self::boolean((string) $sheetPr->outlinePr['summaryBelow']) > ) {
$this->worksheet->setShowSummaryBelow(false); } else { $this->worksheet->setShowSummaryBelow(true); } } }
< private function pageSetup(\SimpleXMLElement $sheetPr)
> private function pageSetup(SimpleXMLElement $sheetPr): void
{ if (isset($sheetPr->pageSetUpPr)) {
< if (isset($sheetPr->pageSetUpPr['fitToPage']) && < !self::boolean((string) $sheetPr->pageSetUpPr['fitToPage'])) {
> if ( > isset($sheetPr->pageSetUpPr['fitToPage']) && > !self::boolean((string) $sheetPr->pageSetUpPr['fitToPage']) > ) {
$this->worksheet->getPageSetup()->setFitToPage(false); } else { $this->worksheet->getPageSetup()->setFitToPage(true); } } }
< private function sheetFormat(\SimpleXMLElement $sheetFormatPr)
> private function sheetFormat(SimpleXMLElement $sheetFormatPr): void
{
< if (isset($sheetFormatPr['customHeight']) &&
> if ( > isset($sheetFormatPr['customHeight']) &&
self::boolean((string) $sheetFormatPr['customHeight']) &&
< isset($sheetFormatPr['defaultRowHeight'])) {
> isset($sheetFormatPr['defaultRowHeight']) > ) {
$this->worksheet->getDefaultRowDimension() ->setRowHeight((float) $sheetFormatPr['defaultRowHeight']); } if (isset($sheetFormatPr['defaultColWidth'])) { $this->worksheet->getDefaultColumnDimension() ->setWidth((float) $sheetFormatPr['defaultColWidth']); }
< if (isset($sheetFormatPr['zeroHeight']) && < ((string) $sheetFormatPr['zeroHeight'] === '1')) {
> if ( > isset($sheetFormatPr['zeroHeight']) && > ((string) $sheetFormatPr['zeroHeight'] === '1') > ) {
$this->worksheet->getDefaultRowDimension()->setZeroHeight(true); } }
< private function printOptions(\SimpleXMLElement $printOptions)
> private function printOptions(SimpleXMLElement $printOptions): void
{ if (self::boolean((string) $printOptions['gridLinesSet'])) { $this->worksheet->setShowGridlines(true); } if (self::boolean((string) $printOptions['gridLines'])) { $this->worksheet->setPrintGridlines(true); } if (self::boolean((string) $printOptions['horizontalCentered'])) { $this->worksheet->getPageSetup()->setHorizontalCentered(true); } if (self::boolean((string) $printOptions['verticalCentered'])) { $this->worksheet->getPageSetup()->setVerticalCentered(true); } } }