You are here

function theme_simplenews_scheduler_title in Simplenews Scheduler 6

Same name and namespace in other branches
  1. 5 simplenews_scheduler.module \theme_simplenews_scheduler_title()

Theme the title of the newsletter edition.

1 theme call to theme_simplenews_scheduler_title()
_simplenews_scheduler_new_edition in ./simplenews_scheduler.module
Create a new newsletter edition.

File

./simplenews_scheduler.module, line 311
Simplenews Scheduler module allows a schedule to be set for sending (and resending) a Simplenews item.

Code

function theme_simplenews_scheduler_title($node, $serial) {
  return $node->title . " " . t('(edition !edition)', array(
    '!edition' => $serial,
  ));
}