示例#1
0
文件: Grid.php 项目: arhe/pwak
 /**
  * Constructor
  *
  * @access protected
  */
 function __construct()
 {
     parent::__construct();
     // Pour gerer plusieurs grids dans le meme script
     static $_instances = 0;
     $_instances++;
     $this->NbGridsInPage = $_instances;
 }
示例#2
0
文件: SubGrid.php 项目: arhe/pwak
 /**
  * Constructor
  *
  * @access protected
  */
 function __construct()
 {
     parent::__construct();
     $this->itemPerPage = 1000000;
 }