summaryrefslogtreecommitdiff
path: root/modules/dblog/dblog.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-03-13 14:28:18 +0000
committerDries Buytaert <dries@buytaert.net>2009-03-13 14:28:18 +0000
commit957f8884525fef426a849e4cba84ae33b5c2d218 (patch)
tree742cc513a1b0684a19bdfbe8df47325d089c4952 /modules/dblog/dblog.admin.inc
parent9aa14da49da0b4391f5cafea4fbbfecd5fb78534 (diff)
downloadbrdo-957f8884525fef426a849e4cba84ae33b5c2d218.tar.gz
brdo-957f8884525fef426a849e4cba84ae33b5c2d218.tar.bz2
- Patch #302268 by tizzo, bubbasan, Ryan Palmer et al: converted module to new database abstraction layer.
Diffstat (limited to 'modules/dblog/dblog.admin.inc')
-rw-r--r--modules/dblog/dblog.admin.inc52
1 files changed, 40 insertions, 12 deletions
diff --git a/modules/dblog/dblog.admin.inc b/modules/dblog/dblog.admin.inc
index 921fb7c4d..ce0f79de2 100644
--- a/modules/dblog/dblog.admin.inc
+++ b/modules/dblog/dblog.admin.inc
@@ -63,16 +63,30 @@ function dblog_overview() {
array('data' => t('Operations')),
);
- $sql = "SELECT w.wid, w.uid, w.severity, w.type, w.timestamp, w.message, w.variables, w.link, u.name FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid";
- $tablesort = tablesort_sql($header);
+ $query = db_select('watchdog', 'w');
+ $query->join('users', 'u', 'w.uid = u.uid');
+ $query
+ ->fields('w', array('wid', 'uid', 'severity', 'type', 'timestamp', 'message', 'variables', 'link'))
+ ->addField('u', 'name');
if (!empty($filter['where'])) {
- $result = pager_query($sql . " WHERE " . $filter['where'] . $tablesort, 50, 0, NULL, $filter['args']);
+ //setHeader may not be chainable see Line 138
+ $query
+ ->where($filter['where'], $filter['args'])
+ ->extend('PagerDefault')->extend('TableSort')
+ ->limit(50, 0)
+ ->setHeader($header);
+ $result = $query->execute();
}
else {
- $result = pager_query($sql . $tablesort, 50);
+ //setHeader may not be chainable see Line 138
+ $query
+ ->extend('PagerDefault')->extend('TableSort')
+ ->limit(50)
+ ->setHeader($header);
+ $result = $query->execute();
}
- while ($dblog = db_fetch_object($result)) {
+ foreach ($result as $dblog) {
$rows[] = array('data' =>
array(
// Cells
@@ -108,11 +122,25 @@ function dblog_top($type) {
array('data' => t('Count'), 'field' => 'count', 'sort' => 'desc'),
array('data' => t('Message'), 'field' => 'message')
);
-
- $result = pager_query("SELECT COUNT(wid) AS count, message, variables FROM {watchdog} WHERE type = '%s' GROUP BY message, variables " . tablesort_sql($header), 30, 0, "SELECT COUNT(DISTINCT(message)) FROM {watchdog} WHERE type = '%s'", $type);
+ $count_query = db_select('watchdog');
+ $count_query->addExpression('COUNT(DISTINCT(message))');
+ $count_query->condition('type', $type);
+
+ $query = db_select('watchdog', 'w');
+ $query->addExpression('COUNT(wid)', 'count');
+ $query = $query
+ ->fields('w', array('message', 'variables'))
+ ->condition('w.type', $type)
+ ->groupBy('message')
+ ->groupBy('variables')
+ ->extend('PagerDefault')->extend('TableSort')
+ ->limit(30);
+ $query = $query->setHeader($header);
+ $query->setCountQuery($count_query);
+ $result = $query->execute();
$rows = array();
- while ($dblog = db_fetch_object($result)) {
+ foreach ($result as $dblog) {
$rows[] = array($dblog->count, truncate_utf8(_dblog_format_message($dblog), 56, TRUE, TRUE));
}
@@ -132,8 +160,8 @@ function dblog_top($type) {
function dblog_event($id) {
$severity = watchdog_severity_levels();
$output = '';
- $result = db_query('SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid WHERE w.wid = %d', $id);
- if ($dblog = db_fetch_object($result)) {
+ $result = db_query('SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid WHERE w.wid = :id', array(':id' => $id))->fetchObject();
+ if ($dblog = $result) {
$rows = array(
array(
array('data' => t('Type'), 'header' => TRUE),
@@ -222,14 +250,14 @@ function dblog_filters() {
if (!empty($types)) {
$filters['type'] = array(
'title' => t('Type'),
- 'where' => "w.type = '%s'",
+ 'where' => "w.type = ':s'",
'options' => $types,
);
}
$filters['severity'] = array(
'title' => t('Severity'),
- 'where' => 'w.severity = %d',
+ 'where' => 'w.severity = :d',
'options' => watchdog_severity_levels(),
);