diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-04 18:32:41 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-04 18:32:41 +0000 |
commit | 61f2970e221f8612e51e7802cc127819c4caa369 (patch) | |
tree | 7d7ef582bf2eb4a17057af98c5aa9d8bbe13dd69 /phpfspot_cfg.php | |
parent | b97144fa93285fac423d61522bdea6028ac9c566 (diff) |
initial import
git-svn-id: file:///var/lib/svn/phpfspot/trunk@2 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot_cfg.php')
-rw-r--r-- | phpfspot_cfg.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/phpfspot_cfg.php b/phpfspot_cfg.php new file mode 100644 index 0000000..b833b99 --- /dev/null +++ b/phpfspot_cfg.php @@ -0,0 +1,22 @@ +<?php + +class PHPFSPOT_CFG { + + var $page_title = "phpfspot - dynamic PHP gallery for F-Spot"; + + var $base_path = "/var/www/images.netshadow.at/htdocs/phpfspot"; + + var $web_path = "/phpfspot"; + + var $thumb_width = "200"; + + var $photo_width = "800"; + + var $db = "/var/www/images.netshadow.at/htdocs/phpfspot/photos.db"; + + var $path_replace_from = "/home/unki"; + var $path_replace_to = "/var/www/images.netshadow.at/htdocs/phpfspot"; + +} + +?> |