Blame view

modules/default/blocks/products.block.class.php 250 Bytes
8d65d0ce   andryeyev   init
1
2
3
4
5
6
7
8
9
  <?php
  Class ProductsBlock Extends baseBlock{
   public function run(){
    $products = new Products($this->lang);
    //$this->tpl->assign('products_tops', $products->getTop() );
    $this->tpl->assign('products_view', $products->getUserProducts() );
   }
  }
  ?>