You are here

function ds_forms_theme in Display Suite 7.2

Same name and namespace in other branches
  1. 7 modules/ds_forms/ds_forms.module \ds_forms_theme()

Implements hook_theme().

File

modules/ds_forms/ds_forms.module, line 11
Display Suite forms integration.

Code

function ds_forms_theme() {
  $theme_functions = array();
  $theme_functions['ds_forms_custom_form'] = array(
    'render element' => 'form',
  );
  return $theme_functions;
}