addGlobal(new Form_Input( 'getactivity', null, 'hidden', 'yes' )); $section = new Form_Section('pfTop Configuration'); $validViews = array( 'default', 'label', 'long', 'queue', 'rules', 'size', 'speed', 'state', 'time', ); $section->addInput(new Form_Select( 'viewtype', 'View', $viewtype, array_combine($validViews, $validViews) )); $section->addInput(new Form_Select( 'sorttype', 'Sort by', $sorttype, array( 'none' => 'None', 'age' => 'Age', 'bytes' => 'Bytes', 'dest' => 'Destination Address', 'dport' => 'Destination Port', 'exp' => 'Expiry', 'peak' => 'Peak', 'pkt' => 'Packet', 'rate' => 'Rate', 'size' => 'Size', 'sport' => 'Source Port', 'src' => 'Source Address', ) )); $validStates = array(50, 100, 200, 500, 100, 'all'); $section->addInput(new Form_Select( 'states', 'Maximum # of States', $numstate, array_combine($validStates, $validStates) )); $form->add($section); print $form; ?>