1: <?php
2:
3: /**
4: * Class NavPanel
5: *
6: * This is a basic starting navigation panel that appears at the top of every list form.
7: * This particular panel just loads a template to navigate back to the main
8: * form list. You can modify this however you want to suit your application.
9: * A list of links, button bar, or a menu bar are possibilities.
10: */
11: class NavPanel extends QPanel {
12:
13: public function __construct ($objParent, $strControlId = null) {
14: parent::__construct($objParent, $strControlId);
15: $this->strTemplate = 'nav_panel.tpl.php';
16: }
17: }