public function PHPExcel_Cell_Hyperlink::__construct in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php \PHPExcel_Cell_Hyperlink::__construct()
Create a new PHPExcel_Cell_Hyperlink
Parameters
string $pUrl Url to link the cell to:
string $pTooltip Tooltip to display on the hyperlink:
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell/ Hyperlink.php, line 58
Class
- PHPExcel_Cell_Hyperlink
- PHPExcel_Cell_Hyperlink
Code
public function __construct($pUrl = '', $pTooltip = '') {
// Initialise member variables
$this->_url = $pUrl;
$this->_tooltip = $pTooltip;
}