GridCellProvider::__construct PHP Method

__construct() public method

Constructor
public __construct ( )
    function __construct()
    {
    }

Usage Example

 /**
  * Constructor.
  * @param $assocType int
  * @param $assocId int
  * @param $requestArgs array Grid request arguments.
  */
 function __construct($assocType, $assocId, $requestArgs)
 {
     parent::__construct();
     $this->_assocType = $assocType;
     $this->_assocId = $assocId;
     $this->_requestArgs = $requestArgs;
 }
All Usage Examples Of GridCellProvider::__construct