Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
justinfreeman (Agileware)
Core
Commits
a304337b
Commit
a304337b
authored
11 years ago
by
totten
Browse files
Options
Downloads
Patches
Plain Diff
CRM_Utils_Migrate_Export - Allow export of specific UFGroups
parent
fff90e6e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CRM/Utils/Migrate/Export.php
+37
-0
37 additions, 0 deletions
CRM/Utils/Migrate/Export.php
with
37 additions
and
0 deletions
CRM/Utils/Migrate/Export.php
+
37
−
0
View file @
a304337b
...
@@ -316,6 +316,43 @@ class CRM_Utils_Migrate_Export {
...
@@ -316,6 +316,43 @@ class CRM_Utils_Migrate_Export {
$this
->
fetch
(
'customField'
,
'CRM_Core_DAO_CustomField'
,
$sql
);
$this
->
fetch
(
'customField'
,
'CRM_Core_DAO_CustomField'
,
$sql
);
}
}
/**
* @param array $ufGroupIds list of custom groups to export
* @return void
*/
function
buildUFGroups
(
$ufGroupIds
)
{
$ufGroupIdsSql
=
implode
(
','
,
array_filter
(
$ufGroupIds
,
'is_numeric'
));
if
(
empty
(
$ufGroupIdsSql
))
{
return
;
}
$sql
=
"
SELECT cg.*
FROM civicrm_uf_group cg
WHERE cg.id IN (
$ufGroupIdsSql
)
"
;
$this
->
fetch
(
'profileGroup'
,
'CRM_Core_DAO_UFGroup'
,
$sql
);
$sql
=
"
SELECT f.*
FROM civicrm_uf_field f,
civicrm_uf_group cg
WHERE f.uf_group_id = cg.id
AND cg.id IN (
$ufGroupIdsSql
)
"
;
$this
->
fetch
(
'profileField'
,
'CRM_Core_DAO_UFField'
,
$sql
);
$sql
=
"
SELECT *
FROM civicrm_uf_join
WHERE entity_table IS NULL
AND entity_id IS NULL
AND uf_group_id IN (
$ufGroupIdsSql
)
"
;
$this
->
fetch
(
'profileJoin'
,
'CRM_Core_DAO_UFJoin'
,
$sql
);
}
/**
/**
* Render the in-memory representation as XML
* Render the in-memory representation as XML
*
*
...
...
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