addGlobal(new Form_Input( 'id', null, 'hidden', $id )); } $section = new Form_Section('Edit WOL entry'); $section->addInput(new Form_Select( 'interface', 'Interface', (link_interface_to_bridge($pconfig['interface']) ? null : $pconfig['interface']), get_configured_interface_with_descr() ))->setHelp('Choose which interface this host is connected to.'); $section->addInput(new Form_Input( 'mac', 'MAC address', 'text', $pconfig['mac'] ))->setHelp(gettext('Enter a MAC address in the following format: xx:xx:xx:xx:xx:xx')); $section->addInput(new Form_Input( 'descr', 'Description', 'text', $pconfig['descr'] ))->setHelp(gettext('You may enter a description here for your reference (not parsed).')); $form->add($section); print $form; include("foot.inc");