You are here

function content_copy_theme in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6.2 modules/content_copy/content_copy.module \content_copy_theme()

Implementation of hook_theme().

File

modules/content_copy/content_copy.module, line 58
Adds capability to import/export CCK field data definitions.

Code

function content_copy_theme() {
  return array(
    'content_copy_export_form' => array(
      'template' => 'content_copy_export_form',
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}