Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
   1  <?php
   2  
   3  namespace Box\Spout\Reader\ODS\Manager;
   4  
   5  use Box\Spout\Common\Manager\OptionsManagerAbstract;
   6  use Box\Spout\Reader\Common\Entity\Options;
   7  
   8  /**
   9   * Class OptionsManager
  10   * ODS Reader options manager
  11   */
  12  class OptionsManager extends OptionsManagerAbstract
  13  {
  14      /**
  15       * {@inheritdoc}
  16       */
  17      protected function getSupportedOptions()
  18      {
  19          return [
  20              Options::SHOULD_FORMAT_DATES,
  21              Options::SHOULD_PRESERVE_EMPTY_ROWS,
  22          ];
  23      }
  24  
  25      /**
  26       * {@inheritdoc}
  27       */
  28      protected function setDefaultOptions()
  29      {
  30          $this->setOption(Options::SHOULD_FORMAT_DATES, false);
  31          $this->setOption(Options::SHOULD_PRESERVE_EMPTY_ROWS, false);
  32      }
  33  }