* @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 <tt>null</tt>. Call getLastError() to get more information.