コード例 #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;
 }