Class ilLMLayout. More...
Public Member Functions | |
ilLMLayout () | |
Constructor public. | |
setKeepWithPrevious ($a_keep) | |
set keep with previous | |
getKeepWithPrevious () | |
get keep with previous | |
setKeepWithNext ($a_keep) | |
set keep with next | |
getKeepWithNext () | |
get keep with next | |
setCssUrl ($a_url) | |
set css url | |
getCssUrl () | |
get css url | |
setHorizontalAlign ($a_align) | |
set horizontal align | |
getHorizontalAlign () | |
get horizontal align | |
setVerticalAlign ($a_align) | |
set vertical align | |
getVerticalAlign () | |
get vertical align | |
setTargetFrame ($a_frame) | |
set target frame ????? | |
getTargetFrame () | |
get target frame ????? | |
setWidth ($a_width) | |
set width | |
getWidth () | |
get width | |
setHeight ($a_height) | |
set height | |
getHeight () | |
get height | |
Data Fields | |
$ilias | |
$keep_with_previous | |
$keep_with_next | |
$css_url | |
$ver_align | |
$hor_align | |
$target_frame | |
$width | |
$height |
Class ilLMLayout.
Handles Layout Section of Page, Structure and Media Objects (see ILIAS DTD)
Definition at line 34 of file class.ilLMLayout.php.
ilLMLayout::getCssUrl | ( | ) |
ilLMLayout::getHeight | ( | ) |
ilLMLayout::getHorizontalAlign | ( | ) |
get horizontal align
Definition at line 129 of file class.ilLMLayout.php.
{
return $this->hor_align;
}
ilLMLayout::getKeepWithNext | ( | ) |
get keep with next
Definition at line 91 of file class.ilLMLayout.php.
{
return $this->keep_with_next;
}
ilLMLayout::getKeepWithPrevious | ( | ) |
get keep with previous
Definition at line 71 of file class.ilLMLayout.php.
{
return $this->keep_with_previous;
}
ilLMLayout::getTargetFrame | ( | ) |
get target frame ?????
Definition at line 166 of file class.ilLMLayout.php.
{
return $this->target_frame;
}
ilLMLayout::getVerticalAlign | ( | ) |
get vertical align
Definition at line 147 of file class.ilLMLayout.php.
{
return $this->ver_align;
}
ilLMLayout::getWidth | ( | ) |
ilLMLayout::ilLMLayout | ( | ) |
Constructor public.
Definition at line 50 of file class.ilLMLayout.php.
References $ilias.
{ global $ilias; $this->ilias =& $ilias; }
ilLMLayout::setCssUrl | ( | $ | a_url | ) |
set css url
string | $a_url CSS URL |
Definition at line 102 of file class.ilLMLayout.php.
{ $this->css_url = $a_url; }
ilLMLayout::setHeight | ( | $ | a_height | ) |
set height
string | $a_height height |
Definition at line 194 of file class.ilLMLayout.php.
{ $this->height = $a_height; }
ilLMLayout::setHorizontalAlign | ( | $ | a_align | ) |
set horizontal align
string | $a_align left | center | right |
Definition at line 121 of file class.ilLMLayout.php.
{ $this->hor_align = $a_align; }
ilLMLayout::setKeepWithNext | ( | $ | a_keep | ) |
set keep with next
boolean | $a_keep |
Definition at line 82 of file class.ilLMLayout.php.
{ $this->keep_with_next = $a_keep; }
ilLMLayout::setKeepWithPrevious | ( | $ | a_keep | ) |
set keep with previous
boolean | $a_keep |
Definition at line 62 of file class.ilLMLayout.php.
{ $this->keep_with_previous = $a_keep; }
ilLMLayout::setTargetFrame | ( | $ | a_frame | ) |
set target frame ?????
string | $a_align Media | FAQ | Glossary |
Definition at line 158 of file class.ilLMLayout.php.
{ $this->target_frame = $a_frame; }
ilLMLayout::setVerticalAlign | ( | $ | a_align | ) |
set vertical align
string | $a_align top | middle | bottom |
Definition at line 139 of file class.ilLMLayout.php.
{ $this->ver_align = $a_align; }
ilLMLayout::setWidth | ( | $ | a_width | ) |
set width
string | $a_width width |
Definition at line 176 of file class.ilLMLayout.php.
{ $this->width = $a_width; }
ilLMLayout::$css_url |
Definition at line 39 of file class.ilLMLayout.php.
ilLMLayout::$height |
Definition at line 44 of file class.ilLMLayout.php.
ilLMLayout::$hor_align |
Definition at line 41 of file class.ilLMLayout.php.
ilLMLayout::$ilias |
Definition at line 36 of file class.ilLMLayout.php.
Referenced by ilLMLayout().
ilLMLayout::$keep_with_next |
Definition at line 38 of file class.ilLMLayout.php.
ilLMLayout::$keep_with_previous |
Definition at line 37 of file class.ilLMLayout.php.
ilLMLayout::$target_frame |
Definition at line 42 of file class.ilLMLayout.php.
ilLMLayout::$ver_align |
Definition at line 40 of file class.ilLMLayout.php.
ilLMLayout::$width |
Definition at line 43 of file class.ilLMLayout.php.