README.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Node Export Features UI
  2. =======================
  3. This module works with the Node Export Features module to provide an easy to
  4. use method of selecting nodes to export. It is based on this Node Export
  5. issue: http://drupal.org/node/1626360
  6. Currently, the feature module's UI does not support listing a large number of
  7. nodes to select from. Sites with large numbers of nodes caused major UI and
  8. server performance problems. Because of this, the node_export_feature module
  9. currently limits the number of nodes in the Feature UI to only the first 250
  10. nodes.
  11. The current solution for changing what nodes to display is to write a custom
  12. module. This module is for people who don't want to write a custom module.
  13. When enabled, it adds a "Feature Configuration" tab on the Node Export settings
  14. page. ( Admin->Configure->Content Authoring->Node Export )
  15. In the Feature Configuration tab, you can select from a set of filters to
  16. control what nodes get listed in the Feature modules UI. The filter are:
  17. * Number of nodes to List:
  18. Expand or shrink beyond the build in 250 nodes.
  19. NOTE: Using a large number can cause server and UI performance problems.
  20. * Filter By Content Type:
  21. Only show nodes of the selected content types.
  22. * Filter By Publishing Options:
  23. Filter by published, promoted, and sticky status.
  24. * Filter by Title:
  25. Filter by title using an SQL 'LIKE' statement. E.g, %Test%One%
  26. * Filter by UUID:
  27. Supply a specific list of node UUIDs to show.
  28. These filters are 'additive' so each one is an "AND" condition on the query.
  29. Installation:
  30. Install Node Export, then enable via the modules page (or drush or...)
  31. Features Notes:
  32. If you need to recreate a feature created with one or more of the filters set,
  33. you will need to make sure that the Node Export Feature filters are the
  34. same.