You are here

function simplenews_node_info in Simplenews 5

Implementation of hook_node_info().

File

./simplenews.module, line 6

Code

function simplenews_node_info() {
  return array(
    'simplenews' => array(
      'name' => t('Newsletter issue'),
      'module' => 'simplenews',
      'description' => t('Create a newsletter issue to be sent to subscribed e-mail addresses.'),
    ),
  );
}