You are here

function properties_attribute_load_paging in Dynamic properties 7

Load a paged amount of attributes.

Parameters

$per_page: Number of attributes per page.

1 call to properties_attribute_load_paging()
properties_admin_attributes_list in ./properties.admin.inc
Menu callback; Display a list of attributes.

File

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

Code

function properties_attribute_load_paging($per_page, array $options = array()) {
  $function_name = _properties_get_call('attribute', 'load_paging');
  return $function_name($per_page, $options);
}