You are here

function comment_alter_theme in Comment Alter 7

Implements hook_theme().

File

./comment_alter.module, line 537
Provides UI to alter nodes' parameters from comment forms.

Code

function comment_alter_theme() {
  $return = array();
  $return['comment_alter_diff'] = array(
    'variables' => array(
      'changed_fields' => array(),
      'comment' => NULL,
      'langcode' => NULL,
    ),
  );
  return $return;
}