ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
Hyperlink.php
Go to the documentation of this file.
1
<?php
36
class
PHPExcel_Cell_Hyperlink
37
{
43
private
$_url
;
44
50
private
$_tooltip
;
51
58
public
function
__construct
($pUrl =
''
, $pTooltip =
''
)
59
{
60
// Initialise member variables
61
$this->_url = $pUrl;
62
$this->_tooltip = $pTooltip;
63
}
64
70
public
function
getUrl
() {
71
return
$this->_url
;
72
}
73
80
public
function
setUrl
($value =
''
) {
81
$this->_url = $value;
82
return
$this;
83
}
84
90
public
function
getTooltip
() {
91
return
$this->_tooltip
;
92
}
93
100
public
function
setTooltip
($value =
''
) {
101
$this->_tooltip = $value;
102
return
$this;
103
}
104
110
public
function
isInternal
() {
111
return
strpos($this->_url,
'sheet://'
) !==
false
;
112
}
113
119
public
function
getHashCode
() {
120
return
md5(
121
$this->_url
122
. $this->_tooltip
123
. __CLASS__
124
);
125
}
126
}
PHPExcel_Cell_Hyperlink\isInternal
isInternal()
Is this hyperlink internal? (to another worksheet)
Definition:
Hyperlink.php:110
PHPExcel_Cell_Hyperlink\$_url
$_url
Definition:
Hyperlink.php:43
PHPExcel_Cell_Hyperlink
Definition:
Hyperlink.php:36
PHPExcel_Cell_Hyperlink\getTooltip
getTooltip()
Get tooltip.
Definition:
Hyperlink.php:90
PHPExcel_Cell_Hyperlink\$_tooltip
$_tooltip
Definition:
Hyperlink.php:50
PHPExcel_Cell_Hyperlink\getHashCode
getHashCode()
Get hash code.
Definition:
Hyperlink.php:119
PHPExcel_Cell_Hyperlink\setUrl
setUrl($value='')
Set URL.
Definition:
Hyperlink.php:80
PHPExcel_Cell_Hyperlink\getUrl
getUrl()
Get URL.
Definition:
Hyperlink.php:70
PHPExcel_Cell_Hyperlink\__construct
__construct($pUrl='', $pTooltip='')
Create a new PHPExcel_Cell_Hyperlink.
Definition:
Hyperlink.php:58
PHPExcel_Cell_Hyperlink\setTooltip
setTooltip($value='')
Set tooltip.
Definition:
Hyperlink.php:100
libs
composer
vendor
phpoffice
phpexcel
Classes
PHPExcel
Cell
Hyperlink.php
Generated on Sat Jan 18 2025 19:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)