function inline_conditions_theme in Inline Conditions 7
Implements hook_theme().
File
- ./
inline_conditions.module, line 35 - Extends Drupal 7 with a new field type to manage rules conditions directly from a field.
Code
function inline_conditions_theme($existing, $type, $theme, $path) {
return array(
'inline_conditions_table' => array(
'render element' => 'element',
),
);
}