You are here

function flashnode_theme in Flash Node 6.3

Same name and namespace in other branches
  1. 6.2 flashnode.module \flashnode_theme()

Implementation of hook_theme

File

./flashnode.module, line 551

Code

function flashnode_theme() {
  return array(
    'flashnode' => array(
      'arguments' => array(
        'flashnode' => NULL,
        'teaser' => FALSE,
        'options' => array(),
      ),
    ),
    'flashnode_markup' => array(
      'arguments' => array(
        'flashnode' => NULL,
        'options' => array(),
      ),
    ),
    'flashnode_import_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'flashnode.import.inc',
    ),
  );
}