You are here

function entityform_theme in Entityform 7

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

Implement hook_theme().

File

./entityform.module, line 684
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_submittd_data' => array(
      'render element' => 'elements',
      'template' => 'entityform-submittd-data',
    ),
  );
}