You are here

function entityform_theme in Entityform 7.2

Same name and namespace in other branches
  1. 7 entityform.module \entityform_theme()

Implements hook_theme().

File

./entityform.module, line 690
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function entityform_theme() {
  return array(
    'entityform_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'entityform.admin.inc',
    ),
    'entityform' => array(
      'render element' => 'elements',
      'template' => 'entityform',
    ),
    'entityform_submitted_data' => array(
      'render element' => 'elements',
      'template' => 'entityform-submitted-data',
    ),
  );
}