You are here

function paging_field_formatter_info in Paging 7

Implements hook_field_formatter_info().

File

./paging.module, line 608
Allows a node to be broken into multiple pages via a tag.

Code

function paging_field_formatter_info() {
  return array(
    'paging_paged' => array(
      'label' => t('Paginated'),
      'field types' => array(
        'text_long',
        'text_with_summary',
      ),
      'settings' => array(),
    ),
  );
}