You are here

function smart_paging_entities in Smart Paging 7

Same name and namespace in other branches
  1. 7.2 smart_paging.module \smart_paging_entities()

Smart Paging supported entities.

1 call to smart_paging_entities()
smart_paging_form_alter in ./smart_paging.module
Implements hook_form_alter()

File

./smart_paging.module, line 1780
Provides smart paging capability to Drupal contents.

Code

function smart_paging_entities() {
  $entities = array(
    'node',
    'user',
    'taxonomy_term',
  );
  return $entities;
}