You are here

function newsletter_template_type_delete in Newsletter 7.2

Deletes a template type from the db.

File

modules/template/newsletter_template.module, line 331
Module for the Newsletter Template Entity

Code

function newsletter_template_type_delete(NewsletterTemplateType $type) {
  $type
    ->delete();
}