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
Commits
24e65ab1
Commit
24e65ab1
authored
1 year ago
by
jaapjansma
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
5ef48b96
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CRM/DataprocessorOutputExport/Form/OutputExport.php
+1
-18
1 addition, 18 deletions
CRM/DataprocessorOutputExport/Form/OutputExport.php
with
1 addition
and
18 deletions
CRM/DataprocessorOutputExport/Form/OutputExport.php
+
1
−
18
View file @
24e65ab1
...
...
@@ -76,25 +76,8 @@ class CRM_DataprocessorOutputExport_Form_OutputExport extends CRM_Core_Form {
}
}
protected
function
getSelectedIds
():
array
{
if
(
is_array
(
$this
->
selectedIds
))
{
return
$this
->
selectedIds
;
}
if
(
$this
->
searchForm
instanceof
CRM_DataprocessorSearch_Form_AbstractSearch
)
{
if
(
$this
->
searchForm
->
allRecordsSelected
())
{
$this
->
selectedIds
=
[];
}
else
{
$this
->
selectedIds
=
$this
->
searchForm
->
getSelectedIds
();
}
}
if
(
!
is_array
(
$this
->
selectedIds
))
{
$this
->
selectedIds
=
$this
->
get
(
'entityIds'
)
??
array
();
}
return
$this
->
selectedIds
;
}
protected
function
runExport
()
{
$this
->
outputClass
->
downloadExport
(
$this
->
dataProcessorClass
,
$this
->
dataProcessor
,
$this
->
output
,
$this
->
searchValues
,
$this
->
sortFieldName
,
$this
->
sortDirection
,
$this
->
idFieldName
,
$this
->
getSelectedIds
());
$this
->
outputClass
->
downloadExport
(
$this
->
dataProcessorClass
,
$this
->
dataProcessor
,
$this
->
output
,
$this
->
searchValues
,
$this
->
sortFieldName
,
$this
->
sortDirection
,
$this
->
idFieldName
,
$this
->
searchForm
->
getSelectedIds
());
}
public
function
preProcess
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment