Advertisement
Guest User

Untitled

a guest
Apr 8th, 2013
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.20 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @Enterprise: Yagendoo Media GmbH
  5. * @author: Yagendoo Team
  6. * @url: http://www.yagendoo.com
  7. * @copyright: Copyright (C) Yagendoo Media GmbH
  8. * @license: GNU General Public License version 2 or later; see LICENSE.txt
  9. *
  10. */
  11. defined ( '_JEXEC' ) or die ( 'Restricted access' );
  12.  
  13. include_once dirname(__FILE__) . '/../assets/yagHelper/yagendooTmplGlobal.php';
  14. YagendooTmplGlobal::init();
  15.  
  16. // addon for joomla modal Box
  17. JHTML::_ ( 'behavior.modal' );
  18. JHTML::_('behavior.tooltip');
  19.  
  20. $document = JFactory::getDocument();
  21. $app = JFactory::getApplication('site');
  22.  
  23. if( $app->get('jquery-ui') !== true && version_compare(vmVersion::$RELEASE, '2.0.6') > 0 ) {
  24. $document->addScript('https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js');
  25. JFactory::getApplication()->set('jquery-ui', true);
  26. }
  27.  
  28. $template = $app->getTemplate(true);
  29. $params = $template->params;
  30. $template = $template->template;
  31.  
  32. $document->addScriptDeclaration("
  33. jQuery(document).ready(function($) {
  34. $(function() {
  35. $('#yagVmFlyTabs').tabs();
  36. });
  37.  
  38. var tabs = $('#yagVmFlyTabs').tabs();
  39. var tabSize = ( tabs.children().size() - 3 );
  40.  
  41. $('a#ask-price-link').click(function() {
  42. tabs.tabs('select', tabSize);
  43.  
  44. $('html, body').animate({
  45. scrollTop: $('#yagVmFlyTabs').offset().top
  46. }, 1000);
  47.  
  48. return false;
  49. });
  50. });
  51. ");
  52. ?>
  53. <?php //::> Emergency break if product not found: ?>
  54. <?php if(empty($this->product)): ?>
  55. <?php echo JText::_('COM_VIRTUEMART_PRODUCT_NOT_FOUND') . '<br /><br /> ' . $this->continue_link_html; ?>
  56. <?php return; ?>
  57. <?php endif; ?>
  58.  
  59. <div id="yagVmOverWrap" class="productdetails-view">
  60. <div class="yagVmFlyTop">
  61. <div class="yagVmFlyTopLeft">
  62. <?php //::> Edit link ?>
  63. <?php if( $this->edit_link != "" ) : ?>
  64. <div class="yagVmFlyEditLink">
  65. <?php echo $this->edit_link; ?>
  66. </div>
  67.  
  68. <div class="yagVmClear">&nbsp;</div>
  69. <?php endif; ?>
  70.  
  71. <?php //::> Product main image ?>
  72. <div class="yagVmFlyTopLeftMiddle">
  73. <div class="yagVmFlyProdImg">
  74. <?php if( !empty($this->product->images[0]) ) : ?>
  75. <div class="yagVmFlyProdImgMain" id="yagendoo_imageGallery_Box">
  76. <?php if( $params->get('imageZoomOnFlypage') === 1 ) : ?>
  77. <a class="modal" href="<?php echo $this->product->images[0]->file_url; ?>">
  78. <?php endif; ?>
  79. <img src="<?php echo $this->product->images[0]->file_url_thumb; ?>" />
  80. <?php if( $params->get('imageZoomOnFlypage') === 1 ) : ?>
  81. </a>
  82. <?php endif; ?>
  83. </div>
  84. <?php endif; ?>
  85. </div>
  86. </div>
  87.  
  88. <?php //::> Product image gallery ?>
  89. <?php if( !empty($this->product->images) && count($this->product->images) > 1 ) : ?>
  90. <div class="yagVmFlyTopLeftTop">
  91. <div class="yagVmFlyProdImgGalleryWrap">
  92. <div class="yagVmFlyProdImgGallery">
  93. <?php foreach( $this->product->images as $image ) : ?>
  94. <?php $url = $image->file_url; ?>
  95.  
  96. <div class="yagVmFlyProdImgGalleryThumbBox">
  97. <div class="yagVmFlyProdImgGalleryThumbBoxInner">
  98. <?php if( $params->get('imageZoomOnFlypage') === 1 ) : ?>
  99. <a class="modal" title="<?php echo $this->product->product_name; ?>" href="<?php echo $url; ?>">
  100. <?php endif; ?>
  101. <?php echo $image->displayMediaFull('class="product-gallery-image"',false,"class='lightBox yagVmFlyGalleryImg'",true); ?>
  102. <?php if( $params->get('imageZoomOnFlypage') === 1 ) : ?>
  103. </a>
  104. <?php endif; ?>
  105. </div>
  106. </div>
  107. <?php endforeach ?>
  108.  
  109. <div class="yagVmClear">&nbsp;</div>
  110. </div>
  111. </div>
  112. </div>
  113. <?php endif; ?>
  114.  
  115. <?php if( !empty($this->product->product_availability) || $this->product->packaging || $this->product->box ): ?>
  116. <?php //::> Product details ?>
  117. <div class="yagVmFlyTopLeftBottom">
  118. <div class="yagVmFlyTopLeftBottomInner">
  119. <div class="yagVmFlyTopLeftBottomContent">
  120. <!-- Product Availability //-->
  121. <?php if( !empty($this->product->product_availability) ) : ?>
  122. <?php $stockhandle = VmConfig::get('stockhandle','none'); ?>
  123.  
  124. <?php if($stockhandle=='risetime' && ($this->product->product_in_stock - $this->product->product_ordered) < 1): ?>
  125. <div class="yagVmFlyProdAvailability">
  126. <div class="yagVmFlyProdAvailabilityInner">
  127. <img src="<?php echo JURI::root().'templates/'.$template.'/html/com_virtuemart/assets/yagImages/global/availability/'.VmConfig::get('rised_availability','7d.gif'); ?>" alt="" />
  128. </div>
  129. </div>
  130. <?php else: ?>
  131. <div class="yagVmFlyProdAvailability">
  132. <div class="yagVmFlyProdAvailabilityInner">
  133. <img src="<?php echo JURI::root().'templates/'.$template.'/html/com_virtuemart/assets/yagImages/global/availability/'.$this->product->product_availability; ?>" alt="" />
  134. </div>
  135. </div>
  136. <?php endif; ?>
  137. <?php endif; ?>
  138. <!-- /Product Availability //-->
  139.  
  140. <!-- Product Packaging -->
  141. <?php if($this->product->packaging || $this->product->box): ?>
  142. <div class="yagVmFlyProdPackaging">
  143. <?php echo YagendooTmplGlobal::getProductPackagingHtml($this->product); ?>
  144. </div>
  145. <?php endif; ?>
  146. <!-- /Product Packaging -->
  147.  
  148. <div class="yagVmClear">&nbsp;</div>
  149. </div>
  150. </div>
  151. </div>
  152. <?php endif; ?>
  153. </div>
  154.  
  155. <div class="yagVmFlyTopRight">
  156. <?php //::> Product info ?>
  157. <div class="yagVmFlyTopRightTop">
  158. <div class="yagVmFlyTitle">
  159. <h1><?php echo $this->product->product_name; ?></h1>
  160. </div>
  161.  
  162. <?php //::> PDF/Print/Email icons ?>
  163. <?php if( VmConfig::get('show_emailfriend', 1) == '1' || VmConfig::get('show_printicon', 1) == '1' || VmConfig::get('pdf_button_enable', 1) ) : ?>
  164. <div class="yagVmFlyIcons">
  165. <?php
  166. $link = 'index.php?tmpl=component&option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->virtuemart_product_id;
  167. $MailLink = 'index.php?option=com_virtuemart&view=productdetails&task=recommend&virtuemart_product_id=' . $this->product->virtuemart_product_id . '&virtuemart_category_id=' . $this->product->virtuemart_category_id . '&tmpl=component';
  168.  
  169. if( VmConfig::get('pdf_icon', 1) == '1' ) :
  170. echo $this->linkIcon($link . '&format=pdf', 'COM_VIRTUEMART_PDF', 'pdf_button', 'pdf_button_enable', false);
  171. endif;
  172.  
  173. if( VmConfig::get('show_printicon', 1) == '1' ) :
  174. echo $this->linkIcon($link . '&print=1', 'COM_VIRTUEMART_PRINT', 'printButton', 'show_printicon');
  175. endif;
  176.  
  177. if( VmConfig::get('show_emailfriend', 1) == '1' ) :
  178. echo $this->linkIcon($MailLink, 'COM_VIRTUEMART_EMAIL', 'emailButton', 'show_emailfriend');
  179. endif;
  180. ?>
  181. <div class="yagVmClear">&nbsp;</div>
  182. </div>
  183. <?php endif; ?>
  184.  
  185. <!-- Product Rating //-->
  186. <?php if($this->showRating): ?>
  187. <div class="yagVmFlyProdRatingBox">
  188. <?php echo YagendooTmplGlobal::getProductRatingHtml($this->rating); ?>
  189. </div>
  190. <?php endif; ?>
  191. <!-- /Product Rating //-->
  192.  
  193. <div class="yagVmClear">&nbsp;</div>
  194.  
  195. <!-- Product Price -->
  196. <?php if( $this->show_prices ) : ?>
  197. <div class="yagVmFlyProdPriceBox" id="productPrice<?php echo $this->product->virtuemart_product_id ?>">
  198. <div class="yagVmFlyProdPriceBoxRedInner">
  199. <?php if( empty($this->product->prices) and VmConfig::get('askprice', 1) ) : ?>
  200. <?php if( VmConfig::get("ask_question", 1) ) : ?>
  201. <a id="ask-price-link">
  202. <?php echo JText::_('COM_VIRTUEMART_PRODUCT_ASKPRICE') ?>
  203. </a>
  204. <?php else : ?>
  205. <?php
  206. $url = JRoute::_('index.php?option=com_virtuemart&view=productdetails&task=askquestion&virtuemart_product_id=' . $this->product->virtuemart_product_id . '&virtuemart_category_id=' . $this->product->virtuemart_category_id . '&tmpl=component');
  207.  
  208. $document->addScriptDeclaration("
  209. jQuery(document).ready(function($) {
  210. $('a.yagVmFlyAskPrice').click( function(){
  211. $.facebox({
  212. iframe: '" . $url . "',
  213. rev: 'iframe|550|550'
  214. });
  215. return false ;
  216. });
  217. });
  218. ");
  219. ?>
  220. <a class="yagVmFlyAskPrice" href="<?php echo $url ?>">
  221. <?php echo JText::_('COM_VIRTUEMART_PRODUCT_ASKPRICE'); ?>
  222. </a>
  223. <?php endif; ?>
  224. <?php endif; ?>
  225.  
  226. <?php echo YagendooTmplGlobal::getProductPriceHtml($this->product, $this->currency,$this->showBasePrice); ?>
  227. </div>
  228.  
  229. <?php if( $this->product->prices["discountAmount"] > 0 || $this->product->prices["basePriceWithTax"] > 0 ) : ?>
  230. <div class="yagVmFlyProdPriceBoxGreyInner">
  231. <?php echo YagendooTmplGlobal::getProductOldPriceHtml($this->product, $this->currency,$this->showBasePrice); ?>
  232. </div>
  233. <?php endif; ?>
  234. </div>
  235. <?php endif; ?>
  236. <!-- /Product Price -->
  237.  
  238. <!-- Shipping Cost Link -->
  239. <?php if( $params->get('showShippingCostHintOnFlypage') === 1 && trim( $params->get('shippingCostLink') ) != "" ) : ?>
  240. <div class="yagVmFlyShipCostLink">
  241. <a href="<?php echo $params->get('shippingCostLink'); ?>">
  242. <?php echo $params->get('shippingCostLabel'); ?>
  243. </a>
  244. </div>
  245. <?php endif; ?>
  246. <!-- /Shipping Cost Link -->
  247.  
  248. <!-- Product Manufacturer -->
  249. <?php if( VmConfig::get('show_manufacturers', 1) && !empty($this->product->virtuemart_manufacturer_id) ) : ?>
  250. <div class="yagVmFlyProdManufacturer">
  251. <?php
  252. $link = JRoute::_('index.php?option=com_virtuemart&view=manufacturer&virtuemart_manufacturer_id='.$this->product->virtuemart_manufacturer_id.'&tmpl=component');
  253. $text = $this->product->mf_name;
  254. ?>
  255. <?php if(strtolower(JRequest::getWord('output')) == "pdf"): ?>
  256. <span class="yagVmFlyProdManufacturerLbl"><?php echo JHTML::_('link', $link, $text); ?></span>
  257. <?php else: ?>
  258. <span class="yagVmFlyProdManufacturerLbl"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DETAILS_MANUFACTURER_LBL'); ?></span>
  259. <a class="modal" rel="{handler: 'iframe', size: {x: 700, y: 550}}" href="<?php echo $link ?>"><?php echo $text; ?></a>
  260. <?php endif; ?>
  261. </div>
  262. <?php endif; ?>
  263. <!-- /Product Manufacturer -->
  264.  
  265. <!-- Produkt SKU -->
  266. <?php if( $params->get('showSkuOnFlypage') === 1 ) : ?>
  267. <div class="yagVmFlyProdSku">
  268. <?php echo JText::_ ( 'COM_VIRTUEMART_CART_SKU' ).": ".$this->product->product_sku; ?>
  269. </div>
  270. <?php endif; ?>
  271. <!-- /Product SKU -->
  272.  
  273. <?php //::> Short description ?>
  274. <?php if( !empty($this->product->product_s_desc) ) : ?>
  275. <div class="yagVmFlyProdSdesc">
  276. <?php echo $this->product->product_s_desc; ?>
  277. </div>
  278. <?php endif; ?>
  279. </div>
  280.  
  281. <div class="yagVmFlyTopRightBottom">
  282. <!-- Add To Cart Button -->
  283. <?php if( !empty($this->product->prices) ) : ?>
  284. <div class="yagVmFlyProdAtcBox">
  285. <?php YagendooTmplGlobal::includeTemplate($this, 'addtocart'); ?>
  286. </div>
  287. <?php endif; ?>
  288. <!-- /Add To Cart Button -->
  289. </div>
  290. </div>
  291.  
  292. <div class="yagVmClear">&nbsp;</div>
  293. </div>
  294.  
  295. <?php //::> Tabs ?>
  296. <?php if( !empty($this->product->product_desc) || ($this->allowRating || $this->showReview) || VmConfig::get('ask_question', 1) ) : ?>
  297. <div class="yagVmFlyTabsWrap">
  298. <div class="yagVmFlyTabsSpacer">
  299. <div class="yagVmFlyTabsInner">
  300. <div id="yagVmFlyTabs">
  301. <ul class="yagVmFlyTabsList">
  302. <?php //::> PRODUCT DESCRIPTION ?>
  303. <?php if( !empty($this->product->product_desc) ) : ?>
  304. <li><a href="#tabs-1"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE'); ?></a></li>
  305. <?php endif; ?>
  306.  
  307. <?php //::> CUSTOMER REVIEWS ?>
  308. <?php if( $this->allowRating || $this->showReview ) : ?>
  309. <li><a href="#tabs-2"><?php echo JText::_('COM_VIRTUEMART_REVIEWS'); ?></a></li>
  310. <?php endif; ?>
  311.  
  312. <?php //::> ASK A QUESTION / CONTACT ?>
  313. <?php if( VmConfig::get('ask_question', 1) ) : ?>
  314. <li><a href="#tabs-3"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_ASK_QUESTION'); ?></a></li>
  315. <?php endif; ?>
  316.  
  317. <div class="yagVmClear">&nbsp;</div>
  318. </ul>
  319.  
  320. <div class="yagVmClear">&nbsp;</div>
  321.  
  322. <!-- Product Description -->
  323. <?php if(!empty($this->product->product_desc)): ?>
  324. <div id="tabs-1">
  325. <div class="yagVmFlyTabsSpacerInner">
  326. <div class="yagVmFlyProdDesc">
  327. <div class="yagVmFlyProdDescInner"><?php echo $this->product->product_desc; ?></div>
  328. </div>
  329. </div>
  330. </div>
  331. <?php endif; ?>
  332. <!-- /Product Description -->
  333.  
  334. <!-- Customer Reviews -->
  335. <?php if($this->allowRating || $this->showReview) : ?>
  336. <div id="tabs-2">
  337. <div class="yagVmFlyTabsSpacerInner">
  338. <div class="yagVmFlyProdReviewsBox">
  339. <?php YagendooTmplGlobal::includeTemplate($this, 'rating'); ?>
  340. </div>
  341. </div>
  342. </div>
  343. <?php endif; ?>
  344. <!-- /Customer Reviews -->
  345.  
  346. <!-- Contact form //-->
  347. <?php if( VmConfig::get('ask_question', 1) ) : ?>
  348. <div id="tabs-3">
  349. <div class="yagVmFlyTabsSpacerInner">
  350. <?php $src = JURI::base().'index.php?option=com_virtuemart&view=productdetails&task=askquestion&virtuemart_product_id='.$this->product->virtuemart_product_id.'&virtuemart_category_id='.$this->product->virtuemart_category_id.'&tmpl=component'; ?>
  351. <iframe class="yagVmFlyTabsIframe" src="<?php echo $src; ?>"></iframe>
  352. </div>
  353. </div>
  354. <?php endif; ?>
  355. </div>
  356. </div>
  357. </div>
  358. </div>
  359. <?php endif; ?>
  360.  
  361. <?php //::> Product navigation ?>
  362. <?php if( (VmConfig::get('product_navigation', 1 ) && !empty($this->product->neighbours ['previous'][0])) || (VmConfig::get('product_navigation', 1 ) && !empty($this->product->neighbours ['next'][0])) ) : ?>
  363. <div class="yagVmFlyNeighbours">
  364. <div class="yagVmFlyNeighboursInner">
  365. <div class="yagVmFlyNeighboursInnerSpacer">
  366. <?php if( !empty($this->product->neighbours ['previous'][0]) ) : ?>
  367. <div class="yagVmFlyPrevProd">
  368. <?php $prev_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->neighbours['previous'][0]['virtuemart_product_id'] . '&virtuemart_category_id=' . $this->product->virtuemart_category_id); ?>
  369. <?php echo JHTML::_('link', $prev_link, $this->product->neighbours['previous'][0]['product_name'], array ('class' => 'previous-page' ) ); ?>
  370. </div>
  371. <?php endif; ?>
  372.  
  373. <?php if(!empty($this->product->neighbours ['next'][0])): ?>
  374. <div class="yagVmFlyNextProd">
  375. <?php $next_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->neighbours['next'][0]['virtuemart_product_id'] . '&virtuemart_category_id=' . $this->product->virtuemart_category_id); ?>
  376. <?php echo JHTML::_('link', $next_link, $this->product->neighbours['next'][0]['product_name'], array('class' => 'next-page')); ?>
  377. </div>
  378. <?php endif; ?>
  379.  
  380. <div class="yagVmClear">&nbsp;</div>
  381. </div>
  382. </div>
  383. </div>
  384. <?php endif; ?>
  385.  
  386. <!-- Product Custom Fields -->
  387. <?php if( !empty($this->product->customfieldsSorted) ) : ?>
  388. <div class="yagVmFlyProdFields">
  389. <?php
  390. $custom_title = null;
  391.  
  392. if( !empty($this->product->customfieldsSorted['onbot']) ) {
  393. $this->position = 'onbot';
  394. } elseif( !empty($this->product->customfieldsSorted['ontop']) ) {
  395. $this->position = 'ontop';
  396. } elseif( !empty($this->product->customfieldsSorted['normal']) ) {
  397. $this->position = 'normal';
  398. }
  399. ?>
  400.  
  401. <?php foreach( $this->product->customfieldsSorted[$this->position] as $field ) : ?>
  402. <?php if( $field->is_hidden ) :
  403. continue;
  404. endif; ?>
  405.  
  406. <?php if( $field->display ) : ?>
  407. <div class="yagVmFlyProdField yagVmFlyProdFieldType-<?php echo $field->field_type ?>">
  408. <div class="yagVmFlyProdFieldSpacer">
  409. <div class="yagVmFlyProdFieldInner">
  410. <?php if( $field->custom_title != $custom_title ) : ?>
  411. <span class="yagVmFlyProdFieldTitle"><?php echo JText::_($field->custom_title); ?></span>
  412. <?php endif; ?>
  413.  
  414. <?php if( $field->custom_tip ) :
  415. echo JHTML::tooltip($field->custom_tip, JText::_($field->custom_title), 'tooltip.png');
  416. endif; ?>
  417.  
  418. <span class="yagVmFlyProdFieldDesc"><?php echo jText::_($field->custom_field_desc) ?></span>
  419.  
  420. <div class="yagVmClear"></div>
  421.  
  422. <span class="yagVmFlyProdFieldDisplay"><?php echo $field->display ?></span>
  423. </div>
  424. </div>
  425. </div>
  426. <?php $custom_title = $field->custom_title; ?>
  427. <?php endif; ?>
  428. <?php endforeach; ?>
  429. </div>
  430. <?php endif; ?>
  431. <!-- /Product Custom Fields -->
  432.  
  433. <!-- Related Products -->
  434. <?php if( !empty($this->product->customfieldsRelatedProducts) ) : ?>
  435. <div class="yagVmFlyProdRelatedProdBox">
  436. <h4 class="yagVmFlyProdRelatedProdTitle"><?php echo JText::_('COM_VIRTUEMART_RELATED_PRODUCTS'); ?></h4>
  437.  
  438. <div class="yagVmFlyProdRelatedRow">
  439. <?php foreach ($this->product->customfieldsRelatedProducts as $field): ?>
  440. <div class="yagVmFlyProdField yagVmFlyProdFieldType-<?php echo $field->field_type; ?>">
  441. <div class="yagVmFlyProdFieldSpacer">
  442. <div class="yagVmFlyProdFieldInner">
  443. <span class="yagVmFlyProdFieldDisplay"><?php echo $field->display; ?></span>
  444. </div>
  445. </div>
  446.  
  447. <span class="yagVmFlyProdFieldDesc"><?php echo JText::_($field->custom_field_desc); ?></span>
  448. </div>
  449. <?php endforeach; ?>
  450.  
  451. <div class="yagVmClear">&nbsp;</div>
  452. </div>
  453. </div>
  454. <?php endif; ?>
  455. <!-- /Related Products -->
  456.  
  457. <!-- Related Categories -->
  458. <?php if(! empty($this->product->customfieldsRelatedCategories) ) : ?>
  459. <div class="yagVmFlyProdRelatedCatBox">
  460. <h4 class="yagVmFlyProdRelatedCatTitle"><?php echo JText::_('COM_VIRTUEMART_RELATED_CATEGORIES'); ?></h4>
  461. <?php foreach ($this->product->customfieldsRelatedCategories as $field): ?>
  462. <div class="yagVmFlyProdField yagVmFlyProdFieldType-<?php echo $field->field_type; ?>">
  463. <div class="yagVmFlyProdFieldSpacer">
  464. <div class="yagVmFlyProdFieldInner">
  465. <span class="yagVmFlyProdFieldDisplay"><?php echo $field->display; ?></span>
  466. <span class="yagVmFlyProdFieldDesc"><?php echo JText::_($field->custom_field_desc); ?></span>
  467. </div>
  468. </div>
  469. </div>
  470. <?php endforeach; ?>
  471.  
  472. <div class="yagVmClear"></div>
  473. </div>
  474. <?php endif; ?>
  475. <!-- /Related Categories -->
  476.  
  477. <!-- Child Categories -->
  478. <?php if( VmConfig::get('showCategory', 1) && $this->category->haschildren && !empty($this->category->children) ) : ?>
  479. <h4 class="yagVmFlyChildCatsTitle"><?php echo JText::_('COM_VIRTUEMART_CATEGORIES'); ?></h2>
  480.  
  481. <div class="yagVmFlyProdChildsBox">
  482. <?php YagendooTmplGlobal::includeTemplate($this, 'childcategories'); ?>
  483. </div>
  484. <?php endif; ?>
  485. <!-- /Child Categories -->
  486. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement