Hi,
I've been reading the Import/Export API documentation but I have many doubts and questions, I hope you can help me out.

I would like to modify the (excellent) UI for a specific need, that is to export an XML in two clicks for a specific entity without having to chose from the list (Input format, Filter, Menu item, Node type, etc...).

I tested the original UI and it works fine, but suppose I created a content type product and I want to export only those products to an XML directly, I figured that importexportui.module, line 93

  $form['entities'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Entities to @op', array('@op' => $op)),
    '#description' => t("Select the entities that you wish to @op. The list of entities is sorted in order of depe
ndency. For example, if entity 'z' depends on entities 'x' and 'y', then entity 'z' is listed below entities 'x' a
nd 'y'. It is recommended that you try to @op non-dependent entities before dependent entities.", array('@op' => $
op)),
    '#options' => _importexportui_tps_get_entity_list(),
    '#required' => TRUE
  );

has to be changed. How can I specify the content type instead of displaying the checkboxes? Sorry if it sounds like a n00b question but I still have to get the grip of drupal ^_^

Thanks in advance for the help,