New file |
0,0 → 1,103 |
<?php |
/*vim: set expandtab tabstop=4 shiftwidth=4: */ |
// +------------------------------------------------------------------------------------------------------+ |
// | PHP version 4.1 | |
// +------------------------------------------------------------------------------------------------------+ |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) | |
// +------------------------------------------------------------------------------------------------------+ |
// | This library is free software; you can redistribute it and/or | |
// | modify it under the terms of the GNU General Public | |
// | License as published by the Free Software Foundation; either | |
// | version 2.1 of the License, or (at your option) any later version. | |
// | | |
// | This library is distributed in the hope that it will be useful, | |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
// | General Public License for more details. | |
// | | |
// | You should have received a copy of the GNU General Public | |
// | License along with this library; if not, write to the Free Software | |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
// +------------------------------------------------------------------------------------------------------+ |
// CVS : $Id: projet_theme.class.php,v 1.1 2008-08-25 15:09:39 alexandre_tb Exp $ |
/** |
* Application projet |
* |
* La classe projet_theme |
* |
*@package projet |
//Auteur original : |
*@author Alexandre Granier <alexandre@tela-botanica.org> |
//Autres auteurs : |
*@author Aucun |
*@copyright Tela-Botanica 2000-2008 |
*@version $Revision: 1.1 $ |
// +------------------------------------------------------------------------------------------------------+ |
*/ |
|
|
// +------------------------------------------------------------------------------------------------------+ |
// | ENTETE du PROGRAMME | |
// +------------------------------------------------------------------------------------------------------+ |
|
|
/** |
* class projet_type |
* |
*/ |
class projet_theme |
{ |
|
/*** Attributes: ***/ |
|
/** |
* Une connection vers une base de donnée |
* @access private |
*/ |
var $_db; |
|
/** |
* Renvoie tous types de projets (de la table projet_type) ans un tableau avec pour |
* clé l'identifiant et pour valeur le label. |
* |
* @return Array |
* @static |
* @access public |
*/ |
function getTousLesThemes(& $objetDB ) |
{ |
$requete = 'select * from projet_theme' ; |
return $objetDB->getAssoc ($requete) ; |
} |
|
/** |
* |
* |
* @param DB objetDB Une instance de la classe PEAR::DB |
* @return void |
* @access public |
*/ |
function projet_theme( & $objetDB ) |
{ |
$this->_db = $objetDB ; |
} |
|
|
/** |
* |
* |
* @param DB objetDB Une instance de la classe PEAR::DB |
* @return void |
* @access public |
*/ |
function getLabelType( $id_type) |
{ |
$requete = 'select pt_label_theme from projet_theme where pt_id_theme='.$id_type ; |
$resultat = $this->_db->getOne($requete) ; |
if (DB::isError($resultat)) { |
echo $resultat->getMessage() ; |
} |
return $resultat ; |
} |
} |
?> |