Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stripe
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
Stripe
Commits
e7c14cb6
Commit
e7c14cb6
authored
1 year ago
by
mattwire
Browse files
Options
Downloads
Patches
Plain Diff
Update version
parent
d6c8df91
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
info.xml
+2
-2
2 additions, 2 deletions
info.xml
mixin/smarty-v2@1.0.1.mixin.php
+0
-51
0 additions, 51 deletions
mixin/smarty-v2@1.0.1.mixin.php
with
2 additions
and
53 deletions
info.xml
+
2
−
2
View file @
e7c14cb6
...
...
@@ -16,10 +16,10 @@
<email>
mjw@mjwconsult.co.uk
</email>
</maintainer>
<releaseDate>
2023-09-22
</releaseDate>
<version>
6.
9.4
</version>
<version>
6.
10-dev
</version>
<develStage>
stable
</develStage>
<compatibility>
<ver>
5.
58
</ver>
<ver>
5.
64
</ver>
</compatibility>
<comments>
Original Author: Joshua Walker (drastik) - Drastik by Design.
Jamie Mcclelland (ProgressiveTech) did a lot of the 5.x compatibility work.
...
...
This diff is collapsed.
Click to expand it.
mixin/smarty-v2@1.0.1.mixin.php
deleted
100644 → 0
+
0
−
51
View file @
d6c8df91
<?php
/**
* Auto-register "templates/" folder.
*
* @mixinName smarty-v2
* @mixinVersion 1.0.1
* @since 5.59
*
* @param CRM_Extension_MixInfo $mixInfo
* On newer deployments, this will be an instance of MixInfo. On older deployments, Civix may polyfill with a work-a-like.
* @param \CRM_Extension_BootCache $bootCache
* On newer deployments, this will be an instance of MixInfo. On older deployments, Civix may polyfill with a work-a-like.
*/
return
function
(
$mixInfo
,
$bootCache
)
{
$dir
=
$mixInfo
->
getPath
(
'templates'
);
if
(
!
file_exists
(
$dir
))
{
return
;
}
$register
=
function
()
use
(
$dir
)
{
// This implementation has a theoretical edge-case bug on older versions of CiviCRM where a template could
// be registered more than once.
CRM_Core_Smarty
::
singleton
()
->
addTemplateDir
(
$dir
);
};
// Let's figure out what environment we're in -- so that we know the best way to call $register().
if
(
!
empty
(
$GLOBALS
[
'_CIVIX_MIXIN_POLYFILL'
]))
{
// Polyfill Loader (v<=5.45): We're already in the middle of firing `hook_config`.
if
(
$mixInfo
->
isActive
())
{
$register
();
}
return
;
}
if
(
CRM_Extension_System
::
singleton
()
->
getManager
()
->
extensionIsBeingInstalledOrEnabled
(
$mixInfo
->
longName
))
{
// New Install, Standard Loader: The extension has just been enabled, and we're now setting it up.
// System has already booted. New templates may be needed for upcoming installation steps.
$register
();
return
;
}
// Typical Pageview, Standard Loader: Defer the actual registration for a moment -- to ensure that Smarty is online.
\Civi
::
dispatcher
()
->
addListener
(
'hook_civicrm_config'
,
function
()
use
(
$mixInfo
,
$register
)
{
if
(
$mixInfo
->
isActive
())
{
$register
();
}
});
};
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