简体   繁体   中英

Prestashop 1.6: reuse administration product list page in my own module

I want to reuse the product list view in the administration of the products (same table style)in my module page that I already created. 想要的桌子样式 I get to retrieve the products by cons I can not display them in the same way. I am looking for a solution not to redo all the work manually My controller code:

 $products = Product::getProducts($this->context->language->id, 0, 100,'name','asc');
$products_all = Product::getProductsProperties($this->context->language->id, $products);
$this->smarty->assign('products_all',$products_all);

This page is generated in AdminProductsController by HelperList. So basically, you could copy / paste all the concerned lines in your own module. There's no tpl.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM