some additional comments and a new var_dump function for debugging
[phpfspot.git] / phpfspot_cfg.php
1 <?php
2
3 class PHPFSPOT_CFG {
4
5    var $page_title = "phpfspot - dynamic PHP gallery for F-Spot";
6
7    var $product = "phpfspot";
8    var $version = "0.1";
9
10    var $base_path = "/var/www/images.netshadow.at/htdocs/phpfspot";
11
12    var $web_path = "/phpfspot";
13
14    /* it's enough if this database is readonly for the webserver */
15    var $fspot_db = "/var/www/images.netshadow.at/htdocs/phpfspot/photos.db";
16
17    /* this database MUST be writeable for the webserver. Set the directory
18       permissions correctly so phpfspot can create this database for you!!
19    */
20    var $phpfspot_db = "/var/www/images.netshadow.at/htdocs/phpfspot/phpfspot.db";
21
22    /* don't touch if you haven't changed the base templates */
23    var $thumb_width = "150";
24    var $bubble_width = "200";
25    var $photo_width = "640";
26
27    /* how many columns in the photo index view */
28    var $thumbs_per_row = 4;
29
30    /* Usually the photo directory differs between your local F-Spot installation
31       and your webserver. With this you can advice phpfspot to replace all paths
32       (they are stored in F-Spot's sqlite3 database
33    */
34    var $path_replace_from = "/home/unki";
35    var $path_replace_to = "/var/www/images.netshadow.at/htdocs/phpfspot";
36
37    /* This is not really a security option - it only hides some present F-Spot
38       tags from the available-tags-list
39    */
40    var $hide_tags = Array("Favorites", "Hidden", "People", "Places", "Events");
41
42 }
43
44 ?>