Enabled" : ""; $html = "
"; $page->set_title("Extensions"); $page->set_heading("Extensions"); $page->add_block(new NavBlock()); $page->add_block(new Block("Extension Manager", $html)); } public function display_blocks(Page $page, $extensions) { $n = 0; $col_1 = ""; $col_2 = ""; foreach($extensions as $extension) { $ext_name = $extension->ext_name; $h_name = empty($extension->name) ? $ext_name : html_escape($extension->name); $h_email = html_escape($extension->email); $h_link = isset($extension->link) ? "link)."\">Original Site" : ""; $h_doc = isset($extension->documentation) ? "ext_name))."\">Documentation" : ""; $h_author = html_escape($extension->author); $h_description = html_escape($extension->description); $h_enabled = $extension->enabled ? " checked='checked'" : ""; $h_author_link = empty($h_email) ? "$h_author" : "$h_author"; $html = "$h_name | |
---|---|
By $h_author_link | Enabled: |
$h_description $h_link $h_doc |