aboutsummaryrefslogtreecommitdiff
path: root/app/Models/StatsDAOSQLite.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/StatsDAOSQLite.php')
-rw-r--r--app/Models/StatsDAOSQLite.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/Models/StatsDAOSQLite.php b/app/Models/StatsDAOSQLite.php
new file mode 100644
index 000000000..c923e5fd0
--- /dev/null
+++ b/app/Models/StatsDAOSQLite.php
@@ -0,0 +1,9 @@
+<?php
+
+class FreshRSS_StatsDAOSQLite extends FreshRSS_StatsDAO {
+
+ public function calculateEntryCount() {
+ return $this->convertToSerie(array()); //TODO: Implement 30-day statistics for SQLite
+ }
+
+}