getUI(); $navbar->addOption('Panel Controls', $module, $self); // space between the theme elements $theme->breakContent(); //create a new panel $panel = new MPanel('pnlDummy','Panel Controls'); $panel2 = new MPanel('pnlDummy2','Inner Panel'); $controls2 = array( new MLabel("Panel: Uh! I'm a MPanel inside another MPanel!")); $panel2->addControl($controls2,'100%','clear'); $controls = array( new MLabel("Panel: Uh! I'm a MLabel inside a MPanel!"), $panel2 ); $panel->addControl($controls,'100%','clear'); // create a link to view the source of this file $src = new ViewSource(__FILE__); $theme->insertContent($panel); $theme->appendContent($src); ?>