Created
January 21, 2014 00:43
-
-
Save xcommerce-gists/8532265 to your computer and use it in GitHub Desktop.
Sample Magento resource model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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