You are here

function patterns_theme in Patterns 6.2

Same name and namespace in other branches
  1. 6 patterns.module \patterns_theme()
  2. 7.2 theme/theme.inc \patterns_theme()
  3. 7 theme/theme.inc \patterns_theme()

Implementation of hook_theme().

File

./patterns.module, line 2298
Enables extremely simple adding/removing features to your site with minimal to no configuration

Code

function patterns_theme() {
  return array(
    'patterns_form_helper' => array(
      'arguments' => array(
        'form_id' => NULL,
        'values' => NULL,
      ),
    ),
    'patterns_form_helper_menu' => array(
      'forms' => NULL,
    ),
  );
}