aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Factory.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-16 17:08:48 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-17 16:24:21 +0200
commitd4ad951b9b686f387056bda8f3fa6ede8d9ca3f1 (patch)
tree1079163173ae8b0870d13386e605e9ef51ac72b1 /app/Models/Factory.php
parent2796cc9ae559842a90fa15cba65c94a11b29195e (diff)
Show more information about user when selected
Diffstat (limited to 'app/Models/Factory.php')
-rw-r--r--app/Models/Factory.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/Models/Factory.php b/app/Models/Factory.php
index 08569b2e2..93f4552f7 100644
--- a/app/Models/Factory.php
+++ b/app/Models/Factory.php
@@ -2,30 +2,30 @@
class FreshRSS_Factory {
- public static function createFeedDao() {
+ public static function createFeedDao($username = null) {
$db = Minz_Configuration::dataBase();
if ($db['type'] === 'sqlite') {
- return new FreshRSS_FeedDAOSQLite();
+ return new FreshRSS_FeedDAOSQLite($username);
} else {
- return new FreshRSS_FeedDAO();
+ return new FreshRSS_FeedDAO($username);
}
}
- public static function createEntryDao() {
+ public static function createEntryDao($username = null) {
$db = Minz_Configuration::dataBase();
if ($db['type'] === 'sqlite') {
- return new FreshRSS_EntryDAOSQLite();
+ return new FreshRSS_EntryDAOSQLite($username);
} else {
- return new FreshRSS_EntryDAO();
+ return new FreshRSS_EntryDAO($username);
}
}
- public static function createStatsDAO() {
+ public static function createStatsDAO($username = null) {
$db = Minz_Configuration::dataBase();
if ($db['type'] === 'sqlite') {
- return new FreshRSS_StatsDAOSQLite();
+ return new FreshRSS_StatsDAOSQLite($username);
} else {
- return new FreshRSS_StatsDAO();
+ return new FreshRSS_StatsDAO($username);
}
}