function features_form in Features 6
Same name and namespace in other branches
- 7.2 features.module \features_form()
- 7 features.module \features_form()
Implementation of hook_form().
File
- ./
features.module, line 216 - Module file for the features module, which enables the capture and management of features in Drupal. A feature is a collection of Drupal entities which taken together statisfy a certain use-case.
Code
function features_form($node, $form_state) {
return node_content_form($node, $form_state);
}