source: trunk/include/config.inc.php @ 21

Last change on this file since 21 was 21, checked in by z0rglub, 21 years ago

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1<?php
2/***************************************************************************
3 *                              config.inc.php                             *
4 *                            -------------------                          *
5 *   application          : PhpWebGallery 1.3                              *
6 *   author               : Pierrick LE GALL <pierrick@z0rglub.com>        *
7 *                                                                         *
8 ***************************************************************************
9
10 ***************************************************************************
11 *                                                                         *
12 *   This program is free software; you can redistribute it and/or modify  *
13 *   it under the terms of the GNU General Public License as published by  *
14 *   the Free Software Foundation;                                         *
15 *                                                                         *
16 ***************************************************************************/
17unset( $conf, $page, $user, $lang );
18$conf = array();
19$page = array();
20$user = array();
21$lang = array();
22
23include_once( PREFIX_INCLUDE.'./include/functions.inc.php' );
24include_once( PREFIX_INCLUDE.'./include/vtemplate.class.php' );
25
26// How to change the order of display for images in a category ?
27//
28// You have to modify $conf['order_by'].
29// There are several fields that can order the display :
30//  - date_available : the date of the adding to the gallery
31//  - file : the name of the file
32// Once you've chosen which field(s) to use for ordering,
33// you must chose the ascending or descending order for each field.
34// examples :
35// 1. $conf['order_by'] = " order by date_available desc, file asc";
36//    will order pictures by date_available descending & by filename ascending
37// 2. $conf['order_by'] = " order by file asc";
38//    will only order pictures by file ascending
39//    without taking into account the date_available
40$conf['order_by'] = ' ORDER BY date_available DESC, file ASC';
41
42$conf['nb_image_row']       = array('4','5','6','7','8');
43$conf['nb_row_page']        = array('2','3','4','5','6','7','10','20','1000');
44$conf['version']            = '1.3';
45$conf['site_url']           = 'http://www.phpwebgallery.net';
46$conf['forum_url']          = 'http://forum.phpwebgallery.net';
47$conf['picture_ext']        = array('jpg','JPG','gif','GIF','png','PNG');
48$conf['document_ext']       = array('doc','pdf','zip');
49
50database_connection();
51// rertieving the configuration informations for site
52// $infos array is used to know the fields to retrieve in the table "config"
53// Each field becomes an information of the array $conf.
54// Example :
55//            prefix_thumbnail --> $conf['prefix_thumbnail']
56$infos = array( 'prefix_thumbnail', 'webmaster', 'mail_webmaster', 'access',
57                'session_id_size', 'session_keyword', 'session_time',
58                'max_user_listbox', 'show_comments', 'nb_comment_page',
59                'upload_available', 'upload_maxfilesize', 'upload_maxwidth',
60                'upload_maxheight', 'upload_maxwidth_thumbnail',
61                'upload_maxheight_thumbnail' );
62
63$query  = 'SELECT';
64foreach ( $infos as $i => $info ) {
65  if ( $i > 0 ) $query.= ',';
66  else          $query.= ' ';
67  $query.= $info;
68}
69$query.= ' FROM '.PREFIX_TABLE.'config;';
70
71$row = mysql_fetch_array( mysql_query( $query ) );
72
73// affectation of each field of the table "config" to an information of the
74// array $conf.
75foreach ( $infos as $info ) {
76  $conf[$info] = $row[$info];
77  // If the field is true or false, the variable is transformed into a boolean
78  // value.
79  if ( $row[$info] == 'true' or $row[$info] == 'false' )
80  {
81    $conf[$info] = get_boolean( $row[$info] );
82  }
83}
84$conf['log']        = false;
85$conf['top_number'] = 20;
86?>
Note: See TracBrowser for help on using the repository browser.