Jump to content
  • 0

Moduł do wyróżnienia producenta


Martinez066

Question

Witam
Chciałbym napisać moduł, który pozwala na wyświetlenie wybranych producentów na stronie głównej.

Jestem w stanie w backoffice wyświetlić wszystkich producentów, ale nie wiem jak pobrać z powrotem informacje, który producent został zaznaczony. Chciałbym aby wszystko było oparte o zmienne globalne.

private function _generateForm() {
foreach ($manufacturers AS $key => $manufacturer_list)
    {
    if($checked[$key]=='1')
     $this->_html .='<li><input type="checkbox" name="manufacturer['.$key.']" value="'.$manufacturer_list['id_manufacturer'].'" checked>'.$manufacturer_list['name'].'</li>';
     else
     $this->_html .='<li><input type="checkbox" name="manufacturer['.$key.']" value="'.$manufacturer_list['id_manufacturer'].'" >'.$manufacturer_list['name'].'</li>';
    }
}

Będę wdzięczny za pomoc

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...