Skip to content

Commit 38839d0

Browse files
authored
Merge branch '1.9.4.x' into upload_logo
2 parents ce363b8 + d1ef6e4 commit 38839d0

File tree

8,932 files changed

+11159
-96944
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,932 files changed

+11159
-96944
lines changed

.all-contributorsrc

+23-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"commit": true,
1111
"commitConvention": "none",
1212
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" loading=\"lazy\" width=\"<%= options.imageSize %>\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
13+
"badgeTemplate": "<a href=\"#contributors-\"><img src=\"https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg\" alt=\"All Contributors\"></a>",
1314
"contributors": [
1415
{
1516
"login": "sreichel",
@@ -1332,7 +1333,10 @@
13321333
"login": "cebe",
13331334
"name": "Carsten Brandt",
13341335
"avatar_url": "https://avatars.githubusercontent.com/u/189796?v=4",
1335-
"profile": "http://cebe.cc/"
1336+
"profile": "http://cebe.cc/",
1337+
"contributions": [
1338+
"code"
1339+
]
13361340
},
13371341
{
13381342
"login": "eneiasramos",
@@ -1351,6 +1355,24 @@
13511355
"contributions": [
13521356
"code"
13531357
]
1358+
},
1359+
{
1360+
"login": "rfeese",
1361+
"name": "Roger Feese",
1362+
"avatar_url": "https://avatars.githubusercontent.com/u/7074181?v=4",
1363+
"profile": "https://github.com/rfeese",
1364+
"contributions": [
1365+
"code"
1366+
]
1367+
},
1368+
{
1369+
"login": "AGelzer",
1370+
"name": "Alexander Gelzer",
1371+
"avatar_url": "https://avatars.githubusercontent.com/u/34437931?v=4",
1372+
"profile": "https://github.com/AGelzer",
1373+
"contributions": [
1374+
"code"
1375+
]
13541376
}
13551377
],
13561378
"contributorsPerLine": 7

.ddev/commands/web/rector

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
## Description: run rector
4+
## Usage: rector
5+
## Example: ddev rector <path-to-files>
6+
7+
cp -n vendor/sreichel/openmage-rector/rector.php rector.php
8+
php vendor/bin/rector process "$@"

.ddev/commands/web/vendor-patches

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: create Vendor Patches
4+
## Usage: vendor-patches
5+
## Example: ddev vendor-patches
6+
7+
php vendor/bin/vendor-patches generate

.github/codeql-config.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
paths-ignore:
3+
- 'js/prototype/prototype.js'
4+
- 'skin/frontend/rwd/default/js/lib/selectivizr.js'
5+
- 'js/mage/adminhtml/flexuploader.js'
6+
- 'js/mage/adminhtml/sales/packaging.js'
7+
- 'js/mage/adminhtml/uploader/instance.js'
8+
- 'js/mage/adminhtml/wysiwyg/tiny_mce/setup.js'
9+
- 'js/prototype/validation.js'
10+
- 'js/tiny_mce/tiny_mce_dev.js'
11+
- 'js/tiny_mce/tiny_mce.js'
12+
- 'js/tiny_mce/tiny_mce_src.js'
13+
- 'js/tiny_mce/tiny_mce_jquery.js'
14+
- 'js/tiny_mce/tiny_mce_jquery_src.js'
15+
- 'js/tiny_mce/tiny_mce_prototype.js'
16+
- 'js/tiny_mce/tiny_mce_prototype_src.js'
17+
- 'js/tiny_mce/classes/**/*.js'
18+
- 'js/tiny_mce/utils/**/*.js'
19+
- 'js/tiny_mce/plugins/**/*.js'
20+
- 'js/lib/jquery/jquery-1.12.4.js'
21+
- 'js/extjs/ext-tree.js'
22+
- '**/*.test.js'

.github/workflows/codeql-analysis.yml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL"
13+
14+
on:
15+
push:
16+
branches: [ "1.9.4.x", 20.0 ]
17+
pull_request:
18+
# The branches below must be a subset of the branches above
19+
branches: [ "1.9.4.x", 20.0 ]
20+
paths-ignore:
21+
- '**/*.md'
22+
- '**/*.txt'
23+
24+
jobs:
25+
analyze:
26+
name: Analyze
27+
runs-on: ubuntu-latest
28+
permissions:
29+
actions: read
30+
contents: read
31+
security-events: write
32+
33+
strategy:
34+
fail-fast: false
35+
matrix:
36+
language: [ 'javascript' ]
37+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
38+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
39+
40+
steps:
41+
- name: Checkout repository
42+
uses: actions/checkout@v3
43+
44+
# Initializes the CodeQL tools for scanning.
45+
- name: Initialize CodeQL
46+
uses: github/codeql-action/init@v2
47+
with:
48+
languages: ${{ matrix.language }}
49+
config-file: ./.github/codeql-config.yml
50+
# If you wish to specify custom queries, you can do so here or in a config file.
51+
# By default, queries listed here will override any specified in a config file.
52+
# Prefix the list here with "+" to use these queries and those in the config file.
53+
54+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
55+
# queries: security-extended,security-and-quality
56+
57+
58+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
59+
# If this step fails, then you should remove it and run the build manually (see below)
60+
- name: Autobuild
61+
uses: github/codeql-action/autobuild@v2
62+
63+
# ℹ️ Command-line programs to run using the OS shell.
64+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
65+
66+
# If the Autobuild fails above, remove it and uncomment the following three lines.
67+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
68+
69+
# - run: |
70+
# echo "Run, Build Application using script"
71+
# ./location_of_script_within_repo/buildscript.sh
72+
73+
- name: Perform CodeQL Analysis
74+
uses: github/codeql-action/analyze@v2
75+
with:
76+
category: "/language:${{matrix.language}}"

.github/workflows/release.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
operating-system: [ubuntu-latest]
13-
php-versions: ['7.3']
13+
php-versions: ['7.4']
1414
steps:
1515
- name: Checkout repository
1616
uses: actions/checkout@master
@@ -26,9 +26,24 @@ jobs:
2626
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
2727
restore-keys: ${{ runner.os }}-composer-
2828

29+
- name: Require legacy frontend themes on v19
30+
if: startsWith(github.event.release.tag_name, 'v19')
31+
run: composer require --no-install --prefer-dist --no-progress --ignore-platform-req=ext-* openmage/legacy-frontend-themes
32+
33+
- name: Require Mage_Backup on v19
34+
if: startsWith(github.event.release.tag_name, 'v19')
35+
run: composer require --no-install --prefer-dist --no-progress --ignore-platform-req=ext-* openmage/module-mage-backup
36+
37+
- name: Require Mage_PageCache on v19
38+
if: startsWith(github.event.release.tag_name, 'v19')
39+
run: composer require --no-install --prefer-dist --no-progress --ignore-platform-req=ext-* openmage/module-mage-pagecache
40+
2941
- name: Composer install
3042
run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-* --no-dev
3143

44+
- name: Optimize autoloader
45+
run: composer dump-autoload --optimize
46+
3247
- name: Create ZIP file
3348
run: zip -rq openmage-${{ github.event.release.tag_name }}.zip . -x '.git/*'
3449

.github/workflows/syntax-php.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
php: ['7.3', '8.1', '8.2']
17+
php: ['7.4', '8.1', '8.2']
1818

1919
name: PHP Syntax ${{ matrix.php }}
2020

.github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373

7474
phpstan:
7575
name: PHPStan
76-
needs: [check, composer, phpcs, php-cs-fixer]
76+
needs: [check, composer]
7777
if: |
7878
needs.check.outputs.php > 0 ||
7979
needs.check.outputs.phpstan > 0 ||

.htaccess

+1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
ExpiresByType text/x-javascript "access plus 1 month"
198198
ExpiresByType application/x-shockwave-flash "access plus 1 month"
199199
ExpiresByType image/x-icon "access plus 1 year"
200+
ExpiresByType image/svg+xml "access plus 1 year"
200201
ExpiresDefault "access plus 2 days"
201202
</IfModule>
202203

.phpstorm.meta.php/magento_blocks.meta.php

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
'adminhtml/api_user_edit_tabs' => \Mage_Adminhtml_Block_Api_User_Edit_Tabs::class,
2323
'adminhtml/api_user_grid' => \Mage_Adminhtml_Block_Api_User_Grid::class,
2424
'adminhtml/api_users' => \Mage_Adminhtml_Block_Api_Users::class,
25-
'adminhtml/backup' => \Mage_Adminhtml_Block_Backup::class,
26-
'adminhtml/backup_dialogs' => \Mage_Adminhtml_Block_Backup_Dialogs::class,
27-
'adminhtml/backup_grid' => \Mage_Adminhtml_Block_Backup_Grid::class,
2825
'adminhtml/cache' => \Mage_Adminhtml_Block_Cache::class,
2926
'adminhtml/cache_additional' => \Mage_Adminhtml_Block_Cache_Additional::class,
3027
'adminhtml/cache_grid' => \Mage_Adminhtml_Block_Cache_Grid::class,

.phpstorm.meta.php/magento_blocks_methods.meta.php

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
'adminhtml/api_user_edit_tabs' => \Mage_Adminhtml_Block_Api_User_Edit_Tabs::class,
2323
'adminhtml/api_user_grid' => \Mage_Adminhtml_Block_Api_User_Grid::class,
2424
'adminhtml/api_users' => \Mage_Adminhtml_Block_Api_Users::class,
25-
'adminhtml/backup' => \Mage_Adminhtml_Block_Backup::class,
26-
'adminhtml/backup_dialogs' => \Mage_Adminhtml_Block_Backup_Dialogs::class,
27-
'adminhtml/backup_grid' => \Mage_Adminhtml_Block_Backup_Grid::class,
2825
'adminhtml/cache' => \Mage_Adminhtml_Block_Cache::class,
2926
'adminhtml/cache_additional' => \Mage_Adminhtml_Block_Cache_Additional::class,
3027
'adminhtml/cache_grid' => \Mage_Adminhtml_Block_Cache_Grid::class,

.phpstorm.meta.php/magento_helpers.meta.php

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
3131
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
3232
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
33-
'backup' => \Mage_Backup_Helper_Data::class,
34-
'backup/data' => \Mage_Backup_Helper_Data::class,
3533
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
3634
'bundle' => \Mage_Bundle_Helper_Data::class,
3735
'bundle/data' => \Mage_Bundle_Helper_Data::class,

.phpstorm.meta.php/magento_helpers_methods.meta.php

-32
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
3131
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
3232
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
33-
'backup' => \Mage_Backup_Helper_Data::class,
34-
'backup/data' => \Mage_Backup_Helper_Data::class,
3533
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
3634
'bundle' => \Mage_Bundle_Helper_Data::class,
3735
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -223,8 +221,6 @@
223221
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
224222
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
225223
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
226-
'backup' => \Mage_Backup_Helper_Data::class,
227-
'backup/data' => \Mage_Backup_Helper_Data::class,
228224
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
229225
'bundle' => \Mage_Bundle_Helper_Data::class,
230226
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -416,8 +412,6 @@
416412
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
417413
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
418414
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
419-
'backup' => \Mage_Backup_Helper_Data::class,
420-
'backup/data' => \Mage_Backup_Helper_Data::class,
421415
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
422416
'bundle' => \Mage_Bundle_Helper_Data::class,
423417
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -609,8 +603,6 @@
609603
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
610604
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
611605
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
612-
'backup' => \Mage_Backup_Helper_Data::class,
613-
'backup/data' => \Mage_Backup_Helper_Data::class,
614606
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
615607
'bundle' => \Mage_Bundle_Helper_Data::class,
616608
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -802,8 +794,6 @@
802794
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
803795
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
804796
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
805-
'backup' => \Mage_Backup_Helper_Data::class,
806-
'backup/data' => \Mage_Backup_Helper_Data::class,
807797
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
808798
'bundle' => \Mage_Bundle_Helper_Data::class,
809799
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -995,8 +985,6 @@
995985
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
996986
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
997987
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
998-
'backup' => \Mage_Backup_Helper_Data::class,
999-
'backup/data' => \Mage_Backup_Helper_Data::class,
1000988
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
1001989
'bundle' => \Mage_Bundle_Helper_Data::class,
1002990
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -1188,8 +1176,6 @@
11881176
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
11891177
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
11901178
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
1191-
'backup' => \Mage_Backup_Helper_Data::class,
1192-
'backup/data' => \Mage_Backup_Helper_Data::class,
11931179
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
11941180
'bundle' => \Mage_Bundle_Helper_Data::class,
11951181
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -1381,8 +1367,6 @@
13811367
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
13821368
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
13831369
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
1384-
'backup' => \Mage_Backup_Helper_Data::class,
1385-
'backup/data' => \Mage_Backup_Helper_Data::class,
13861370
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
13871371
'bundle' => \Mage_Bundle_Helper_Data::class,
13881372
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -1574,8 +1558,6 @@
15741558
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
15751559
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
15761560
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
1577-
'backup' => \Mage_Backup_Helper_Data::class,
1578-
'backup/data' => \Mage_Backup_Helper_Data::class,
15791561
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
15801562
'bundle' => \Mage_Bundle_Helper_Data::class,
15811563
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -1767,8 +1749,6 @@
17671749
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
17681750
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
17691751
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
1770-
'backup' => \Mage_Backup_Helper_Data::class,
1771-
'backup/data' => \Mage_Backup_Helper_Data::class,
17721752
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
17731753
'bundle' => \Mage_Bundle_Helper_Data::class,
17741754
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -1960,8 +1940,6 @@
19601940
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
19611941
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
19621942
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
1963-
'backup' => \Mage_Backup_Helper_Data::class,
1964-
'backup/data' => \Mage_Backup_Helper_Data::class,
19651943
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
19661944
'bundle' => \Mage_Bundle_Helper_Data::class,
19671945
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -2153,8 +2131,6 @@
21532131
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
21542132
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
21552133
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
2156-
'backup' => \Mage_Backup_Helper_Data::class,
2157-
'backup/data' => \Mage_Backup_Helper_Data::class,
21582134
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
21592135
'bundle' => \Mage_Bundle_Helper_Data::class,
21602136
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -2346,8 +2322,6 @@
23462322
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
23472323
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
23482324
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
2349-
'backup' => \Mage_Backup_Helper_Data::class,
2350-
'backup/data' => \Mage_Backup_Helper_Data::class,
23512325
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
23522326
'bundle' => \Mage_Bundle_Helper_Data::class,
23532327
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -2539,8 +2513,6 @@
25392513
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
25402514
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
25412515
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
2542-
'backup' => \Mage_Backup_Helper_Data::class,
2543-
'backup/data' => \Mage_Backup_Helper_Data::class,
25442516
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
25452517
'bundle' => \Mage_Bundle_Helper_Data::class,
25462518
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -2732,8 +2704,6 @@
27322704
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
27332705
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
27342706
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
2735-
'backup' => \Mage_Backup_Helper_Data::class,
2736-
'backup/data' => \Mage_Backup_Helper_Data::class,
27372707
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
27382708
'bundle' => \Mage_Bundle_Helper_Data::class,
27392709
'bundle/data' => \Mage_Bundle_Helper_Data::class,
@@ -2925,8 +2895,6 @@
29252895
'authorizenet/admin' => \Mage_Authorizenet_Helper_Admin::class,
29262896
'authorizenet' => \Mage_Authorizenet_Helper_Data::class,
29272897
'authorizenet/data' => \Mage_Authorizenet_Helper_Data::class,
2928-
'backup' => \Mage_Backup_Helper_Data::class,
2929-
'backup/data' => \Mage_Backup_Helper_Data::class,
29302898
'bundle/catalog_product_configuration' => \Mage_Bundle_Helper_Catalog_Product_Configuration::class,
29312899
'bundle' => \Mage_Bundle_Helper_Data::class,
29322900
'bundle/data' => \Mage_Bundle_Helper_Data::class,

0 commit comments

Comments
 (0)