
Public Member Functions | |
| __construct ($name, $min_width, $max_width, $style) | |
| setData ($data) | |
| addData ($data) | |
| getData () | |
Static Public Member Functions | |
| static | prepareTemplate ($template) |
Public Attributes | |
| $name = '' | |
| $min_width = 0 | |
| $max_width = 0 | |
| $style = 0 | |
Protected Attributes | |
| $screen_data = '' | |
Definition at line 48 of file aliroScreenArea.php.
| aliroScreenArea::__construct | ( | $ | name, | |
| $ | min_width, | |||
| $ | max_width, | |||
| $ | style | |||
| ) |
Definition at line 55 of file aliroScreenArea.php.
References $max_width, $min_width, $name, $style, and name.
00055 { 00056 $this->name = $name; 00057 $this->min_width = $min_width; 00058 $this->max_width = $max_width; 00059 $this->style = $style; 00060 }
| static aliroScreenArea::prepareTemplate | ( | $ | template | ) | [static] |
Definition at line 62 of file aliroScreenArea.php.
Referenced by aliroAdminRequest::adminActiveUser(), and aliroUserRequest::runTemplate().
00062 { 00063 $areas = $template->positions(); 00064 foreach ($areas as $area) { 00065 ob_start(); 00066 $area->loadModules($template); 00067 $area->setData(ob_get_contents()); 00068 ob_end_clean(); 00069 } 00070 }
| aliroScreenArea::setData | ( | $ | data | ) |
| aliroScreenArea::addData | ( | $ | data | ) |
| aliroScreenArea::getData | ( | ) |
| aliroScreenArea::$name = '' |
| aliroScreenArea::$min_width = 0 |
| aliroScreenArea::$max_width = 0 |
| aliroScreenArea::$style = 0 |
aliroScreenArea::$screen_data = '' [protected] |
Definition at line 53 of file aliroScreenArea.php.
1.5.5