blocks the blocks to be displayed, unsorted * * It's recommented that the theme sort the blocks before doing anything * else, using: usort($panel->blocks, "blockcmp"); * * The page should wrap all the options in a form which links to setup_save */ public function display_page(Page $page, SetupPanel $panel) { $setupblock_html1 = ""; $setupblock_html2 = ""; usort($panel->blocks, "blockcmp"); /* * Try and keep the two columns even; count the line breaks in * each an calculate where a block would work best */ $len1 = 0; $len2 = 0; foreach($panel->blocks as $block) { if($block instanceof SetupBlock) { $html = $this->sb_to_html($block); $len = count(explode("
", $html))+1; if($len1 <= $len2) { $setupblock_html1 .= $this->sb_to_html($block); $len1 += $len; } else { $setupblock_html2 .= $this->sb_to_html($block); $len2 += $len; } } } $table = "
$setupblock_html1$setupblock_html2
"; $page->set_title("Shimmie Setup"); $page->set_heading("Shimmie Setup"); $page->add_block(new Block("Navigation", $this->build_navigation(), "left", 0)); $page->add_block(new Block("Setup", $table)); } public function display_advanced(Page $page, $options) { $rows = ""; foreach($options as $name => $value) { $h_value = html_escape($value); $len = strlen($h_value); $box = ""; if($len < 50) { $box .= ""; } else { $box .= ""; } $box .= ""; $rows .= "$name$box"; } $table = "
$rows
NameValue
"; $page->set_title("Shimmie Setup"); $page->set_heading("Shimmie Setup"); $page->add_block(new Block("Navigation", $this->build_navigation(), "left", 0)); $page->add_block(new Block("Setup", $table)); } protected function build_navigation() { return " Index
Help
Advanced "; } protected function sb_to_html(SetupBlock $block) { return "
{$block->header}
{$block->body}
\n"; } } ?>