ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilLMLayout Class Reference

Class ilLMLayout. More...

+ Collaboration diagram for ilLMLayout:

Public Member Functions

 ilLMLayout ()
 Constructor @access public. More...
 
 setKeepWithPrevious ($a_keep)
 set keep with previous More...
 
 getKeepWithPrevious ()
 get keep with previous More...
 
 setKeepWithNext ($a_keep)
 set keep with next More...
 
 getKeepWithNext ()
 get keep with next More...
 
 setCssUrl ($a_url)
 set css url More...
 
 getCssUrl ()
 get css url More...
 
 setHorizontalAlign ($a_align)
 set horizontal align More...
 
 getHorizontalAlign ()
 get horizontal align More...
 
 setVerticalAlign ($a_align)
 set vertical align More...
 
 getVerticalAlign ()
 get vertical align More...
 
 setTargetFrame ($a_frame)
 set target frame ????? More...
 
 getTargetFrame ()
 get target frame ????? More...
 
 setWidth ($a_width)
 set width More...
 
 getWidth ()
 get width More...
 
 setHeight ($a_height)
 set height More...
 
 getHeight ()
 get height More...
 

Data Fields

 $ilias
 
 $keep_with_previous
 
 $keep_with_next
 
 $css_url
 
 $ver_align
 
 $hor_align
 
 $target_frame
 
 $width
 
 $height
 

Detailed Description

Class ilLMLayout.

Handles Layout Section of Page, Structure and Media Objects (see ILIAS DTD)

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

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

Member Function Documentation

◆ getCssUrl()

ilLMLayout::getCssUrl ( )

get css url

Definition at line 111 of file class.ilLMLayout.php.

112 {
113 return $this->css_url;
114 }

References $css_url.

◆ getHeight()

ilLMLayout::getHeight ( )

get height

Definition at line 202 of file class.ilLMLayout.php.

203 {
204 return $this->height;
205 }

References $height.

◆ getHorizontalAlign()

ilLMLayout::getHorizontalAlign ( )

get horizontal align

Definition at line 129 of file class.ilLMLayout.php.

130 {
131 return $this->hor_align;
132 }

References $hor_align.

◆ getKeepWithNext()

ilLMLayout::getKeepWithNext ( )

get keep with next

Definition at line 91 of file class.ilLMLayout.php.

92 {
94 }

References $keep_with_next.

◆ getKeepWithPrevious()

ilLMLayout::getKeepWithPrevious ( )

get keep with previous

Definition at line 71 of file class.ilLMLayout.php.

72 {
74 }

References $keep_with_previous.

◆ getTargetFrame()

ilLMLayout::getTargetFrame ( )

get target frame ?????

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

167 {
168 return $this->target_frame;
169 }

References $target_frame.

◆ getVerticalAlign()

ilLMLayout::getVerticalAlign ( )

get vertical align

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

148 {
149 return $this->ver_align;
150 }

References $ver_align.

◆ getWidth()

ilLMLayout::getWidth ( )

get width

Definition at line 184 of file class.ilLMLayout.php.

185 {
186 return $this->width;
187 }

References $width.

◆ ilLMLayout()

ilLMLayout::ilLMLayout ( )

Constructor @access public.

Definition at line 50 of file class.ilLMLayout.php.

51 {
52 global $ilias;
53
54 $this->ilias =& $ilias;
55 }
redirection script todo: (a better solution should control the processing via a xml file)

References $ilias.

◆ setCssUrl()

ilLMLayout::setCssUrl (   $a_url)

set css url

Parameters
string$a_urlCSS URL

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

103 {
104 $this->css_url = $a_url;
105 }

◆ setHeight()

ilLMLayout::setHeight (   $a_height)

set height

Parameters
string$a_heightheight

Definition at line 194 of file class.ilLMLayout.php.

195 {
196 $this->height = $a_height;
197 }

◆ setHorizontalAlign()

ilLMLayout::setHorizontalAlign (   $a_align)

set horizontal align

Parameters
string$a_alignleft | center | right

Definition at line 121 of file class.ilLMLayout.php.

122 {
123 $this->hor_align = $a_align;
124 }

◆ setKeepWithNext()

ilLMLayout::setKeepWithNext (   $a_keep)

set keep with next

Parameters
boolean$a_keep

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

83 {
84 $this->keep_with_next = $a_keep;
85 }

◆ setKeepWithPrevious()

ilLMLayout::setKeepWithPrevious (   $a_keep)

set keep with previous

Parameters
boolean$a_keep

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

63 {
64 $this->keep_with_previous = $a_keep;
65 }

◆ setTargetFrame()

ilLMLayout::setTargetFrame (   $a_frame)

set target frame ?????

Parameters
string$a_alignMedia | FAQ | Glossary

Definition at line 158 of file class.ilLMLayout.php.

159 {
160 $this->target_frame = $a_frame;
161 }

◆ setVerticalAlign()

ilLMLayout::setVerticalAlign (   $a_align)

set vertical align

Parameters
string$a_aligntop | middle | bottom

Definition at line 139 of file class.ilLMLayout.php.

140 {
141 $this->ver_align = $a_align;
142 }

◆ setWidth()

ilLMLayout::setWidth (   $a_width)

set width

Parameters
string$a_widthwidth

Definition at line 176 of file class.ilLMLayout.php.

177 {
178 $this->width = $a_width;
179 }

Field Documentation

◆ $css_url

ilLMLayout::$css_url

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

Referenced by getCssUrl().

◆ $height

ilLMLayout::$height

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

Referenced by getHeight().

◆ $hor_align

ilLMLayout::$hor_align

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

Referenced by getHorizontalAlign().

◆ $ilias

ilLMLayout::$ilias

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

Referenced by ilLMLayout().

◆ $keep_with_next

ilLMLayout::$keep_with_next

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

Referenced by getKeepWithNext().

◆ $keep_with_previous

ilLMLayout::$keep_with_previous

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

Referenced by getKeepWithPrevious().

◆ $target_frame

ilLMLayout::$target_frame

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

Referenced by getTargetFrame().

◆ $ver_align

ilLMLayout::$ver_align

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

Referenced by getVerticalAlign().

◆ $width

ilLMLayout::$width

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

Referenced by getWidth().


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