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\BstoreContainer\BSE;
   4  
   5  class Blip
   6  {
   7      /**
   8       * The parent BSE.
   9       *
  10       * @var \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE
  11       */
  12      private $parent;
  13  
  14      /**
  15       * Raw image data.
  16       *
  17       * @var string
  18       */
  19      private $data;
  20  
  21      /**
  22       * Get the raw image data.
  23       *
  24       * @return string
  25       */
  26      public function getData()
  27      {
  28          return $this->data;
  29      }
  30  
  31      /**
  32       * Set the raw image data.
  33       *
  34       * @param string $data
  35       */
  36      public function setData($data)
  37      {
  38          $this->data = $data;
  39      }
  40  
  41      /**
  42       * Set parent BSE.
  43       *
  44       * @param \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE $parent
  45       */
  46      public function setParent($parent)
  47      {
  48          $this->parent = $parent;
  49      }
  50  
  51      /**
  52       * Get parent BSE.
  53       *
  54       * @return \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE $parent
  55       */
  56      public function getParent()
  57      {
  58          return $this->parent;
  59      }
  60  }