![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/vendor/box/spout/src/Spout/Writer/XLSX/Manager/ |
<?php namespace Box\Spout\Writer\XLSX\Manager; use Box\Spout\Common\Manager\OptionsManagerAbstract; use Box\Spout\Writer\Common\Creator\Style\StyleBuilder; use Box\Spout\Writer\Common\Entity\Options; /** * Class OptionsManager * XLSX Writer options manager */ class OptionsManager extends OptionsManagerAbstract { /** Default style font values */ const DEFAULT_FONT_SIZE = 12; const DEFAULT_FONT_NAME = 'Calibri'; /** @var StyleBuilder Style builder */ protected $styleBuilder; /** * OptionsManager constructor. * @param StyleBuilder $styleBuilder */ public function __construct(StyleBuilder $styleBuilder) { $this->styleBuilder = $styleBuilder; parent::__construct(); } /** * {@inheritdoc} */ protected function getSupportedOptions() { return [ Options::TEMP_FOLDER, Options::DEFAULT_ROW_STYLE, Options::SHOULD_CREATE_NEW_SHEETS_AUTOMATICALLY, Options::SHOULD_USE_INLINE_STRINGS, ]; } /** * {@inheritdoc} */ protected function setDefaultOptions() { $defaultRowStyle = $this->styleBuilder ->setFontSize(self::DEFAULT_FONT_SIZE) ->setFontName(self::DEFAULT_FONT_NAME) ->build(); $this->setOption(Options::TEMP_FOLDER, \sys_get_temp_dir()); $this->setOption(Options::DEFAULT_ROW_STYLE, $defaultRowStyle); $this->setOption(Options::SHOULD_CREATE_NEW_SHEETS_AUTOMATICALLY, true); $this->setOption(Options::SHOULD_USE_INLINE_STRINGS, true); } }