You are here

function flippy_theme in Flippy 7

Same name and namespace in other branches
  1. 8 flippy.module \flippy_theme()

Implements hook_theme()

File

./flippy.module, line 12
Allows administrators to add previous/next pagers to any node type.

Code

function flippy_theme() {
  return array(
    'flippy' => array(
      'variables' => array(
        'list' => array(),
      ),
      'template' => 'flippy',
    ),
  );
}