X-Git-Url: http://git.rohieb.name/iserv-mod-error-reporter.git/blobdiff_plain/801e022b0a6f1f7fa5ad09e86acdff0fd99d04a9..da360e8ea671f0d37287dd044693caffadd82304:/inc/class_erErrorReportManager.inc diff --git a/inc/class_erErrorReportManager.inc b/inc/class_erErrorReportManager.inc index 1536159..b3fd64d 100644 --- a/inc/class_erErrorReportManager.inc +++ b/inc/class_erErrorReportManager.inc @@ -135,6 +135,15 @@ class erErrorReportManager { * @name Quering * @{ */ + /** + * Get the number of reported errors + * @return int + */ + public function getNumErrorReports() { + $ar = pg_fetch_array(db_query("SELECT COUNT(*) AS count FROM mod_errorreporter;"), 0); + return intval($ar["count"]); + } + /** * Get all error reports in the database. * If this function fails, it returns null. Call getLastError() to get more information.