Blame view

modules/default/blocks/catalog.block.class.php 254 Bytes
8d65d0ce   andryeyev   init
1
2
3
4
5
6
7
8
9
  <?php
  Class CatalogBlock Extends baseBlock{
   public function run(){
    $catalog = new Catalog($this->lang);
    $this->tpl->assign('catalog_ul', $catalog->getCatalogUL($this->url) );
    $this->tpl->assign('catalog_pic', $catalog->getRubricsIsPic() );
   }
  }
  ?>