博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Magento 创建新的数据实体 model 、 resource 和 collection 文件
阅读量:4951 次
发布时间:2019-06-11

本文共 1284 字,大约阅读时间需要 4 分钟。

一、创建model文件
class Bestbuy_PrepaidCard_Model_Used extends Mage_Core_Model_Abstract
{
 
    protected function _construct()
    {
        $this->_init('prepaidcard/used');
    }
 
}
二、创建resource文件
class Bestbuy_PrepaidCard_Model_Resource_Used extends Mage_Core_Model_Resource_Db_Abstract
{
    /**
     * Initialize resource model
     *
     */
    protected function _construct()
    {
        $this->_init('prepaidcard/used', 'id');
    }
 
}
三、创建Collection文件
class Bestbuy_PrepaidCard_Model_Resource_Used_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
{
       public function _construct()
       {
            parent::_construct();
            $this->_init('prepaidcard/used', 'id');
       }
 
 
}
最后看一下三个文件的目录层次路径:
只有这样,才能在代码中使用这样的语句来操作实体:
//giftcard $giftcard_model = Mage::getModel('enterprise_giftcardaccount/history'); $giftcard_info = $giftcard_model->getCollection() ->join(array('g' => 'giftcardaccount'),'main_table.giftcardaccount_id = g.giftcardaccount_id','*') ->addFieldToFilter('additional_info','订单 # '.$order_info->getData('increment_id').'.')->load(); //prepaycard $prepaycard_model = Mage::getModel('prepaidcard/used'); $prepaycard_info = $prepaycard_model->getCollection() ->addFieldToFilter('order_id',$this->getRequest()->getParam('order_id'))->load(); print_r($prepaycard_info->getFirstItem()->getData());

转载于:https://www.cnblogs.com/caryfang/p/5110249.html

你可能感兴趣的文章
webdriver api
查看>>
转载-FileZilla Server源码分析(1)
查看>>
apache 实现图标缓存客户端
查看>>
MediaWiki左侧导航栏通过特殊页面就可以设置。
查看>>
html基础之DOM操作
查看>>
几种图表库
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
UVa11078:Open Credit System
查看>>
MongoDB的简单使用
查看>>
git clone 遇到的问题
查看>>
hdfs 命令使用
查看>>
hdu 1709 The Balance
查看>>
prometheus配置
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>
【noip2004】虫食算——剪枝DFS
查看>>