Skip to content

Instantly share code, notes, and snippets.

@xcommerce-gists
Created January 21, 2014 00:43
Show Gist options
  • Save xcommerce-gists/8532265 to your computer and use it in GitHub Desktop.
Save xcommerce-gists/8532265 to your computer and use it in GitHub Desktop.
Sample Magento resource model
<?php
/**
* News item resource model
*
* @author Magento
*/
class Magentostudy_News_Model_Resource_News extends Mage_Core_Model_Resource_Db_Abstract
{
/**
* Initialize connection and define main table and primary key
*/
protected function _construct()
{
$this->_init('magentostudy_news/news', 'news_id');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment