diff options
Diffstat (limited to 'h-source/Application/Views/Desktop/catalogue.php')
-rw-r--r-- | h-source/Application/Views/Desktop/catalogue.php | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/h-source/Application/Views/Desktop/catalogue.php b/h-source/Application/Views/Desktop/catalogue.php index ca0d735..5bda414 100644 --- a/h-source/Application/Views/Desktop/catalogue.php +++ b/h-source/Application/Views/Desktop/catalogue.php @@ -28,6 +28,18 @@ <?php echo $popupLabel;?> </div> </div> + + <?php if (strcmp($this->controller,'notebooks') === 0 ) { ?> + <div class="viewall_popup_menu_box_external more_filters"> + <div class="viewall_popup_menu_box"> + <?php echo $popupMore;?> + </div> + <div class="viewall_popup_menu_status"> + <div class="viewall_popup_menu_status_item"><?php echo gtext($this->viewArgs['bios'])?></div> + <div class="viewall_popup_menu_status_item"><?php echo gtext(translate($this->viewArgs['architecture']));?></div> + </div> + </div> + <?php } ?> <!--if no notebooks found--> <?php if (strcmp($recordNumber,0) === 0) { ?> @@ -44,7 +56,7 @@ <img align="top" class="catalogue_item_icon" src="<?php echo Hardware::getIconFromType($item['hardware']['type']);?>"> <span class="span_model_name"><?php echo gtext("model");?>: <b><?php echo $item['hardware']['model'];?></b></span> </div> - <?php if ( strcmp($item['hardware']['other_names'],'') !== 0 ) { ?> + <?php if ( strcmp($this->controller,'notebooks') !== 0 and strcmp($item['hardware']['other_names'],'') !== 0 ) { ?> <div class="notebook_vendor"> <div class="inner_label"><?php echo gtext("possible other names of the device");?>:</div> <div class="inner_value"><?php echo nl2br($item['hardware']['other_names']);?></div> @@ -55,20 +67,29 @@ <div class="inner_label"><?php echo gtext("vendor");?>:</div> <div class="inner_value"><?php echo betterVendor($item['hardware']['vendor']);?></div> </div> + + <?php if (strcmp($this->controller,'notebooks') === 0 ) { ?> + <div class="notebook_vendor"> + <div class="inner_label"><?php echo gtext("subtype (notebook, netbook, tablet)");?>:</div> + <div class="inner_value"><b><?php echo gtext($item['hardware']['subtype']);?></b></div> + </div> + <?php } ?> <div class="notebook_vendor"> <div class="inner_label"><?php echo gtext("year of commercialization");?>:</div> <div class="inner_value"><b><?php echo gtext($item['hardware']['comm_year']);?></b></div> </div> - + + <?php if (strcmp($this->controller,'notebooks') !== 0 ) { ?> <div class="notebook_vendor"> <div class="inner_label"><?php echo gtext("interface");?>:</div> <div class="inner_value"><b><?php echo gtext(translate($item['hardware']['interface']));?></b></div> </div> + <?php } ?> <div class="notebook_kernel"> - <?php if (strcmp($this->controller,'printers') === 0 or strcmp($this->controller,'scanners') === 0) { ?> - <div class="inner_label"><?php echo gtext("compatibility with free software");?></div> + <?php if (strcmp($this->controller,'printers') === 0 or strcmp($this->controller,'scanners') === 0 or strcmp($this->controller,'notebooks') === 0) { ?> + <div class="inner_label"><?php echo gtext("compatibility with free software");?>:</div> <?php } else if (strcmp($this->controller,'videocards') === 0 ) { ?> <div class="inner_label"><?php echo gtext("how does it work with free software?");?></div> <?php } else { ?> @@ -85,7 +106,7 @@ <?php } ?> <div class="notebook_view_link"> - <a href="<?php echo $this->baseUrl."/".$this->controller."/view/$lang/".$item['hardware']['id_hard'].'/'.encodeUrl($item['hardware']['model']).$this->viewStatus;?>"><?php echo gtext("view the other specifications");?>..</a> + <a href="<?php echo $this->baseUrl."/".$this->controller."/view/$lang/".$item['hardware']['id_hard'].'/'.encodeUrl($item['hardware']['model']).$this->viewStatus;?>"><?php echo gtext("view the other specifications");?></a> </div> </div> |