Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
configitems
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
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
configitems
Merge requests
!7
Afform entities: Use mixin for 5.50+, add shim for < 5.50
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Afform entities: Use mixin for 5.50+, add shim for < 5.50
colemanw/configitems:shim
into
master
Overview
1
Commits
1
Pipelines
0
Changes
2
Merged
colemanw
requested to merge
colemanw/configitems:shim
into
master
2 years ago
Overview
1
Commits
1
Pipelines
0
Changes
2
Expand
See
https://github.com/civicrm/civicrm-core/pull/23303
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
291e5f7a
1 commit,
2 years ago
2 files
+
21
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
mixin/afform-entity-php@1/mixin.php
0 → 100644
+
18
−
0
Options
<?php
/**
* Empty shim, can be removed when this extension drops support for core < 5.50
*
* @mixinName afform-entity-php
* @mixinVersion 1.0.0
*
* @param CRM_Extension_MixInfo $mixInfo
* @param \CRM_Extension_BootCache $bootCache
*/
return
function
(
$mixInfo
,
$bootCache
)
{
// This shim doesn't actually need to do anything because prior to CiviCRM 5.50,
// afformEntiteis were loaded automatically without any event.
// In CiviCRM 5.50+ this shim won't be used; the mixin from core will load the entities.
};
Loading