function print_mail_block_view in Printer, email and PDF versions 7
Same name and namespace in other branches
- 7.2 print_mail/print_mail.module \print_mail_block_view()
Implements hook_block_view().
File
- print_mail/
print_mail.module, line 147 - Displays Printer-friendly versions of Drupal pages.
Code
function print_mail_block_view($delta = 0) {
$block = array();
switch ($delta) {
case 'print_mail-top':
$block['subject'] = t('Most emailed');
$result = db_query_range("SELECT path FROM {print_mail_page_counter} LEFT JOIN {node} n ON path = CONCAT('node/', n.nid) WHERE status <> 0 OR status IS NULL ORDER BY sentcount DESC", 0, 3)
->fetchAll();
if (count($result)) {
$block['content'] = '<div class="item-list"><ul>';
foreach ($result as $obj) {
$block['content'] .= '<li>' . l(_print_get_title($obj->path), $obj->path) . '</li>';
}
$block['content'] .= '</ul></div>';
}
break;
}
return $block;
}