/**
  * Display form for config tab in fusioninventory config form
  *
  * @param $options array
  *
  * @return bool TRUE if form is ok
  *
  **/
 static function showFormDeploy($options = array())
 {
     $pfConfig = new PluginFusioninventoryConfig();
     $pfConfig->fields['id'] = 1;
     $options['colspan'] = 1;
     $pfConfig->showFormHeader($options);
     echo "<tr class='tab_bg_1'>";
     echo "<td>" . __('Root folder for sending files from server', 'fusioninventory') . "&nbsp;:</td>";
     echo "<td>";
     echo "<input type='text' name='server_upload_path' value='" . $pfConfig->getValue('server_upload_path') . "' size='60' />";
     echo "</td>";
     echo "</tr>";
     echo "<tr>";
     echo "<td>" . __('Use this GLPI server as a mirror server', 'fusioninventory') . "&nbsp;:</td>";
     echo "<td>";
     Dropdown::showYesNo("server_as_mirror", $pfConfig->getValue('server_as_mirror'));
     echo "</td>";
     echo "</tr>";
     $options['candel'] = FALSE;
     $pfConfig->showFormButtons($options);
     return TRUE;
 }