You are here

function feature_load in Features 7

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

Feature object loader. DEPRECATED but included for backwards compatibility

File

./features.module, line 401
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 feature_load($name, $reset = FALSE) {
  return features_load_feature($name, $reset);
}