Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <?php
  2. /**
  3. * Product Main Page
  4. */
  5.  
  6. /** @var Array $TV - TemplateVariables - All defined variables in this template file */
  7. $TV = get_defined_vars();
  8. /*
  9. <div id="node-<?php print $TV["nid"]; ?>" class="<?php print $TV["classes"]; ?> product-full clearfix"<?php print $TV["attributes"]; ?>>
  10. <div class="row"<?php print $TV["content_attributes"]; ?>>
  11. <div class="col-md-8 spazio-30">
  12. <?php print render($TV["content"]["group_maindisplay"]); ?>
  13. </div>
  14. <div class="col-md-4 spazio-30">
  15. <div class="sidebar">
  16. <div class="product-header">
  17. <?php print render($TV["content"]["group_rightdisplay"]["group_product_info"]); ?>
  18. <?php print render($TV["producer_data"]); ?>
  19. </div>
  20. <div class="product-info">
  21. <?php print render($TV["content"]["group_rightdisplay"]); ?>
  22. <?php print render($TV["static"]["shipping_info"]); ?>
  23. </div>
  24. </div>
  25. </div>
  26. <?php print render($TV["content"]); ?>
  27. </div>
  28. </div>
  29. */
  30.  
  31.  
  32. ?>
  33. <div id="node-<?php print $TV["nid"]; ?>" class="<?php print $TV["classes"]; ?> product-full clearfix"<?php print $TV["attributes"]; ?>>
  34. <div class="row"<?php print $TV["content_attributes"]; ?>>
  35. <div class="col-md-8 spazio-30">
  36. <?php print render($TV["content"]["group_maindisplay"]); ?>
  37. </div>
  38. <div class="col-md-4 spazio-30">
  39. <div class="sidebar">
  40. <div class="product-header">
  41. <?php print render($TV["content"]["group_rightdisplay"]["group_producthead"]); ?>
  42. <?php print render($TV["producer_data"]); ?>
  43. </div>
  44. <div class="product-info">
  45. <?php print render($TV["content"]["group_rightdisplay"]); ?>
  46. <?php print render($TV["static"]["shipping_info"]); ?>
  47. </div>
  48. </div>
  49. </div>
  50. <?php print render($TV["content"]); ?>
  51. </div>
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement