ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
BSE.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class BSE
6 {
7  const BLIPTYPE_ERROR = 0x00;
8  const BLIPTYPE_UNKNOWN = 0x01;
9  const BLIPTYPE_EMF = 0x02;
10  const BLIPTYPE_WMF = 0x03;
11  const BLIPTYPE_PICT = 0x04;
12  const BLIPTYPE_JPEG = 0x05;
13  const BLIPTYPE_PNG = 0x06;
14  const BLIPTYPE_DIB = 0x07;
15  const BLIPTYPE_TIFF = 0x11;
16  const BLIPTYPE_CMYKJPEG = 0x12;
17 
23  private $parent;
24 
30  private $blip;
31 
37  private $blipType;
38 
44  public function setParent($parent): void
45  {
46  $this->parent = $parent;
47  }
48 
54  public function getBlip()
55  {
56  return $this->blip;
57  }
58 
64  public function setBlip($blip): void
65  {
66  $this->blip = $blip;
67  $blip->setParent($this);
68  }
69 
75  public function getBlipType()
76  {
77  return $this->blipType;
78  }
79 
85  public function setBlipType($blipType): void
86  {
87  $this->blipType = $blipType;
88  }
89 }
setParent($parent)
Set parent BLIP Store Entry Container.
Definition: BSE.php:44