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.

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

   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)
  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  }