Line 18... |
Line 18... |
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 |
// +------------------------------------------------------------------------------------------------------+
|
Line 22... |
Line 22... |
22 |
|
22 |
|
Line 23... |
Line 23... |
23 |
// CVS : $Id: bazarTemplate.class.php,v 1.3 2007-06-25 12:15:06 alexandre_tb Exp $
|
23 |
// CVS : $Id: bazarTemplate.class.php,v 1.4 2007-07-04 10:02:58 alexandre_tb Exp $
|
24 |
|
24 |
|
25 |
/**
|
25 |
/**
|
26 |
* Application projet
|
26 |
* Application projet
|
Line 31... |
Line 31... |
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.3 $
|
36 |
*@version $Revision: 1.4 $
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
*/
|
38 |
*/
|
Line 39... |
Line 39... |
39 |
|
39 |
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
41 |
// | ENTETE du PROGRAMME |
|
41 |
// | ENTETE du PROGRAMME |
|
Line 42... |
Line 42... |
42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
Line -... |
Line 43... |
- |
|
43 |
|
- |
|
44 |
include_once PAP_CHEMIN_API_PEAR.'PEAR.php' ;
|
- |
|
45 |
|
- |
|
46 |
// +------------------------------------------------------------------------------------------------------+
|
- |
|
47 |
// | CONSTANTE DES TEMPLATES |
|
- |
|
48 |
// +------------------------------------------------------------------------------------------------------+
|
- |
|
49 |
|
- |
|
50 |
define ('BAZ_TEMPLATE_CONSULTER', 1); // Squelette de l onglet "consulter"
|
- |
|
51 |
define ('BAZ_TEMPLATE_LISTE_DES_FICHES', 2); // Modele de la liste des fiches
|
- |
|
52 |
|
- |
|
53 |
define ('BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_SUJET', 3); // Modele du mail pour prevenir les admins d une nouvelle fiche (sujet)
|
- |
|
54 |
define ('BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_CORPS', 4); // Modele du mail pour prevenir les admins d une nouvelle fiche (corps)
|
- |
|
55 |
|
- |
|
56 |
define ('BAZ_TEMPLATE_MESSAGE_LOGIN', 5); // Modele du message lorsque l utilisateur n est pas logue
|
43 |
|
57 |
|
Line 44... |
Line 58... |
44 |
include_once PAP_CHEMIN_API_PEAR.'PEAR.php' ;
|
58 |
define ('BAZ_TEMPLATE_ACCUEIL_CARTE_GOOGLE', 6); // Modele de la page d accueil de l appli bazar.carte_google.php
|
Line 60... |
Line 74... |
60 |
$requete .= ' and bt_categorie_nature='.$categorie_nature ;
|
74 |
$requete .= ' and bt_categorie_nature='.$categorie_nature ;
|
Line 61... |
Line 75... |
61 |
|
75 |
|
62 |
$resultat = $this->_db->query($requete) ;
|
76 |
$resultat = $this->_db->query($requete) ;
|
63 |
if (DB::isError($resultat)) return $this->raiseError ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
77 |
if (DB::isError($resultat)) return $this->raiseError ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
64 |
if ($resultat->numRows() == 0) return $this->raiseError ('Aucun template avec l\'identifiant: '.$id_template.
|
78 |
if ($resultat->numRows() == 0) return $this->raiseError ('Aucun template avec l\'identifiant: '.$id_template.
|
65 |
' et la langue: '.$lang.'<br />'.$$requete) ;
|
79 |
' et la langue: '.$lang.'<br />'.$requete) ;
|
66 |
$ligne = $resultat->fetchRow (DB_FETCHMODE_OBJECT) ;
|
80 |
$ligne = $resultat->fetchRow (DB_FETCHMODE_OBJECT) ;
|
67 |
return $ligne->bt_template ;
|
81 |
return $ligne->bt_template ;
|
68 |
}
|
82 |
}
|
69 |
}
|
83 |
}
|
70 |
?>
|
84 |
?>
|