Produced by Araxis Merge on 2021-05-13 09:09:04 +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/design/frontend/Smartwave/porto/Magento_LayeredNavigation/templates/layer | state.phtml | 2015-09-16 08:06:32 +0000 |
| 2 | /Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_LayeredNavigation/templates/layer | state.phtml | 2015-09-16 08:06:32 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 1 | 106 |
| Changed | 0 | 0 |
| Inserted | 0 | 0 |
| 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 © 2015 Magento. All rights reserved. | 3 | * Copyright © 2015 Magento. All rights reserved. | |||
| 4 | * See COPYING.txt for license details. | 4 | * See COPYING.txt for license details. | |||
| 5 | */ | 5 | */ | |||
| 6 | 6 | |||||
| 7 | // @codingStandardsIgnoreFile | 7 | // @codingStandardsIgnoreFile | |||
| 8 | ?> | 8 | ?> | |||
| 9 | <?php | 9 | <?php | |||
| 10 | /** | 10 | /** | |||
| 11 | * Category layered navigation state | 11 | * Category layered navigation state | |||
| 12 | * | 12 | * | |||
| 13 | * @var $block \Magento\LayeredNavigation\Block\Navigation\State | 13 | * @var $block \Magento\LayeredNavigation\Block\Navigation\State | |||
| 14 | */ | 14 | */ | |||
| 15 | ?> | 15 | ?> | |||
| 16 | <?php $_filters = $block->getActiveFilters() ?> | 16 | <?php $_filters = $block->getActiveFilters() ?> | |||
| 17 | <?php if (!empty($_filters)): ?> | 17 | <?php if (!empty($_filters)): ?> | |||
| 18 | <div class="filter-current" data-mage-init='{"collapsible":{"openedState": "active", "collapsible": true, "active": false }}'> | 18 | <div class="filter-current" data-mage-init='{"collapsible":{"openedState": "active", "collapsible": true, "active": false }}'> | |||
| 19 | <strong class="block-subtitle filter-current-subtitle" | 19 | <strong class="block-subtitle filter-current-subtitle" | |||
| 20 | role="heading" | 20 | role="heading" | |||
| 21 | aria-level="2" | 21 | aria-level="2" | |||
| 22 | data-role="title" | 22 | data-role="title" | |||
| 23 | data-count="<?php echo count($_filters); ?>"><?php /* @escapeNotVerified */ echo __('Now Shopping by') ?></strong> | 23 | data-count="<?php echo count($_filters); ?>"><?php /* @escapeNotVerified */ echo __('Now Shopping by') ?></strong> | |||
| 24 | <ol class="items"> | 24 | <ol class="items"> | |||
| 25 | <?php foreach ($_filters as $_filter): ?> | 25 | <?php foreach ($_filters as $_filter): ?> | |||
| 26 | <li class="item"> | 26 | <li class="item"> | |||
| 27 | <span class="filter-label"><?php echo $block->escapeHtml(__($_filter->getName())); ?></span> | 27 | <span class="filter-label"><?php echo $block->escapeHtml(__($_filter->getName())); ?></span> | |||
| 28 | <span class="filter-value"><?php /* @escapeNotVerified */ echo $block->stripTags($_filter->getLabel()) ?></span> | 28 | <span class="filter-value"><?php /* @escapeNotVerified */ echo $block->stripTags($_filter->getLabel()) ?></span> | |||
| 29 | <?php | 29 | <?php | |||
| 30 | $clearLinkUrl = $_filter->getClearLinkUrl(); | 30 | $clearLinkUrl = $_filter->getClearLinkUrl(); | |||
| 31 | $currentFilterName = $block->escapeHtml(__($_filter->getName())) . " " . $block->stripTags($_filter->getLabel()); | 31 | $currentFilterName = $block->escapeHtml(__($_filter->getName())) . " " . $block->stripTags($_filter->getLabel()); | |||
| 32 | if ($clearLinkUrl): | 32 | if ($clearLinkUrl): | |||
| 33 | ?> | 33 | ?> | |||
| 34 | <a class="action previous" href="<?php /* @escapeNotVerified */ echo $_filter->getRemoveUrl() ?>" | 34 | <a class="action previous" href="<?php /* @escapeNotVerified */ echo $_filter->getRemoveUrl() ?>" | |||
| 35 | title="<?php /* @escapeNotVerified */ echo __('Previous') ?>"> | 35 | title="<?php /* @escapeNotVerified */ echo __('Previous') ?>"> | |||
| 36 | <span><?php /* @escapeNotVerified */ echo __('Previous') ?></span> | 36 | <span><?php /* @escapeNotVerified */ echo __('Previous') ?></span> | |||
| 37 | </a> | 37 | </a> | |||
| 38 | <a class="action remove" | 38 | <a class="action remove" | |||
| 39 | title="<?php echo $block->escapeHtml($_filter->getFilter()->getClearLinkText()) ?>" | 39 | title="<?php echo $block->escapeHtml($_filter->getFilter()->getClearLinkText()) ?>" | |||
| 40 | href="<?php /* @escapeNotVerified */ echo $clearLinkUrl ?>"> | 40 | href="<?php /* @escapeNotVerified */ echo $clearLinkUrl ?>"> | |||
| 41 | <span><?php echo $block->escapeHtml($_filter->getFilter()->getClearLinkText()) ?></span> | 41 | <span><?php echo $block->escapeHtml($_filter->getFilter()->getClearLinkText()) ?></span> | |||
| 42 | </a> | 42 | </a> | |||
| 43 | <?php else: ?> | 43 | <?php else: ?> | |||
| 44 | <a class="action remove" href="<?php /* @escapeNotVerified */ echo $_filter->getRemoveUrl() ?>" | 44 | <a class="action remove" href="<?php /* @escapeNotVerified */ echo $_filter->getRemoveUrl() ?>" | |||
| 45 | title="<?php /* @escapeNotVerified */ echo $block->escapeHtml(__('Remove')) . " " . $currentFilterName;?>"> | 45 | title="<?php /* @escapeNotVerified */ echo $block->escapeHtml(__('Remove')) . " " . $currentFilterName;?>"> | |||
| 46 | <span><?php /* @escapeNotVerified */ echo __('Remove This Item') ?></span> | 46 | <span><?php /* @escapeNotVerified */ echo __('Remove This Item') ?></span> | |||
| 47 | </a> | 47 | </a> | |||
| 48 | <?php endif; ?> | 48 | <?php endif; ?> | |||
| 49 | </li> | 49 | </li> | |||
| 50 | <?php endforeach; ?> | 50 | <?php endforeach; ?> | |||
| 51 | </ol> | 51 | </ol> | |||
| 52 | </div> | 52 | </div> | |||
| 53 | <?php endif; ?> | 53 | <?php endif; ?> |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.