2 |
jp_milcent |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This file is part of BiblioBota - Lien Favoris. |
|
|
|
9 |
// | |
|
|
|
10 |
// | Foobar is free software; you can redistribute it and/or modify |
|
|
|
11 |
// | it under the terms of the GNU General Public License as published by |
|
|
|
12 |
// | the Free Software Foundation; either version 2 of the License, or |
|
|
|
13 |
// | (at your option) any later version. |
|
|
|
14 |
// | |
|
|
|
15 |
// | Foobar is distributed in the hope that it will be useful, |
|
|
|
16 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
17 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
18 |
// | GNU General Public License for more details. |
|
|
|
19 |
// | |
|
|
|
20 |
// | You should have received a copy of the GNU General Public License |
|
|
|
21 |
// | along with Foobar; if not, write to the Free Software |
|
|
|
22 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
23 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
24 |
// CVS : $Id: bblf_config.inc.php,v 1.1 2005-11-23 10:22:25 jp_milcent Exp $
|
|
|
25 |
/**
|
|
|
26 |
* Configuration de l'application Lien Favoris.
|
|
|
27 |
*
|
|
|
28 |
* Fichier de configuration de l'application Lien Favoris.
|
|
|
29 |
*
|
|
|
30 |
*@package BiblioBota-Partenaire
|
|
|
31 |
//Auteur original :
|
|
|
32 |
*@author Jean-Charles GRANGER <tela@vecteur.org>
|
|
|
33 |
//Autres auteurs :
|
|
|
34 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
|
|
35 |
*@copyright Tela-Botanica 2000-2004
|
|
|
36 |
*@version $Revision: 1.1 $ $Date: 2005-11-23 10:22:25 $
|
|
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
38 |
*/
|
|
|
39 |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
// | ENTETE du PROGRAMME |
|
|
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
46 |
// | CORPS du PROGRAMME |
|
|
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
48 |
/** Constante stockant le chemin du dossier contenant l'application Lien Favoris de Biblio Bota.*/
|
|
|
49 |
define('BBLF_CHEMIN_RACINE', BB_CHEMIN_APPLI.'bb_lien_favoris/');
|
|
|
50 |
/** Constante stockant le chemin du dossier contenant les traductions.*/
|
|
|
51 |
define('BBLF_CHEMIN_LANGUES', BBLF_CHEMIN_RACINE.'langues/');
|
|
|
52 |
|
|
|
53 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
54 |
// Paramétrage d'origine de l'application
|
|
|
55 |
/* Permettre la moderation (0/1) ? */
|
|
|
56 |
$open_moderation = 0;
|
|
|
57 |
/* Nombre d'éditeurs max à afficher dans une liste déroulante avant que le moteur ne bascule en mode zone de saisie */
|
|
|
58 |
$how_editeurs = 20;
|
|
|
59 |
/* Nbre de données par page */
|
|
|
60 |
$how_bloc = 20;
|
|
|
61 |
/* Nbre de livres par page */
|
|
|
62 |
$how_bloc_book = 10;
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
66 |
// | PIED du PROGRAMME |
|
|
|
67 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
68 |
|
|
|
69 |
|
|
|
70 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
71 |
*
|
|
|
72 |
* $Log: not supported by cvs2svn $
|
|
|
73 |
* Revision 1.2 2005/02/28 14:34:08 jpm
|
|
|
74 |
* Changement du nom de l'appli en Lien Favoris.
|
|
|
75 |
*
|
|
|
76 |
* Revision 1.1 2005/02/28 14:23:51 jpm
|
|
|
77 |
* Ajout des fichiers de l'application Lien Favoris.
|
|
|
78 |
*
|
|
|
79 |
*
|
|
|
80 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
81 |
*/
|
|
|
82 |
?>
|