Returns HTML for a list of recent content.

Parameters

$variables: An associative array containing:

  • nodes: An array of recent node objects.

Related topics

1 theme call to theme_node_recent_block()
node_block_view in modules/node/node.module
Implements hook_block_view().

File

modules/node/node.module, line 2352
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

function theme_node_recent_block($variables) {
  $rows = array();
  $output = '';
  $l_options = array(
    'query' => drupal_get_destination(),
  );
  foreach ($variables['nodes'] as $node) {
    $row = array();
    $row[] = array(
      'data' => theme('node_recent_content', array(
        'node' => $node,
      )),
      'class' => 'title-author',
    );
    $row[] = array(
      'data' => node_access('update', $node) ? l(t('edit'), 'node/' . $node->nid . '/edit', $l_options) : '',
      'class' => 'edit',
    );
    $row[] = array(
      'data' => node_access('delete', $node) ? l(t('delete'), 'node/' . $node->nid . '/delete', $l_options) : '',
      'class' => 'delete',
    );
    $rows[] = $row;
  }
  if ($rows) {
    $output = theme('table', array(
      'rows' => $rows,
    ));
    if (user_access('access content overview')) {
      $output .= theme('more_link', array(
        'url' => 'admin/content',
        'title' => t('Show more content'),
      ));
    }
  }
  return $output;
}