function paragraphs_table_field_formatter_info in Paragraphs table 7
Implements hook_field_formatter_info().
File
- ./paragraphs_table.module, line 11 
- Module file for Paragraph table module.
Code
function paragraphs_table_field_formatter_info() {
  return array(
    'paragraphs_table_view' => array(
      'label' => t('Paragraphs table'),
      'field types' => array(
        'paragraphs',
      ),
      'settings' => array(
        'edit' => t('Edit'),
        'delete' => t('Delete'),
        'add' => t('Add'),
        'duplicate' => t('Duplicate'),
        'import' => t('Import'),
        'vertical' => FALSE,
        'ajax' => FALSE,
        'datatables' => FALSE,
        'description' => TRUE,
        'view_mode' => 'full',
        'hide_empty' => TRUE,
        'empty' => TRUE,
      ),
    ),
  );
}