在magento中获取自定义表数据

时间:2015-02-24 12:23:27

标签: magento grid

我必须在超级管理员的网格中显示自定义表格数据,我不知道它将如何。 这是我的网格文件代码。

public function __construct(){
        parent::__construct();
        $this->setId('customerGrid');
        $this->setUseAjax(true);
        $this->setDefaultSort('entity_id');
        $this->setSaveParametersInSession(true);
    }
    protected function _prepareCollection(){
         $collection = Mage::getResourceModel('Advertisement/Advertisementproduct')->getCollection();
        //print_r($collection);die;
        $this->setCollection($collection);
        return parent::_prepareCollection();


    }

1 个答案:

答案 0 :(得分:-3)

$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
$sql = "Select * from the-table-name";
$rows       = $connection->fetchAll($sql); 

您可以迭代$行并打印数据。 :)