ILIAS  release_8 Revision v8.24
ilQTIMattext Class Reference
+ Collaboration diagram for ilQTIMattext:

Public Member Functions

 setTexttype (string $a_texttype)
 
 getTexttype ()
 
 setLabel (string $a_label)
 
 getLabel ()
 
 setHeight (string $a_height)
 
 getHeight ()
 
 setWidth (string $a_width)
 
 getWidth ()
 
 setCharset (string $a_charset)
 
 getCharset ()
 
 setUri (string $a_uri)
 
 getUri ()
 
 setXmllang (string $a_xmllang)
 
 getXmllang ()
 
 setXmlspace (string $a_xmlspace)
 
 getXmlspace ()
 
 setX0 (string $a_x0)
 
 getX0 ()
 
 setY0 (string $a_y0)
 
 getY0 ()
 
 setEntityref (string $a_entityref)
 
 getEntityref ()
 
 setContent (string $a_content)
 
 getContent ()
 

Data Fields

const SPACE_PRESERVE = "1"
 
const SPACE_DEFAULT = "2"
 
string $texttype = null
 
string $label = null
 
string $charset = null
 
string $uri = null
 
string $xmlspace = null
 
string $xmllang = null
 
string $entityref = null
 
string $width = null
 
string $height = null
 
string $x0 = null
 
string $y0 = null
 
string $content = null
 

Detailed Description

Definition at line 30 of file class.ilQTIMattext.php.

Member Function Documentation

◆ getCharset()

ilQTIMattext::getCharset ( )

Definition at line 93 of file class.ilQTIMattext.php.

93 : ?string
94 {
95 return $this->charset;
96 }

References $charset.

◆ getContent()

ilQTIMattext::getContent ( )

Definition at line 172 of file class.ilQTIMattext.php.

172 : ?string
173 {
174 return $this->content;
175 }

References $content.

◆ getEntityref()

ilQTIMattext::getEntityref ( )

Definition at line 162 of file class.ilQTIMattext.php.

162 : ?string
163 {
164 return $this->entityref;
165 }

References $entityref.

◆ getHeight()

ilQTIMattext::getHeight ( )

Definition at line 73 of file class.ilQTIMattext.php.

73 : ?string
74 {
75 return $this->height;
76 }

References $height.

◆ getLabel()

ilQTIMattext::getLabel ( )

Definition at line 63 of file class.ilQTIMattext.php.

63 : ?string
64 {
65 return $this->label;
66 }

References $label.

◆ getTexttype()

ilQTIMattext::getTexttype ( )

Definition at line 53 of file class.ilQTIMattext.php.

53 : ?string
54 {
55 return $this->texttype;
56 }

References $texttype.

◆ getUri()

ilQTIMattext::getUri ( )

Definition at line 103 of file class.ilQTIMattext.php.

103 : ?string
104 {
105 return $this->uri;
106 }

References $uri.

◆ getWidth()

ilQTIMattext::getWidth ( )

Definition at line 83 of file class.ilQTIMattext.php.

83 : ?string
84 {
85 return $this->width;
86 }

References $width.

◆ getX0()

ilQTIMattext::getX0 ( )

Definition at line 142 of file class.ilQTIMattext.php.

142 : ?string
143 {
144 return $this->x0;
145 }

References $x0.

◆ getXmllang()

ilQTIMattext::getXmllang ( )

Definition at line 113 of file class.ilQTIMattext.php.

113 : ?string
114 {
115 return $this->xmllang;
116 }

References $xmllang.

◆ getXmlspace()

ilQTIMattext::getXmlspace ( )

Definition at line 132 of file class.ilQTIMattext.php.

132 : ?string
133 {
134 return $this->xmlspace;
135 }

References $xmlspace.

◆ getY0()

ilQTIMattext::getY0 ( )

Definition at line 152 of file class.ilQTIMattext.php.

152 : ?string
153 {
154 return $this->y0;
155 }

References $y0.

◆ setCharset()

ilQTIMattext::setCharset ( string  $a_charset)

Definition at line 88 of file class.ilQTIMattext.php.

88 : void
89 {
90 $this->charset = $a_charset;
91 }

◆ setContent()

ilQTIMattext::setContent ( string  $a_content)

Definition at line 167 of file class.ilQTIMattext.php.

167 : void
168 {
169 $this->content = $a_content;
170 }

◆ setEntityref()

ilQTIMattext::setEntityref ( string  $a_entityref)

Definition at line 157 of file class.ilQTIMattext.php.

157 : void
158 {
159 $this->entityref = $a_entityref;
160 }

◆ setHeight()

ilQTIMattext::setHeight ( string  $a_height)

Definition at line 68 of file class.ilQTIMattext.php.

68 : void
69 {
70 $this->height = $a_height;
71 }

◆ setLabel()

ilQTIMattext::setLabel ( string  $a_label)

Definition at line 58 of file class.ilQTIMattext.php.

58 : void
59 {
60 $this->label = $a_label;
61 }

◆ setTexttype()

ilQTIMattext::setTexttype ( string  $a_texttype)

Definition at line 48 of file class.ilQTIMattext.php.

48 : void
49 {
50 $this->texttype = $a_texttype;
51 }

◆ setUri()

ilQTIMattext::setUri ( string  $a_uri)

Definition at line 98 of file class.ilQTIMattext.php.

98 : void
99 {
100 $this->uri = $a_uri;
101 }

◆ setWidth()

ilQTIMattext::setWidth ( string  $a_width)

Definition at line 78 of file class.ilQTIMattext.php.

78 : void
79 {
80 $this->width = $a_width;
81 }

◆ setX0()

ilQTIMattext::setX0 ( string  $a_x0)

Definition at line 137 of file class.ilQTIMattext.php.

137 : void
138 {
139 $this->x0 = $a_x0;
140 }

◆ setXmllang()

ilQTIMattext::setXmllang ( string  $a_xmllang)

Definition at line 108 of file class.ilQTIMattext.php.

108 : void
109 {
110 $this->xmllang = $a_xmllang;
111 }

◆ setXmlspace()

ilQTIMattext::setXmlspace ( string  $a_xmlspace)

Definition at line 118 of file class.ilQTIMattext.php.

118 : void
119 {
120 switch (strtolower($a_xmlspace)) {
121 case "preserve":
122 case "1":
123 $this->xmlspace = self::SPACE_PRESERVE;
124 break;
125 case "default":
126 case "2":
127 $this->xmlspace = self::SPACE_DEFAULT;
128 break;
129 }
130 }

References SPACE_DEFAULT, and SPACE_PRESERVE.

◆ setY0()

ilQTIMattext::setY0 ( string  $a_y0)

Definition at line 147 of file class.ilQTIMattext.php.

147 : void
148 {
149 $this->y0 = $a_y0;
150 }

Field Documentation

◆ $charset

string ilQTIMattext::$charset = null

Definition at line 37 of file class.ilQTIMattext.php.

Referenced by getCharset().

◆ $content

string ilQTIMattext::$content = null

Definition at line 46 of file class.ilQTIMattext.php.

Referenced by getContent().

◆ $entityref

string ilQTIMattext::$entityref = null

Definition at line 41 of file class.ilQTIMattext.php.

Referenced by getEntityref().

◆ $height

string ilQTIMattext::$height = null

Definition at line 43 of file class.ilQTIMattext.php.

Referenced by getHeight().

◆ $label

string ilQTIMattext::$label = null

Definition at line 36 of file class.ilQTIMattext.php.

Referenced by getLabel().

◆ $texttype

string ilQTIMattext::$texttype = null

Definition at line 35 of file class.ilQTIMattext.php.

Referenced by getTexttype().

◆ $uri

string ilQTIMattext::$uri = null

Definition at line 38 of file class.ilQTIMattext.php.

Referenced by getUri().

◆ $width

string ilQTIMattext::$width = null

Definition at line 42 of file class.ilQTIMattext.php.

Referenced by getWidth().

◆ $x0

string ilQTIMattext::$x0 = null

Definition at line 44 of file class.ilQTIMattext.php.

Referenced by getX0().

◆ $xmllang

string ilQTIMattext::$xmllang = null

Definition at line 40 of file class.ilQTIMattext.php.

Referenced by getXmllang().

◆ $xmlspace

string ilQTIMattext::$xmlspace = null

Definition at line 39 of file class.ilQTIMattext.php.

Referenced by getXmlspace().

◆ $y0

string ilQTIMattext::$y0 = null

Definition at line 45 of file class.ilQTIMattext.php.

Referenced by getY0().

◆ SPACE_DEFAULT

const ilQTIMattext::SPACE_DEFAULT = "2"

Definition at line 33 of file class.ilQTIMattext.php.

Referenced by setXmlspace(), and ilQTIMattextTest\xmlSpaces().

◆ SPACE_PRESERVE

const ilQTIMattext::SPACE_PRESERVE = "1"

Definition at line 32 of file class.ilQTIMattext.php.

Referenced by setXmlspace(), and ilQTIMattextTest\xmlSpaces().


The documentation for this class was generated from the following file: