You are here

function comment_upload_theme in Comment Upload 6

File

./comment_upload.module, line 41
Provides file attachment functionality for comments.

Code

function comment_upload_theme() {
  return array(
    'comment_upload_attachments' => array(
      'template' => 'comment-upload-attachments',
      'arguments' => array(
        'files' => NULL,
        'display_images' => FALSE,
        'preset' => NULL,
      ),
    ),
    'comment_upload_form_current' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'comment_upload_form_new' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}