You are here

function newsletter_template_create in Newsletter 7.2

Create a template object.

1 string reference to 'newsletter_template_create'
newsletter_template_entity_info in modules/template/newsletter_template.module
Implements hook_entity_info().

File

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

Code

function newsletter_template_create($values = array()) {
  return entity_get_controller('newsletter_template')
    ->create($values);
}