You are here

function quotes_theme in Quotes 6

Same name and namespace in other branches
  1. 7 quotes.module \quotes_theme()

Implementation of hook_theme().

File

./quotes.module, line 1140
The quotes module allows users to maintain a list of quotes that can be displayed in any number of administrator-defined quote blocks.

Code

function quotes_theme() {
  return array(
    'quotes_user_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'quotes.user.inc',
    ),
    'quotes_quote' => array(
      'arguments' => array(
        'node' => NULL,
        'teaser' => FALSE,
      ),
    ),
    'quotes_page' => array(
      'arguments' => array(
        'uid' => NULL,
      ),
    ),
    'quotes_blocks_settings' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}