public function initialize()
 {
     $this->tag->setTitle('View Products');
     parent::initialize();
     parent::GetSideCategories();
     $this->handleVoteButtons();
 }
 public function showAction($title = 'Main', $idCategory = 0)
 {
     parent::GetSideCategories(0);
     $this->tag->appendTitle(': ' . $title);
     $this->view->products = Product::getProducts($idCategory);
 }
 public function initialize()
 {
     $this->tag->setTitle('Login');
     parent::initialize();
     parent::GetSideCategories();
 }