You are here

function properties_template_load_paging in Dynamic properties 7

Load a paged amount of templates.

Parameters

$per_page: Number of templates per page.

2 calls to properties_template_load_paging()
properties_template_admin_templates_list in properties_template/properties_template.admin.inc
Menu callback; Display a list of templates
properties_template_field_attach_form in properties_template/properties_template.module
Implements hook_field_attach_form().

File

properties_template/properties_template.module, line 121
This module implements the template functionality for properties.

Code

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