function properties_attribute_load_multiple in Dynamic properties 7
Load multiple attributes based on their names.
Parameters
$names: Array of machine readable name of the attributes.
1 call to properties_attribute_load_multiple()
- properties_compare_page in properties_compare/properties_compare.pages.inc 
- Page callback, display comparison table.
File
- ./properties.module, line 853 
- This module provides a dynamic property field that can contain an unlimited number of attribute value pairs.
Code
function properties_attribute_load_multiple($names = array()) {
  $function_name = _properties_get_call('attribute', 'load_multiple');
  return $function_name($names);
}