ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
BSE.php
Go to the documentation of this file.
1<?php
36{
37 const BLIPTYPE_ERROR = 0x00;
38 const BLIPTYPE_UNKNOWN = 0x01;
39 const BLIPTYPE_EMF = 0x02;
40 const BLIPTYPE_WMF = 0x03;
41 const BLIPTYPE_PICT = 0x04;
42 const BLIPTYPE_JPEG = 0x05;
43 const BLIPTYPE_PNG = 0x06;
44 const BLIPTYPE_DIB = 0x07;
45 const BLIPTYPE_TIFF = 0x11;
46 const BLIPTYPE_CMYKJPEG = 0x12;
47
53 private $_parent;
54
60 private $_blip;
61
67 private $_blipType;
68
74 public function setParent($parent)
75 {
76 $this->_parent = $parent;
77 }
78
84 public function getBlip()
85 {
86 return $this->_blip;
87 }
88
94 public function setBlip($blip)
95 {
96 $this->_blip = $blip;
97 $blip->setParent($this);
98 }
99
105 public function getBlipType()
106 {
107 return $this->_blipType;
108 }
109
115 public function setBlipType($blipType)
116 {
117 $this->_blipType = $blipType;
118 }
119
120}
An exception for terminatinating execution or to throw for unit testing.
setParent($parent)
Set parent BLIP Store Entry Container.
Definition: BSE.php:74
setBlipType($blipType)
Set the BLIP type.
Definition: BSE.php:115