Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图查看有多少人创建了愿望清单,以及所有个人愿望清单中有哪些项目(或总共有多少)。我知道如何(按客户)访问个人愿望清单,但想知道是否有办法通过 php 查看/访问“愿望清单”。
提前致谢!
有Mage_Wishlist_Model_Resource_Wishlist_Collection,所以要获得愿望清单,只需加载集合:
Mage_Wishlist_Model_Resource_Wishlist_Collection
$wishlistCollection = Mage::getResourceModel('wishlist/wishlist_collection');
标准 Magento 只给你 1 个愿望清单,所以我猜你是在问一些模块?