summaryrefslogtreecommitdiffstats
path: root/phpfspot_cfg.php.dist
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-11-01 16:21:32 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-11-01 16:21:32 +0000
commit5f717dc4a76364974723dbbf8e4d3b03e194812b (patch)
tree6de43b9b5146f6fcac7cfd915bd2cac18e816367 /phpfspot_cfg.php.dist
parent5846c46b53d2feb8b7fb9946ff21fff24d15d88a (diff)
issue75, support for database access via PDO sqlite
git-svn-id: file:///var/lib/svn/phpfspot/trunk@283 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot_cfg.php.dist')
-rw-r--r--phpfspot_cfg.php.dist6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpfspot_cfg.php.dist b/phpfspot_cfg.php.dist
index e3bb645..1abedc8 100644
--- a/phpfspot_cfg.php.dist
+++ b/phpfspot_cfg.php.dist
@@ -33,6 +33,9 @@ class PHPFSPOT_CFG {
var $web_path = "/phpfspot";
var $theme_name = "default";
+
+ /* database access via "native" sqlite3 support or via "pdo" */
+ var $db_access = "native";
/* it's enough if this database is readonly for the webserver */
var $fspot_db = "/var/www/f-spot-dbs/photos.db";
@@ -95,6 +98,9 @@ class PHPFSPOT_CFG {
if(!isset($this->fspot_db) || $this->fspot_db == "")
$this->showError("Please set \$fspot_db in phpfspot_cfg");
+ if(!isset($this->db_access) || $this->db_access == "")
+ $this->showError("Please set \$db_access in phpfspot_cfg");
+
if(!isset($this->phpfspot_db) || $this->phpfspot_db == "")
$this->showError("Please set \$phpfspot_db in phpfspot_cfg");