You are here

function hook_mandrill_valid_attachment_types_alter in Mandrill 7

Same name and namespace in other branches
  1. 8 mandrill.api.php \hook_mandrill_valid_attachment_types_alter()
  2. 7.2 mandrill.api.php \hook_mandrill_valid_attachment_types_alter()

Allows other modules to alter the allowed attachment file types.

@array $types An array of file types indexed numerically.

1 invocation of hook_mandrill_valid_attachment_types_alter()
DrupalMandrill::getValidContentTypes in lib/mandrill.inc
Return an array of valid content types.

File

./mandrill.api.php, line 31
This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.

Code

function hook_mandrill_valid_attachment_types_alter(&$types) {

  // Example, allow word docs:
  $types[] = 'application/msword';

  // Allow openoffice docs:
  $types[] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
}