Contributions API

optionwidgets_theme

Definition

optionwidgets_theme()
contributions/cck/modules/optionwidgets/optionwidgets.module, line 45

Description

Implementation of hook_theme().

Code

<?php
function optionwidgets_theme() {
  return array(
    'optionwidgets_select' => array(
      'arguments' => array('element' => NULL),
    ),
    'optionwidgets_buttons' => array(
      'arguments' => array('element' => NULL),
    ),
    'optionwidgets_onoff' => array(
      'arguments' => array('element' => NULL),
    ),
    'optionwidgets_none' => array(
      'arguments' => array('widget_type' => NULL, 'field_name' => NULL, 'node_type' => NULL),
      ),
  );
}
?>