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.

Differences Between: [Versions 310 and 311] [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]

   1  <?php
   2  
   3  namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer;
   4  
   5  class BstoreContainer
   6  {
   7      /**
   8       * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture).
   9       *
  10       * @var array
  11       */
  12      private $BSECollection = [];
  13  
  14      /**
  15       * Add a BLIP Store Entry.
  16       *
  17       * @param BstoreContainer\BSE $BSE
  18       */
  19      public function addBSE($BSE): void
  20      {
  21          $this->BSECollection[] = $BSE;
  22          $BSE->setParent($this);
  23      }
  24  
  25      /**
  26       * Get the collection of BLIP Store Entries.
  27       *
  28       * @return BstoreContainer\BSE[]
  29       */
  30      public function getBSECollection()
  31      {
  32          return $this->BSECollection;
  33      }
  34  }