You are here

function webform_protected_downloads_theme in Webform Protected Downloads 6

Same name and namespace in other branches
  1. 8 webform_protected_downloads.module \webform_protected_downloads_theme()
  2. 7 webform_protected_downloads.module \webform_protected_downloads_theme()

Implementation of hook_theme().

File

./webform_protected_downloads.module, line 139
This file contains hook declarations and functions for the Webform Protected Downloads module.

Code

function webform_protected_downloads_theme() {
  return array(
    'webform_protected_downloads_configuration_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'webform_protected_downloads_mail_token_file_list' => array(
      'arguments' => array(
        'files' => NULL,
        'checksum' => NULL,
      ),
    ),
  );
}