Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dataprocessor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Extensions
dataprocessor
Merge requests
!52
Add option to hide 'View Contact' link on 'Contact Search' output
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add option to hide 'View Contact' link on 'Contact Search' output
mattwire/dataprocessor:hideviewcontact
into
master
Overview
5
Commits
1
Pipelines
0
Changes
4
Merged
mattwire
requested to merge
mattwire/dataprocessor:hideviewcontact
into
master
4 years ago
Overview
5
Commits
1
Pipelines
0
Changes
22
Expand
Add an option to the contact search output:
That allows to hide:
Or show the "View Contact" link:
0
0
Merge request reports
Compare
version 2
version 2
deb671b1
4 years ago
version 1
ae791adf
4 years ago
master (base)
and
latest version
latest version
18629074
1 commit,
4 years ago
version 2
deb671b1
2 commits,
4 years ago
version 1
ae791adf
1 commit,
4 years ago
Show latest version
22 files
+
239
−
160
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
22
Search (e.g. *.vue) (Ctrl+P)
CRM/Contact/Form/DataProcessorContactSearch.php
+
15
−
0
Options
@@ -18,6 +18,21 @@ class CRM_Contact_Form_DataProcessorContactSearch extends CRM_DataprocessorSearc
return
'Contact'
;
}
/**
* This function could be overridden in child classes to change default configuration.
*
* @param $output
*
* @return array
*/
protected
function
alterDataProcessorOutput
(
$output
)
{
// link_to_view_contact option was added in 0.12. So we default to TRUE to match previous behaviour
if
(
!
isset
(
$output
[
'configuration'
][
'link_to_view_contact'
]))
{
$output
[
'configuration'
][
'link_to_view_contact'
]
=
TRUE
;
}
return
$output
;
}
/**
* Returns the url for view of the record action
*
Loading