Beispiel #1
0
 private function renderRightBlock()
 {
     $content = "<div style='border:1px solid #000; padding:5px; width:30%; float:left;'>\n";
     $items = AdminUtils::getMenuItemsList();
     foreach ($items as $id => $title) {
         $content .= "- {$title} <br />\n";
     }
     $content .= "</div>\n";
     $this->data["content"] .= $content;
 }