Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Merge requests
!817
F18679, New Sticky Tooltip _link param O.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
F18679, New Sticky Tooltip _link param O.
F18679-ToolTip-sticky-copy-to-clipboard-V2
into
develop
Overview
1
Commits
2
Pipelines
1
Changes
2
Closed
Zen Zalapski
requested to merge
F18679-ToolTip-sticky-copy-to-clipboard-V2
into
develop
1 month ago
Overview
1
Commits
2
Pipelines
1
Changes
2
Expand
Sticky ToolTip can be enabled with or without text. Moved Previous monitor to 'L'.
0
0
Merge request reports
Viewing commit
7a9b8ec8
Prev
Next
Show latest version
2 files
+
56
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
7a9b8ec8
refs #18679, Added Unit Test for buildStickyToolTip in LinkTest.php.
· 7a9b8ec8
zzalap
authored
1 month ago
extension/Classes/Core/Report/Link.php
+
7
−
3
Options
@@ -2605,16 +2605,20 @@ EOF;
* and removes Title in $link element.
*
* Input enabled: $link -> <a href="url" class="btn btn-default" title="TEXT" ...></a>
* Output:<a href="url" class="btn btn-default tooltip-trigger" ...><div class="tooltip">TEXT</div></a>
* Output:<a href="url" class="btn btn-default tooltip-trigger" REMOVED TITLE ...>
* <div class="tooltip">TITLE TEXT</div> // Added Tool-Tip Div
* </a>
*
* Input disabled (r=3/4): $link -> <span class="btn btn-default disabled" title="TEXT"></span>
* Output disabled: <span class="btn btn-default disabled tooltip-trigger"><div class="tooltip">TEXT</div></span>
* Output disabled: <span class="btn btn-default disabled tooltip-trigger" REMOVED TITLE ...>
* <div class="tooltip">TITLE TEXT</div> // Added Tool-Tip Div
* </span>
* @param $link
* @param $stickyToolTipText
* @param $finalToolTip
* @return string
*/
p
rivate
function
buildStickyToolTip
(
$link
,
$stickyToolTipText
,
$finalToolTip
):
string
{
p
ublic
function
buildStickyToolTip
(
$link
,
$stickyToolTipText
,
$finalToolTip
):
string
{
$toolTipText
=
$stickyToolTipText
.
$finalToolTip
;
// Extract Existing Classes
Loading