You are here

function entity_metadata_validate_integer_positive in Entity API 7

Deprecated. Do not make use of this function, instead use the new one.

2 string references to 'entity_metadata_validate_integer_positive'
entity_metadata_convert_schema in ./entity.info.inc
Converts the schema information available for the given table to property info.
entity_metadata_system_entity_property_info in modules/system.info.inc
Implements hook_entity_property_info() on top of system module.

File

includes/entity.property.inc, line 646
Provides API functions around hook_entity_property_info(). Also see entity.info.inc, which cares for providing entity property info for all core entity types.

Code

function entity_metadata_validate_integer_positive($value) {
  return entity_property_validate_integer_positive($value);
}