m4rlb0r0 Posted January 12, 2018 Share Posted January 12, 2018 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 Link to comment Share on other sites More sharing options...
0 Krystian Podemski Posted January 12, 2018 Share Posted January 12, 2018 Można lepiej, bardziej optymalnie: $productManufacturer = $this->context->controller->getProduct()->id_manufacturer; Link to comment Share on other sites More sharing options...
0 atomek Posted January 12, 2018 Share Posted January 12, 2018 może w ten sposób: $produkt = new Product((int)Tools::getValue('id_product')); if (Validate::isLoadedObject($produkt)) { $id_producenta = $produkt->id_manufacturer; } 1 Link to comment Share on other sites More sharing options...
0 m4rlb0r0 Posted January 12, 2018 Author Share Posted January 12, 2018 no i o to chodziło Link to comment Share on other sites More sharing options...
Question
m4rlb0r0
Potrzebuję pobrać id producenta do modułu z poziomu php.
mam stworzoną tablicę i muszę wyświetlić zawartość rekordu o id producenta danego produktu
Mam nadzieję, że mnie rozumiecie
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now