使用代码在magento中调用见证模块

时间:2014-06-26 07:45:54

标签: magento magento-1.8

我正在尝试使用Magento中的PHP代码在主页上显示推荐书

我已经使用getCollection或没有getCollection函数

尝试了下面的代码
$collection = Mage::getModel('turnkeye/testimonial');

我可以调用正确的模型吗?

1 个答案:

答案 0 :(得分:1)

模块初始化代码应为turnkeye_testimonial/testimonial而不是turnkeye/testimonial 如果您想要按单个项目进行字段,则可以通过primary key of testimonial表执行此操作

$collection $model = Mage::getModel('turnkeye_testimonial/testimonial')>load(id);

如果你想获取多个项目,那么你需要资源收集

Mage::getResourceModel('turnkeye_testimonial/testimonial')->addFieldToSelect('*');

$collection = Mage::getModel('turnkeye_testimonial/testimonial')->getCollection();

有 随机收藏

$collection=Mage::getModel('turnkeye_testimonial/testimonial')->getCollection();
 $collection->getSelect()->order('rand()');

一些参考

http://www.amitbera.com/create-an-magento-extension-with-custom-database-table/