You are here

function properties_theme in Dynamic properties 7

Implements hook_theme().

File

./properties.module, line 170
This module provides a dynamic property field that can contain an unlimited number of attribute value pairs.

Code

function properties_theme() {
  return array(
    'properties_admin_categories_attributes_form' => array(
      'render element' => 'element',
      'file' => 'properties.admin.inc',
    ),
    'properties_properties_form' => array(
      'render element' => 'element',
      'template' => 'properties-properties-form',
    ),
  );
}