You are here

function maillog_maillog_page in Maillog / Mail Developer 7

Same name and namespace in other branches
  1. 6 maillog.module \maillog_maillog_page()

Display a maillog record.

Parameters

array $maillog: A maillog record that is to be deleted.

Return value

string Themed output of the maillog page.

1 string reference to 'maillog_maillog_page'
maillog_menu in ./maillog.module
Implements hook_menu().

File

./maillog.pages.inc, line 17
Menu API callback handlers for Maillog pages.

Code

function maillog_maillog_page(array $maillog) {
  return theme('maillog', array(
    'maillog' => $maillog,
  ));
}