You are here

function views_plugin_row_watchdog_rss::render in Views Watchdog 6

Same name and namespace in other branches
  1. 6.3 views/plugins/views_plugin_row_watchdog_rss.inc \views_plugin_row_watchdog_rss::render()
  2. 6.2 views/plugins/views_plugin_row_watchdog_rss.inc \views_plugin_row_watchdog_rss::render()
  3. 7.3 views/plugins/views_plugin_row_watchdog_rss.inc \views_plugin_row_watchdog_rss::render()

File

views/plugins/views_plugin_row_watchdog_rss.inc, line 47
Views callbacks for the "Views watchdog" module.

Class

views_plugin_row_watchdog_rss

Code

function render($row) {
  global $base_url;
  $watchdog = db_fetch_object(db_query('SELECT w.wid, w.type, w.message, w.variables, w.severity, w.hostname, w.timestamp, u.name FROM {watchdog} w LEFT JOIN {users} u ON w.uid = u.uid WHERE w.wid = %d', $row->wid));
  $tokens = array(
    '[type]',
    '[severity]',
    '[hostname]',
  );
  $values = array(
    $watchdog->type,
    views_watchdog_get_severity($watchdog->severity, 'title'),
    $watchdog->hostname,
  );
  $rss_type = $this->options['watchdog_rss_type'];
  if ($rss_type == 'default') {
    $rss_type = variable_get('feed_item_length', 'teaser');
  }
  $item = new stdClass();
  $item->title = str_replace($tokens, $values, check_plain($this->options['watchdog_rss_title']));
  $item->description = $rss_type == 'fulltext' || $rss_type == 'teaser' ? views_watchdog_format_message($watchdog->message, $watchdog->variables) : '';
  $item->link = url('admin/reports/event/' . $watchdog->wid, array(
    'absolute' => TRUE,
  ));
  $item->elements = array(
    array(
      'key' => 'pubDate',
      'value' => gmdate('r', $watchdog->timestamp),
    ),
    array(
      'key' => 'dc:creator',
      'value' => $watchdog->name,
      'namespace' => array(
        'xmlns:dc' => 'http://purl.org/dc/elements/1.1/',
      ),
    ),
    array(
      'key' => 'guid',
      'value' => 'log ' . $watchdog->wid . ' at ' . $base_url,
      'attributes' => array(
        'isPermaLink' => 'false',
      ),
    ),
  );
  foreach ($item->elements as $element) {
    if (isset($element['namespace'])) {
      $this->view->style_plugin->namespaces = array_merge($this->view->style_plugin->namespaces, $element['namespace']);
    }
  }
  return theme($this
    ->theme_functions(), $this->view, $this->options, $item);
}