|
@@ 691-693 (lines=3) @@
|
| 688 |
|
public function getHREF($exclude_from = null) |
| 689 |
|
{ |
| 690 |
|
$href = []; |
| 691 |
|
if (isset($_REQUEST['server']) && $exclude_from != 'server') { |
| 692 |
|
$href[] = 'server=' . urlencode($_REQUEST['server']); |
| 693 |
|
} |
| 694 |
|
if (isset($_REQUEST['database']) && $exclude_from != 'database') { |
| 695 |
|
$href[] = 'database=' . urlencode($_REQUEST['database']); |
| 696 |
|
} |
|
@@ 694-696 (lines=3) @@
|
| 691 |
|
if (isset($_REQUEST['server']) && $exclude_from != 'server') { |
| 692 |
|
$href[] = 'server=' . urlencode($_REQUEST['server']); |
| 693 |
|
} |
| 694 |
|
if (isset($_REQUEST['database']) && $exclude_from != 'database') { |
| 695 |
|
$href[] = 'database=' . urlencode($_REQUEST['database']); |
| 696 |
|
} |
| 697 |
|
if (isset($_REQUEST['schema']) && $exclude_from != 'schema') { |
| 698 |
|
$href[] = 'schema=' . urlencode($_REQUEST['schema']); |
| 699 |
|
} |
|
@@ 697-699 (lines=3) @@
|
| 694 |
|
if (isset($_REQUEST['database']) && $exclude_from != 'database') { |
| 695 |
|
$href[] = 'database=' . urlencode($_REQUEST['database']); |
| 696 |
|
} |
| 697 |
|
if (isset($_REQUEST['schema']) && $exclude_from != 'schema') { |
| 698 |
|
$href[] = 'schema=' . urlencode($_REQUEST['schema']); |
| 699 |
|
} |
| 700 |
|
|
| 701 |
|
return htmlentities(implode('&', $href)); |
| 702 |
|
} |