/**
  * Constructor
  */
 function __construct($canEdit)
 {
     $this->_canEdit = $canEdit;
     parent::__construct();
 }
 /**
  * Constructor
  * @param $fileStage int The current file stage that the grid is handling
  * (others file stages could be shown activating the grid filter, but this
  * is the file stage that will be used to bring files from other stages, upload
  * new file, etc).
  * @param $dataProviderInitParams array Other parameters to initiate the grid
  * data provider that this category grid data provider will use to implement
  * common behaviours and data.
  */
 function __construct($fileStage, $dataProviderInitParams = null)
 {
     parent::__construct();
     $this->setDataProvider($this->initGridDataProvider($fileStage, $dataProviderInitParams));
 }
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
 }