mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 13:17:59 -05:00
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
|
|
class FreshRSS_Factory {
|
|
|
|
public static function createFeedDao($username = null) {
|
|
$db = Minz_Configuration::dataBase();
|
|
if ($db['type'] === 'sqlite') {
|
|
return new FreshRSS_FeedDAOSQLite($username);
|
|
} else {
|
|
return new FreshRSS_FeedDAO($username);
|
|
}
|
|
}
|
|
|
|
public static function createEntryDao($username = null) {
|
|
$db = Minz_Configuration::dataBase();
|
|
if ($db['type'] === 'sqlite') {
|
|
return new FreshRSS_EntryDAOSQLite($username);
|
|
} else {
|
|
return new FreshRSS_EntryDAO($username);
|
|
}
|
|
}
|
|
|
|
public static function createStatsDAO($username = null) {
|
|
$db = Minz_Configuration::dataBase();
|
|
if ($db['type'] === 'sqlite') {
|
|
return new FreshRSS_StatsDAOSQLite($username);
|
|
} else {
|
|
return new FreshRSS_StatsDAO($username);
|
|
}
|
|
}
|
|
|
|
public static function createDatabaseDAO($username = null) {
|
|
$db = Minz_Configuration::dataBase();
|
|
if ($db['type'] === 'sqlite') {
|
|
return new FreshRSS_DatabaseDAOSQLite($username);
|
|
} else {
|
|
return new FreshRSS_DatabaseDAO($username);
|
|
}
|
|
}
|
|
|
|
}
|