noalyss  Version-7.2
periode_mtable.class.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of NOALYSS.
5  *
6  * PhpCompta is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * PhpCompta is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with PhpCompta; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20 // Copyright (2016) Author Dany De Bontridder <dany@alchimerys.be>
21 
22 
23 /**
24  * @file
25  * @brief Definition of the class periode_mtable , for managing the periodes
26  *
27  */
29 {
30  function check()
31  {
32  echo "CHECK";
33  }
34  function display_row($p_row)
35  {
36  parent::display_row($p_row);
37  }
39  {
40  parent::display_table_header();
41  }
42 
43 
44 }
Periode_MTable\display_table_header
display_table_header()
display the column header excepted the not visible one and in the order defined with $this->a_order
Definition: periode_mtable.class.php:38
Manage_Table_SQL
Purpose is to propose a librairy to display a table content and allow to update and delete row ,...
Definition: manage_table_sql.class.php:66
Periode_MTable\check
check()
Definition: periode_mtable.class.php:30
Periode_MTable\display_row
display_row($p_row)
display a data row in the table, with the order defined in a_order and depending of the visibility of...
Definition: periode_mtable.class.php:34
Periode_MTable
Definition: periode_mtable.class.php:28