171. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2021-05-13 09:09:00 +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.

171.1 Files compared

#LocationFileLast Modified
1/Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/code/Smartwave/Porto/view/frontend/templatescategory_list.phtml2016-01-26 19:00:54 +0000
2/Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/code/Smartwave/Porto/view/frontend/templatescategory_list.phtml2016-01-26 19:00:54 +0000

171.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged172
Changed00
Inserted00
Removed00

171.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

171.4 Active regular expressions

No regular expressions were active.

171.5 Comparison detail

1 <?php 1 <?php
2 $categories = $this->getStoreCategories(true,false,true); 2 $categories = $this->getStoreCategories(true,false,true);
3 $categoryHelper = $this->getCategoryHelper(); 3 $categoryHelper = $this->getCategoryHelper();
4 ?> 4 ?>
5 <ul> 5 <ul>
6 <?php 6 <?php
7 foreach($categories as $category): 7 foreach($categories as $category):
8      if (!$category->getIsActive()) { 8      if (!$category->getIsActive()) {
9         continue; 9         continue;
10      } 10      }
11  11 
12 ?> 12 ?>
13 <li><a href="<?php echo $categoryHelper->getCategoryUrl($category) ?>"><?php echo $category->getName() ?></a></li> 13 <li><a href="<?php echo $categoryHelper->getCategoryUrl($category) ?>"><?php echo $category->getName() ?></a></li>
14 <?php   14 <?php  
15 if($childrenCategories = $this->getChildCategories($category)): 15 if($childrenCategories = $this->getChildCategories($category)):
16 ?> 16 ?>
17 <ul> 17 <ul>
18 <?php 18 <?php
19 foreach($childrenCategories as $childrenCategory): 19 foreach($childrenCategories as $childrenCategory):
20      if (!$childrenCategory->getIsActive()) { 20      if (!$childrenCategory->getIsActive()) {
21         continue; 21         continue;
22      } 22      }
23 ?> 23 ?>
24 <li><a href="<?php echo $categoryHelper->getCategoryUrl($childrenCategory) ?>"><?php echo $childrenCategory->getName() ?></a></li> 24 <li><a href="<?php echo $categoryHelper->getCategoryUrl($childrenCategory) ?>"><?php echo $childrenCategory->getName() ?></a></li>
25 <?php 25 <?php
26 endforeach; 26 endforeach;
27 ?> 27 ?>
28 </ul> 28 </ul>
29 <?php 29 <?php
30 endif; 30 endif;
31 endforeach; 31 endforeach;
32 ?> 32 ?>
33 </ul> 33 </ul>
34 <h1>OR</h1> 34 <h1>OR</h1>
35 <?php echo $this->getHtml() ?> 35 <?php echo $this->getHtml() ?>
36  36