Advertisement
Guest User

Untitled

a guest
May 1st, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. foreach ($categories as $category) {
  2. $cat = new CMSCategory((int)$category['id_cms_category'], (int)$id_lang);
  3.  
  4. $this->_menu .= '<li>';
  5. if ($cat->id==32){
  6. $this->_menu .= '<li '.$selected.'>';
  7. $this->_menu .= '<a href="https://acolorfoto.it/tipografia/16-volantini.html">'.$cat->meta_title.'</a>';
  8. $this->getCMSMenuItems($category['id_cms_category'], (int)$depth + 1);
  9. $this->_menu .= '</li>';
  10. }
  11. else
  12. {
  13. $this->_menu .= '<a href="'.Tools::HtmlEntitiesUTF8($cat->getLink()).'">'.$category['name'].'</a>';
  14. $this->getCMSMenuItems($category['id_cms_category'], (int)$depth + 1);
  15. $this->_menu .= '</li>';
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement