ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilLMLayout.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
35 {
38  public $css_url;
39  public $ver_align;
40  public $hor_align;
41  public $target_frame;
42  public $width;
43  public $height;
44 
49  public function __construct()
50  {
51  }
52 
58  public function setKeepWithPrevious($a_keep)
59  {
60  $this->keep_with_previous = $a_keep;
61  }
62 
63 
67  public function getKeepWithPrevious()
68  {
70  }
71 
72 
78  public function setKeepWithNext($a_keep)
79  {
80  $this->keep_with_next = $a_keep;
81  }
82 
83 
87  public function getKeepWithNext()
88  {
89  return $this->keep_with_next;
90  }
91 
92 
98  public function setCssUrl($a_url)
99  {
100  $this->css_url = $a_url;
101  }
102 
103 
107  public function getCssUrl()
108  {
109  return $this->css_url;
110  }
111 
117  public function setHorizontalAlign($a_align)
118  {
119  $this->hor_align = $a_align;
120  }
121 
125  public function getHorizontalAlign()
126  {
127  return $this->hor_align;
128  }
129 
135  public function setVerticalAlign($a_align)
136  {
137  $this->ver_align = $a_align;
138  }
139 
143  public function getVerticalAlign()
144  {
145  return $this->ver_align;
146  }
147 
148 
154  public function setTargetFrame($a_frame)
155  {
156  $this->target_frame = $a_frame;
157  }
158 
162  public function getTargetFrame()
163  {
164  return $this->target_frame;
165  }
166 
172  public function setWidth($a_width)
173  {
174  $this->width = $a_width;
175  }
176 
180  public function getWidth()
181  {
182  return $this->width;
183  }
184 
190  public function setHeight($a_height)
191  {
192  $this->height = $a_height;
193  }
194 
198  public function getHeight()
199  {
200  return $this->height;
201  }
202 }
setKeepWithPrevious($a_keep)
set keep with previous
setTargetFrame($a_frame)
set target frame ?????
getHeight()
get height
getWidth()
get width
setHeight($a_height)
set height
getKeepWithNext()
get keep with next
getKeepWithPrevious()
get keep with previous
getHorizontalAlign()
get horizontal align
Class ilLMLayout.
setHorizontalAlign($a_align)
set horizontal align
setKeepWithNext($a_keep)
set keep with next
setWidth($a_width)
set width
__construct()
Constructor public.
getTargetFrame()
get target frame ?????
getVerticalAlign()
get vertical align
getCssUrl()
get css url
setVerticalAlign($a_align)
set vertical align
setCssUrl($a_url)
set css url