Column::__construct PHP Method

__construct() public method

public __construct ( )
        public function __construct()
        {
        }

Usage Example

 public function __construct($name, $label, $url, $options = array())
 {
     $options['formatter'] = array($this, 'formatLink');
     $this->url = $url;
     $this->idProperty = $options['idProperty'] ?: 'id';
     parent::__construct($name, $label, $options);
 }
All Usage Examples Of Column::__construct