You are here

function paragraphs_table_theme in Paragraphs table 7

Same name and namespace in other branches
  1. 8 paragraphs_table.module \paragraphs_table_theme()

Implements hook_theme().

File

./paragraphs_table.module, line 481
Module file for Paragraph table module.

Code

function paragraphs_table_theme($existing, $type, $theme, $path) {
  $base = array(
    'file' => 'theme.inc',
    'path' => $path . '/theme',
  );
  return array(
    'paragraphs_table_multiple_value_fields' => $base + array(
      'render element' => 'element',
    ),
  );
}