You are here

function properties_category_load_multiple in Dynamic properties 7

Load multiple categories based on their names.

Parameters

$names: Array of machine readable name of the categories.

5 calls to properties_category_load_multiple()
properties_compare_page in properties_compare/properties_compare.pages.inc
Page callback, display comparison table.
properties_devel_generate in ./properties.devel_generate.inc
Implements hook_devel_generate().
properties_field_formatter_view in ./properties.module
Implements hook_field_formatter_view().
properties_template_admin_templates_form in properties_template/properties_template.admin.inc
Form builder; Add/Edit form for templates.
properties_template_submit_select_template in properties_template/properties_template.module
Submit callback to add categories of a template to the form.

File

./properties.module, line 921
This module provides a dynamic property field that can contain an unlimited number of attribute value pairs.

Code

function properties_category_load_multiple($names = array()) {
  $function_name = _properties_get_call('category', 'load_multiple');
  return $function_name($names);
}