You are here

function quote_theme in Quote 6.2

Same name and namespace in other branches
  1. 6 quote.module \quote_theme()
  2. 7 quote.module \quote_theme()

Implementation of hook_theme().

File

./quote.module, line 30
The quote module provides a filter and appropriate links that allow users to quote nodes and other comments in their own comments.

Code

function quote_theme() {
  return array(
    'quote' => array(
      'arguments' => array(
        'quote_content' => NULL,
        'quote_author' => NULL,
        'nest' => 0,
      ),
    ),
  );
}