Definition at line 45 of file dashboard.inc.
◆ bottom()
DashboardView::bottom |
( |
|
$widget | ) |
|
Definition at line 77 of file dashboard.inc.
79 $this->bottomWidgets[] = $widget;
◆ DashboardView()
DashboardView::DashboardView |
( |
|
$id | ) |
|
Definition at line 53 of file dashboard.inc.
56 $this->topWidgets = array();
57 $this->leftWidgets = array();
58 $this->rightWidgets = array();
59 $this->bottomWidgets = array();
◆ drawView()
DashboardView::drawView |
( |
| ) |
|
Definition at line 110 of file dashboard.inc.
113 <div
id=
"<?echo $this->id?>" class=
"dashboard">
114 <div
class=
"dashboard_top" style=
"width: 100%">
116 foreach($this->topWidgets as $w) $w->drawWidget();
119 <div
class=
"dashboard_left" style=
"clear:both;width:50%;float:left">
121 foreach($this->leftWidgets as $w) $w->drawWidget();
124 <div
class=
"dashboard_right" style=
"width:50%;float:left">
126 foreach($this->rightWidgets as $w) $w->drawWidget();
129 <div
class=
"dashboard_bottom" style=
"clear:both;width: 100%">
131 foreach($this->bottomWidgets as $w) $w->drawWidget();
◆ left()
DashboardView::left |
( |
|
$widget | ) |
|
Definition at line 67 of file dashboard.inc.
69 $this->leftWidgets[] = $widget;
◆ right()
DashboardView::right |
( |
|
$widget | ) |
|
Definition at line 72 of file dashboard.inc.
74 $this->rightWidgets[] = $widget;
◆ top()
DashboardView::top |
( |
|
$widget | ) |
|
Definition at line 62 of file dashboard.inc.
64 $this->topWidgets[] = $widget;
◆ writeScript()
DashboardView::writeScript |
( |
| ) |
|
Definition at line 83 of file dashboard.inc.
87 foreach($this->topWidgets as $w)
92 foreach($this->leftWidgets as $w)
97 foreach($this->rightWidgets as $w)
102 foreach($this->bottomWidgets as $w)
◆ $bottomWidgets
DashboardView::$bottomWidgets |
◆ $id
◆ $leftWidgets
DashboardView::$leftWidgets |
◆ $rightWidgets
DashboardView::$rightWidgets |
◆ $topWidgets
DashboardView::$topWidgets |
The documentation for this class was generated from the following file: