You are here

README.txt in Features 7

Same filename and directory in other branches
  1. 6 README.txt
  2. 7.2 README.txt
Current state of Features for Drupal 7
--------------------------------------
Work on Features for D7 is currently aimed at getting to a point where Features
can be used on a new install of Drupal 7 with features that were created on D7.
Once this has been achieved, we will begin working on supporting D6 features as
well as possibly supporting upgrades & migrations between legacy components and
new equivalents (e.g. CCK to fields, imagecache to core image styles).

### Working components

- ctools
- dependencies
- field
- filter
- image
- menu_custom
- menu_links
- node
- taxonomy
- user_permission
- user_role
- views

### Has changes to export format between D6 and D7

(@TODO legacy export compatibility)

- filter
- taxonomy

### Requires upgrade/migration path

- imagecache > image
- content > field


Features 1.x for Drupal 7.x
---------------------------
The features module enables the capture and management of features in Drupal. A
feature is a collection of Drupal entities which taken together satisfy a
certain use-case.

Features provides a UI and API for taking different site building components
from modules with exportables and bundling them together in a single feature
module. A feature module is like any other Drupal module except that it declares
its components (e.g. views, contexts, CCK fields, etc.) in its `.info` file so
that it can be checked, updated, or reverted programmatically.

Examples of features might be:

- A blog
- A pressroom
- An image gallery
- An e-commerce t-shirt store


Installation
------------
Features can be installed like any other Drupal module -- place it in the
modules directory for your site and enable it on the `admin/build/modules` page.
To take full advantage of some of the workflow benefits provided by Features,
you should install [Drush][1].


Basic usage
-----------
Features is geared toward usage by developers and site builders. It
is not intended to be used by the general audience of your Drupal site.
Features provides tools for accomplishing two important tasks:

### Task 1: Export features

You can build features in Drupal by using site building tools that are supported
(see a short list under the *Compatibility* section).

Once you've built and configured functionality on a site, you can export it into
a feature module by using the feature create page at
`admin/structure/features/create`.


### Task 2: Manage features

The features module also provides a way to manage features through a more
targeted interface than `admin/modules`. The interface at
`admin/structure/features` shows you only feature modules, and will also inform you
if any of their components have been overridden. If this is the case, you can
also re-create features to bring the module code up to date with any changes
that have occurred in the database.


Including custom code and adding to your feature
------------------------------------------------
Once you've exported your feature you will see that you have several files:

    myfeature.info
    myfeature.module
    myfeature.[*].inc

You can add custom code (e.g. custom hook implementations, other functionality,
etc.) to your feature in `myfeature.module` as you would with any other module.
Do not change or add to any of the features `.inc` files unless you know what
you are doing. These files are written to by features on updates so any custom
changes may be overwritten.


Using Features to manage development
------------------------------------
Because Features provides a centralized way to manage exportable components and
write them to code it can be used during development in conjunction with a
version control like SVN or git as a way to manage changes between development,
staging and production sites. An example workflow for a developer using Features
is to:

1. Make configuration changes to a feature on her local development site.
2. Update her local feature codebase using `drush features-update`.
3. Commit those changes using `svn commit`.
4. Roll out her changes to the development site codebase by running `svn update`
  on the server. Other collaborating developers can also get her changes with
  `svn update`.
5. Reverting any configuration on the staging site to match the updated codebase
by running `drush features-revert`.
6. Rinse, repeat.

Features also provides integration with the [Diff][3] module if enabled to show
differences between configuration in the database and that in code. For site
builders interested in using Features for development, enabling the diff module
and reading `API.txt` for more details on the inner workings of Features is
highly recommended.


Drush usage
-----------
(requires Drush v4.5 or higher)

Features provides several useful drush commands:

- `drush features`

  List all the available features on your site and their status.

- `drush features-export [feature name] [component list]`

  Write a new feature in code containing the components listed.
  If called with no arguments, display a list of available components.
  If called with one argument, take the argument as a component name and
  attempt to create a feature with the same name.

  The option '--destination=foo' may be used to specify the path (from Drupal
  root) where the feature should be created. The default destination is
  'sites/all/modules'.

- `drush features-update [feature name]`

  Update the code of an existing feature to include any overrides/changes in
  your database (e.g. a new view).

- `drush features-revert [feature name]`

  Revert the components of a feature in your site's database to the state
  described in your feature module's defaults.

- `drush features-diff [feature name]`

  Show a diff between a feature's database components and those in code.
  Requires the Diff module.

Additional commands and options can be found using `drush help`.


Compatibility
-------------
Features provides integration for the following exportables:

- CTools export API implementers (Context, Spaces, Boxes, Strongarm, Page
  Manager)
- ImageCache
- Views
- [Other contributed modules][2]

Features also provides faux-exportable functionality for the following Drupal
core and contrib components:

- Fields
- Content types
- Input filters
- User roles/permissions
- Custom menus and menu links *
- Taxonomy vocabularies

* Currently in development.


Security Concerns
-----------------
If you are using Features to export Roles and also use those Roles in other
exportable code (like Views filters) you can wind up with an unintended
security hole.  When you import your Feature, if the Roles do not get created
with the exact same Role IDs then your Views filters (or other component) will
be referencing a different Role than you intended.


For developers
--------------
Please read `API.txt` for more information about the concepts and integration
points in the Features module.


Maintainers
-----------
- febbraro (Frank Febbraro)
- hefox (Fox)
- mpotter (Mike Potter)
- timplunkett (Tim Plunkett)


[1]: http://drupal.org/project/drush
[2]: (http://drupal.org/taxonomy/term/11478)

File

README.txt
View source
  1. Current state of Features for Drupal 7
  2. --------------------------------------
  3. Work on Features for D7 is currently aimed at getting to a point where Features
  4. can be used on a new install of Drupal 7 with features that were created on D7.
  5. Once this has been achieved, we will begin working on supporting D6 features as
  6. well as possibly supporting upgrades & migrations between legacy components and
  7. new equivalents (e.g. CCK to fields, imagecache to core image styles).
  8. ### Working components
  9. - ctools
  10. - dependencies
  11. - field
  12. - filter
  13. - image
  14. - menu_custom
  15. - menu_links
  16. - node
  17. - taxonomy
  18. - user_permission
  19. - user_role
  20. - views
  21. ### Has changes to export format between D6 and D7
  22. (@TODO legacy export compatibility)
  23. - filter
  24. - taxonomy
  25. ### Requires upgrade/migration path
  26. - imagecache > image
  27. - content > field
  28. Features 1.x for Drupal 7.x
  29. ---------------------------
  30. The features module enables the capture and management of features in Drupal. A
  31. feature is a collection of Drupal entities which taken together satisfy a
  32. certain use-case.
  33. Features provides a UI and API for taking different site building components
  34. from modules with exportables and bundling them together in a single feature
  35. module. A feature module is like any other Drupal module except that it declares
  36. its components (e.g. views, contexts, CCK fields, etc.) in its `.info` file so
  37. that it can be checked, updated, or reverted programmatically.
  38. Examples of features might be:
  39. - A blog
  40. - A pressroom
  41. - An image gallery
  42. - An e-commerce t-shirt store
  43. Installation
  44. ------------
  45. Features can be installed like any other Drupal module -- place it in the
  46. modules directory for your site and enable it on the `admin/build/modules` page.
  47. To take full advantage of some of the workflow benefits provided by Features,
  48. you should install [Drush][1].
  49. Basic usage
  50. -----------
  51. Features is geared toward usage by developers and site builders. It
  52. is not intended to be used by the general audience of your Drupal site.
  53. Features provides tools for accomplishing two important tasks:
  54. ### Task 1: Export features
  55. You can build features in Drupal by using site building tools that are supported
  56. (see a short list under the *Compatibility* section).
  57. Once you've built and configured functionality on a site, you can export it into
  58. a feature module by using the feature create page at
  59. `admin/structure/features/create`.
  60. ### Task 2: Manage features
  61. The features module also provides a way to manage features through a more
  62. targeted interface than `admin/modules`. The interface at
  63. `admin/structure/features` shows you only feature modules, and will also inform you
  64. if any of their components have been overridden. If this is the case, you can
  65. also re-create features to bring the module code up to date with any changes
  66. that have occurred in the database.
  67. Including custom code and adding to your feature
  68. ------------------------------------------------
  69. Once you've exported your feature you will see that you have several files:
  70. myfeature.info
  71. myfeature.module
  72. myfeature.[*].inc
  73. You can add custom code (e.g. custom hook implementations, other functionality,
  74. etc.) to your feature in `myfeature.module` as you would with any other module.
  75. Do not change or add to any of the features `.inc` files unless you know what
  76. you are doing. These files are written to by features on updates so any custom
  77. changes may be overwritten.
  78. Using Features to manage development
  79. ------------------------------------
  80. Because Features provides a centralized way to manage exportable components and
  81. write them to code it can be used during development in conjunction with a
  82. version control like SVN or git as a way to manage changes between development,
  83. staging and production sites. An example workflow for a developer using Features
  84. is to:
  85. 1. Make configuration changes to a feature on her local development site.
  86. 2. Update her local feature codebase using `drush features-update`.
  87. 3. Commit those changes using `svn commit`.
  88. 4. Roll out her changes to the development site codebase by running `svn update`
  89. on the server. Other collaborating developers can also get her changes with
  90. `svn update`.
  91. 5. Reverting any configuration on the staging site to match the updated codebase
  92. by running `drush features-revert`.
  93. 6. Rinse, repeat.
  94. Features also provides integration with the [Diff][3] module if enabled to show
  95. differences between configuration in the database and that in code. For site
  96. builders interested in using Features for development, enabling the diff module
  97. and reading `API.txt` for more details on the inner workings of Features is
  98. highly recommended.
  99. Drush usage
  100. -----------
  101. (requires Drush v4.5 or higher)
  102. Features provides several useful drush commands:
  103. - `drush features`
  104. List all the available features on your site and their status.
  105. - `drush features-export [feature name] [component list]`
  106. Write a new feature in code containing the components listed.
  107. If called with no arguments, display a list of available components.
  108. If called with one argument, take the argument as a component name and
  109. attempt to create a feature with the same name.
  110. The option '--destination=foo' may be used to specify the path (from Drupal
  111. root) where the feature should be created. The default destination is
  112. 'sites/all/modules'.
  113. - `drush features-update [feature name]`
  114. Update the code of an existing feature to include any overrides/changes in
  115. your database (e.g. a new view).
  116. - `drush features-revert [feature name]`
  117. Revert the components of a feature in your site's database to the state
  118. described in your feature module's defaults.
  119. - `drush features-diff [feature name]`
  120. Show a diff between a feature's database components and those in code.
  121. Requires the Diff module.
  122. Additional commands and options can be found using `drush help`.
  123. Compatibility
  124. -------------
  125. Features provides integration for the following exportables:
  126. - CTools export API implementers (Context, Spaces, Boxes, Strongarm, Page
  127. Manager)
  128. - ImageCache
  129. - Views
  130. - [Other contributed modules][2]
  131. Features also provides faux-exportable functionality for the following Drupal
  132. core and contrib components:
  133. - Fields
  134. - Content types
  135. - Input filters
  136. - User roles/permissions
  137. - Custom menus and menu links *
  138. - Taxonomy vocabularies
  139. * Currently in development.
  140. Security Concerns
  141. -----------------
  142. If you are using Features to export Roles and also use those Roles in other
  143. exportable code (like Views filters) you can wind up with an unintended
  144. security hole. When you import your Feature, if the Roles do not get created
  145. with the exact same Role IDs then your Views filters (or other component) will
  146. be referencing a different Role than you intended.
  147. For developers
  148. --------------
  149. Please read `API.txt` for more information about the concepts and integration
  150. points in the Features module.
  151. Maintainers
  152. -----------
  153. - febbraro (Frank Febbraro)
  154. - hefox (Fox)
  155. - mpotter (Mike Potter)
  156. - timplunkett (Tim Plunkett)
  157. [1]: http://drupal.org/project/drush
  158. [2]: (http://drupal.org/taxonomy/term/11478)