Subversion Repositories Applications.bazar

Rev

Rev 234 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 234 Rev 241
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU General Public                                                  |
9
// | modify it under the terms of the GNU General Public                                                  |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | General Public License for more details.                                                             |
16
// | General Public License for more details.                                                             |
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU General Public                                            |
18
// | You should have received a copy of the GNU General Public                                            |
19
// | License along with this library; if not, write to the Free Software                                  |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
 
22
 
23
// CVS : $Id: bazarTemplate.class.php,v 1.2 2007-03-28 09:20:29 florian Exp $
23
// CVS : $Id: bazarTemplate.class.php,v 1.2.2.1 2007-05-24 15:09:46 neiluj Exp $
24
 
24
 
25
/**
25
/**
26
* Application projet
26
* Application projet
27
*
27
*
28
* La classe d acces aux templates du bazar
28
* La classe d acces aux templates du bazar
29
*
29
*
30
*@package bazar
30
*@package bazar
31
//Auteur original :
31
//Auteur original :
32
*@author        Alexandre Granier <alexandre@tela-botanica.org>
32
*@author        Alexandre Granier <alexandre@tela-botanica.org>
33
//Autres auteurs :
33
//Autres auteurs :
34
*@author        Aucun
34
*@author        Aucun
35
*@copyright     Tela-Botanica 2000-2004
35
*@copyright     Tela-Botanica 2000-2004
36
*@version       $Revision: 1.2 $
36
*@version       $Revision: 1.2.2.1 $
37
// +------------------------------------------------------------------------------------------------------+
37
// +------------------------------------------------------------------------------------------------------+
38
*/
38
*/
39
 
39
 
40
// +------------------------------------------------------------------------------------------------------+
40
// +------------------------------------------------------------------------------------------------------+
41
// |                                            ENTETE du PROGRAMME                                       |
41
// |                                            ENTETE du PROGRAMME                                       |
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
43
 
43
 
44
include_once PAP_CHEMIN_API_PEAR.'PEAR.php' ;
44
include_once PAP_CHEMIN_API_PEAR.'PEAR.php' ;
45
 
45
 
46
class bazarTemplate extends PEAR {
46
class bazarTemplate extends PEAR {
47
 
47
 
48
 
48
 
49
	var $_db ;
49
	var $_db ;
50
	
50
	
51
    function bazarTemplate(&$objetDB) {
51
    function bazarTemplate(&$objetDB) {
52
    		$this->_db = $objetDB ;
52
    		$this->_db = $objetDB ;
53
    }
53
    }
54
    
54
    
55
    function getTemplate ($id_template, $lang='fr-FR', $categorie_nature = 0) {
55
    function getTemplate ($id_template, $lang='fr-FR', $categorie_nature = 0) {
56
    		$requete = 'select bt_template from bazar_template where bt_id_template='.$id_template.
56
    		$requete = 'select bt_template from bazar_template where bt_id_template='.$id_template.
57
    					' and bt_id_i18n like "'.$lang.'%"' ;
57
    					' and bt_id_i18n like "'.$lang.'%"' ;
-
 
58
    					
-
 
59
    		if($categorie_nature != 0)
58
    		$requete .= ' and bt_categorie_nature='.$categorie_nature ;
60
    			$requete .= ' and bt_categorie_nature='.$categorie_nature ;
-
 
61
    			
59
    		$resultat = $this->_db->query($requete) ;
62
    		$resultat = $this->_db->query($requete) ;
60
    		if (DB::isError($resultat)) return $this->raiseError ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
63
    		if (DB::isError($resultat)) return $this->raiseError ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
61
    		if ($resultat->numRows() == 0) return $this->raiseError ('Aucun template avec l\'identifiant: '.$id_template.
64
    		if ($resultat->numRows() == 0) return $this->raiseError ('Aucun template avec l\'identifiant: '.$id_template.
62
				' et la langue: '.$lang.'<br />'.$$requete) ;
65
				' et la langue: '.$lang.'<br />'.$$requete) ;
63
    		$ligne = $resultat->fetchRow (DB_FETCHMODE_OBJECT) ;
66
    		$ligne = $resultat->fetchRow (DB_FETCHMODE_OBJECT) ;
64
    		return $ligne->bt_template ;
67
    		return $ligne->bt_template ;
65
    }
68
    }
66
}
69
}
67
?>
70
?>