You are here

README.txt in Node export 7.3


Node Export Features UI
=======================

This module works with the Node Export Features module to provide an easy to
use method of selecting nodes to export.  It is based on this Node Export
issue: http://drupal.org/node/1626360

Currently, the feature module's UI does not support listing a large number of
nodes to select from.  Sites with large numbers of nodes caused major UI and
server performance problems.  Because of this, the node_export_feature module
currently limits the number of nodes in the Feature UI to only the first 250
nodes.

The current solution for changing what nodes to display is to write a custom
module. This module is for people who don't want to write a custom module.

When enabled, it adds a "Feature Configuration" tab on the Node Export settings
page. ( Admin->Configure->Content Authoring->Node Export )

In the Feature Configuration tab, you can select from a set of filters to
control what nodes get listed in the Feature modules UI.  The filter are:

* Number of nodes to List:

  Expand or shrink beyond the build in 250 nodes.

  NOTE: Using a large number can cause server and UI performance problems.

* Filter By Content Type:

  Only show nodes of the selected content types.

* Filter By Publishing Options:

  Filter by published, promoted, and sticky status.

* Filter by Title:

  Filter by title using an SQL 'LIKE' statement.  E.g, %Test%One%

* Filter by UUID:

  Supply a specific list of node UUIDs to show.

These filters are 'additive' so each one is an "AND" condition on the query.


Installation:

Install Node Export, then enable via the modules page (or drush or...)


Features Notes:

If you need to recreate a feature created with one or more of the filters set,
you will need to make sure that the Node Export Feature filters are the
same.

File

modules/node_export_features_ui/README.txt
View source
  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.