Produced by Araxis Merge on 2021-05-13 09:08:40 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | /Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/code/Smartwave/Megamenu/Model/Category | DataProvider.php | 2016-06-26 23:03:26 +0000 |
| 2 | /Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/code/Smartwave/Megamenu/Model/Category | DataProvider.php | 2021-05-01 14:20:20 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 194 |
| Changed | 0 | 0 |
| Inserted | 1 | 1 |
| Removed | 0 | 0 |
| Whitespace | Consecutive whitespace is treated as a single space |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
| Active line-pairing rules |
No regular expressions were active.
| 1 | <?php | 1 | <?php | |||
| 2 | /** | 2 | /** | |||
| 3 | * Copyright © 2016 Magento. All rights reserved. | 3 | * Copyright © 2016 Magento. All rights reserved. | |||
| 4 | * See COPYING.txt for license details. | 4 | * See COPYING.txt for license details. | |||
| 5 | */ | 5 | */ | |||
| 6 | namespace Smartwave\Megamenu\Model\Category; | 6 | namespace Smartwave\Megamenu\Model\Category; | |||
| 7 | 7 | |||||
| 8 | /** | 8 | /** | |||
| 9 | * Class DataProvider | 9 | * Class DataProvider | |||
| 10 | * | 10 | * | |||
| 11 | * @SuppressWarnings(PHPMD.CouplingBetweenObjects) | 11 | * @SuppressWarnings(PHPMD.CouplingBetweenObjects) | |||
| 12 | */ | 12 | */ | |||
| 13 | class DataProvider extends \Magento\Catalog\Model\Category\DataProvider | 13 | class DataProvider extends \Magento\Catalog\Model\Category\DataProvider | |||
| 14 | { | 14 | { | |||
| 15 | /** | 15 | /** | |||
| 16 | * @return array | 16 | * @return array | |||
| 17 | */ | 17 | */ | |||
| 18 | protected function getFieldsMap() | 18 | protected function getFieldsMap() | |||
| 19 | { | 19 | { | |||
| 20 | return [ | 20 | return [ | |||
| 21 | 'general' => | 21 | 'general' => | |||
| 22 | [ | 22 | [ | |||
| 23 | 'parent', | 23 | 'parent', | |||
| 24 | 'path', | 24 | 'path', | |||
| 25 | 'is_active', | 25 | 'is_active', | |||
| 26 | 'include_in_menu', | 26 | 'include_in_menu', | |||
| 27 | 'name', | 27 | 'name', | |||
| 28 | ], | 28 | ], | |||
| 29 | 'content' => | 29 | 'content' => | |||
| 30 | [ | 30 | [ | |||
| 31 | 'image', | 31 | 'image', | |||
| 32 | 'description', | 32 | 'description', | |||
| 33 | 'landing_page', | 33 | 'landing_page', | |||
| 34 | ], | 34 | ], | |||
| 35 | 'display_settings' => | 35 | 'display_settings' => | |||
| 36 | [ | 36 | [ | |||
| 37 | 'display_mode', | 37 | 'display_mode', | |||
| 38 | 'is_anchor', | 38 | 'is_anchor', | |||
| 39 | 'available_sort_by', | 39 | 'available_sort_by', | |||
| 40 | 'use_config.available_sort_by', | 40 | 'use_config.available_sort_by', | |||
| 41 | 'default_sort_by', | 41 | 'default_sort_by', | |||
| 42 | 'use_config.default_sort_by', | 42 | 'use_config.default_sort_by', | |||
| 43 | 'filter_price_range', | 43 | 'filter_price_range', | |||
| 44 | 'use_config.filter_price_range', | 44 | 'use_config.filter_price_range', | |||
| 45 | ], | 45 | ], | |||
| 46 | 'search_engine_optimization' => | 46 | 'search_engine_optimization' => | |||
| 47 | [ | 47 | [ | |||
| 48 | 'url_key', | 48 | 'url_key', | |||
| 49 | 'url_key_create_redirect', | 49 | 'url_key_create_redirect', | |||
| 50 | 'use_default.url_key', | 50 | 'use_default.url_key', | |||
| 51 | 'url_key_group', | 51 | 'url_key_group', | |||
| 52 | 'meta_title', | 52 | 'meta_title', | |||
| 53 | 'meta_keywords', | 53 | 'meta_keywords', | |||
| 54 | 'meta_description', | 54 | 'meta_description', | |||
| 55 | ], | 55 | ], | |||
| 56 | 'assign_products' => | 56 | 'assign_products' => | |||
| 57 | [ | 57 | [ | |||
| 58 | ], | 58 | ], | |||
| 59 | 'design' => | 59 | 'design' => | |||
| 60 | [ | 60 | [ | |||
| 61 | 'custom_use_parent_settings', | 61 | 'custom_use_parent_settings', | |||
| 62 | 'custom_apply_to_products', | 62 | 'custom_apply_to_products', | |||
| 63 | 'custom_design', | 63 | 'custom_design', | |||
| 64 | 'page_layout', | 64 | 'page_layout', | |||
| 65 | 'custom_layout_update', | 65 | 'custom_layout_update', | |||
| 66 | 'custom_layout_update_file' | |||||
| 66 | ], | 67 | ], | |||
| 67 | 'schedule_design_update' => | 68 | 'schedule_design_update' => | |||
| 68 | [ | 69 | [ | |||
| 69 | 'custom_design_from', | 70 | 'custom_design_from', | |||
| 70 | 'custom_design_to', | 71 | 'custom_design_to', | |||
| 71 | ], | 72 | ], | |||
| 72 | 'sw-menu' => | 73 | 'sw-menu' => | |||
| 73 | [ | 74 | [ | |||
| 74 | 'sw_menu_hide_item', | 75 | 'sw_menu_hide_item', | |||
| 75 | 'sw_menu_type', | 76 | 'sw_menu_type', | |||
| 76 | 'sw_menu_static_width', | 77 | 'sw_menu_static_width', | |||
| 77 | 'sw_menu_cat_columns', | 78 | 'sw_menu_cat_columns', | |||
| 78 | 'sw_menu_float_type', | 79 | 'sw_menu_float_type', | |||
| 79 | 'sw_menu_cat_label', | 80 | 'sw_menu_cat_label', | |||
| 80 | 'sw_menu_icon_img', | 81 | 'sw_menu_icon_img', | |||
| 81 | 'sw_menu_font_icon', | 82 | 'sw_menu_font_icon', | |||
| 82 | 'sw_menu_block_top_content', | 83 | 'sw_menu_block_top_content', | |||
| 83 | 'sw_menu_block_left_width', | 84 | 'sw_menu_block_left_width', | |||
| 84 | 'sw_menu_block_left_content', | 85 | 'sw_menu_block_left_content', | |||
| 85 | 'sw_menu_block_right_width', | 86 | 'sw_menu_block_right_width', | |||
| 86 | 'sw_menu_block_right_content', | 87 | 'sw_menu_block_right_content', | |||
| 87 | 'sw_menu_block_bottom_content', | 88 | 'sw_menu_block_bottom_content', | |||
| 88 | ], | 89 | ], | |||
| 89 | 'category_view_optimization' => | 90 | 'category_view_optimization' => | |||
| 90 | [ | 91 | [ | |||
| 91 | ], | 92 | ], | |||
| 92 | 'category_permissions' => | 93 | 'category_permissions' => | |||
| 93 | [ | 94 | [ | |||
| 94 | ], | 95 | ], | |||
| 95 | ]; | 96 | ]; | |||
| 96 | } | 97 | } | |||
| 97 | } | 98 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.