You are here

function editablefields_theme in Editable Fields 6.3

Same name and namespace in other branches
  1. 6 editablefields.module \editablefields_theme()
  2. 6.2 editablefields.module \editablefields_theme()

Implementation of hook_theme().

File

./editablefields.module, line 133
Editable fields module.

Code

function editablefields_theme() {
  $items = array();
  $plugins = editablefields_get_editables();
  foreach ($plugins as $plugin_name => $plugin) {
    if (!empty($plugin['theme'])) {
      $items = array_merge($items, $plugin['theme']);
    }
  }
  return $items;
}