You are here

function context_features_identifier_2 in Features 6

2.x: Callback for generating the context exportable identifier.

1 string reference to 'context_features_identifier_2'
context_features_export in includes/features.context.inc
Implementation of hook_features_export().

File

includes/features.context.inc, line 229

Code

function context_features_identifier_2($object) {
  return isset($object->namespace, $object->attribute, $object->value) ? "{$object->namespace}-{$object->attribute}-{$object->value}" : FALSE;
}