You are here

function feedback_theme in Feedback 6.2

Same name and namespace in other branches
  1. 7.2 feedback.module \feedback_theme()
  2. 3.x feedback.module \feedback_theme()

Implementation of hook_theme().

File

./feedback.module, line 18
Allows site visitors and users to report issues about this site.

Code

function feedback_theme() {
  return array(
    'feedback_admin_view_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
    ),
  );
}