Jump to content
  • 0

Jak pobrać ID producenta w module na karcie produktu ??


m4rlb0r0

Question

Potrzebuję pobrać id producenta do modułu z poziomu php.

mam stworzoną tablicę i muszę wyświetlić zawartość rekordu o id producenta danego produktu

Cytat

public function hookdisplayRightColumnProduct()
{
           $id_producent = ??????????????? ;


$cos_producent[1]           = 'cos1';    

$cos_producent[2]           = 'cos2';  

$cos_producent[3]           = 'cos3';  

$cos_producent[4]           = 'cos4';  

       
     if ($cos_producent[$id_producent] != "")
      {
      $output =  '<div>'.$film_produkt[$id_product].'</div>';
      }       

      
    return $output;
 }

 

Mam nadzieję, że mnie rozumiecie :P

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

może w ten sposób:

        $produkt = new Product((int)Tools::getValue('id_product'));
    
        if (Validate::isLoadedObject($produkt)) {
        
            $id_producenta = $produkt->id_manufacturer;
        
        }

 

  • Thanks 1
Link to comment
Share on other sites

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...