ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 29 of file class.ilQTIMattext.php.

Member Function Documentation

◆ getCharset()

ilQTIMattext::getCharset ( )

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

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

References $charset.

◆ getContent()

ilQTIMattext::getContent ( )

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

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

References $content.

◆ getEntityref()

ilQTIMattext::getEntityref ( )

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

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

References $entityref.

◆ getHeight()

ilQTIMattext::getHeight ( )

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

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

References $height.

◆ getLabel()

ilQTIMattext::getLabel ( )

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

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

References $label.

◆ getTexttype()

ilQTIMattext::getTexttype ( )

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

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

References $texttype.

◆ getUri()

ilQTIMattext::getUri ( )

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

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

References $uri.

◆ getWidth()

ilQTIMattext::getWidth ( )

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

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

References $width.

◆ getX0()

ilQTIMattext::getX0 ( )

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

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

References $x0.

◆ getXmllang()

ilQTIMattext::getXmllang ( )

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

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

References $xmllang.

◆ getXmlspace()

ilQTIMattext::getXmlspace ( )

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

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

References $xmlspace.

◆ getY0()

ilQTIMattext::getY0 ( )

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

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

References $y0.

◆ setCharset()

ilQTIMattext::setCharset ( string  $a_charset)

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

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

◆ setContent()

ilQTIMattext::setContent ( string  $a_content)

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

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

◆ setEntityref()

ilQTIMattext::setEntityref ( string  $a_entityref)

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

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

◆ setHeight()

ilQTIMattext::setHeight ( string  $a_height)

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

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

◆ setLabel()

ilQTIMattext::setLabel ( string  $a_label)

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

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

◆ setTexttype()

ilQTIMattext::setTexttype ( string  $a_texttype)

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

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

◆ setUri()

ilQTIMattext::setUri ( string  $a_uri)

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

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

◆ setWidth()

ilQTIMattext::setWidth ( string  $a_width)

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

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

◆ setX0()

ilQTIMattext::setX0 ( string  $a_x0)

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

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

◆ setXmllang()

ilQTIMattext::setXmllang ( string  $a_xmllang)

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

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

◆ setXmlspace()

ilQTIMattext::setXmlspace ( string  $a_xmlspace)

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

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

References SPACE_DEFAULT, and SPACE_PRESERVE.

◆ setY0()

ilQTIMattext::setY0 ( string  $a_y0)

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

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

Field Documentation

◆ $charset

string ilQTIMattext::$charset = null

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

Referenced by getCharset().

◆ $content

string ilQTIMattext::$content = null

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

Referenced by getContent().

◆ $entityref

string ilQTIMattext::$entityref = null

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

Referenced by getEntityref().

◆ $height

string ilQTIMattext::$height = null

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

Referenced by getHeight().

◆ $label

string ilQTIMattext::$label = null

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

Referenced by getLabel().

◆ $texttype

string ilQTIMattext::$texttype = null

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

Referenced by getTexttype().

◆ $uri

string ilQTIMattext::$uri = null

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

Referenced by getUri().

◆ $width

string ilQTIMattext::$width = null

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

Referenced by getWidth().

◆ $x0

string ilQTIMattext::$x0 = null

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

Referenced by getX0().

◆ $xmllang

string ilQTIMattext::$xmllang = null

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

Referenced by getXmllang().

◆ $xmlspace

string ilQTIMattext::$xmlspace = null

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

Referenced by getXmlspace().

◆ $y0

string ilQTIMattext::$y0 = null

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

Referenced by getY0().

◆ SPACE_DEFAULT

const ilQTIMattext::SPACE_DEFAULT = "2"

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

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

◆ SPACE_PRESERVE

const ilQTIMattext::SPACE_PRESERVE = "1"

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

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


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