You are here

function features_form in Features 7

Same name and namespace in other branches
  1. 6 features.module \features_form()
  2. 7.2 features.module \features_form()

Implements hook_form().

File

./features.module, line 240
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);
}