2 |
ddelon |
1 |
<?php
|
|
|
2 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
3 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
4 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
5 |
// | This library is free software; you can redistribute it and/or |
|
|
|
6 |
// | modify it under the terms of the GNU General Public |
|
|
|
7 |
// | License as published by the Free Software Foundation; either |
|
|
|
8 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
9 |
// | |
|
|
|
10 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
11 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
12 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
13 |
// | General Public License for more details. |
|
|
|
14 |
// | |
|
|
|
15 |
// | You should have received a copy of the GNU General Public |
|
|
|
16 |
// | License along with this library; if not, write to the Free Software |
|
|
|
17 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
18 |
// +------------------------------------------------------------------------------------------------------+
|
431 |
mathias |
19 |
// CVS : $Id: HTML_Liste.class.php,v 1.2 2005/09/27 16:42:00 alexandre_tb Exp $
|
2 |
ddelon |
20 |
/**
|
|
|
21 |
* Application projet
|
|
|
22 |
*
|
|
|
23 |
* La classe HTML_Liste, classe de base pour toutes les listes du module projet
|
|
|
24 |
*
|
|
|
25 |
*@package projet
|
|
|
26 |
//Auteur original :
|
|
|
27 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
|
|
28 |
//Autres auteurs :
|
|
|
29 |
*@author Aucun
|
|
|
30 |
*@copyright Tela-Botanica 2000-2004
|
11 |
alexandre_ |
31 |
*@version $Revision: 1.2 $
|
2 |
ddelon |
32 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
33 |
*/
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
37 |
// | ENTETE du PROGRAMME |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
|
|
|
40 |
include_once 'HTML/Table.php' ;
|
|
|
41 |
|
|
|
42 |
/**
|
|
|
43 |
* class HTML_Liste
|
|
|
44 |
*
|
|
|
45 |
*/
|
|
|
46 |
class HTML_Liste extends HTML_Table
|
|
|
47 |
{
|
|
|
48 |
/*** Attributes: ***/
|
|
|
49 |
|
|
|
50 |
/**
|
|
|
51 |
*
|
|
|
52 |
* @access protected
|
|
|
53 |
*/
|
|
|
54 |
var $pager;
|
|
|
55 |
/**
|
|
|
56 |
*
|
|
|
57 |
* @access private
|
|
|
58 |
*/
|
|
|
59 |
var $_utilise_pager;
|
|
|
60 |
|
|
|
61 |
|
|
|
62 |
/**
|
|
|
63 |
*
|
|
|
64 |
*
|
|
|
65 |
* @param bool utilise_pager Si l'on souhaite que les résultats soient divisés en page, on passe true.
|
|
|
66 |
* @return HTML_Liste
|
|
|
67 |
* @access public
|
|
|
68 |
*/
|
|
|
69 |
function HTML_Liste( $utilise_pager = false, $attributes = '')
|
|
|
70 |
{
|
|
|
71 |
HTML_Table::HTML_Table($attributes) ;
|
|
|
72 |
$this->_utilise_pager = $utilise_pager ;
|
|
|
73 |
|
|
|
74 |
} // end of member function HTML_Liste
|
|
|
75 |
|
|
|
76 |
} // end of HTML_Liste
|
|
|
77 |
?>
|