250. Araxis Merge File Comparison Report

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.

250.1 Files compared

#LocationFileLast Modified
1/Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_LayeredNavigation/templates/layerstate.phtml2015-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/layerstate.phtml2015-09-16 08:06:32 +0000

250.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged1106
Changed00
Inserted00
Removed00

250.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

250.4 Active regular expressions

No regular expressions were active.

250.5 Comparison detail

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; ?>