12 lines
312 B
PHP
Executable File
12 lines
312 B
PHP
Executable File
<?php
|
|
|
|
namespace IpSupply\CustomBanner\Model\ResourceModel;
|
|
|
|
use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
|
|
|
|
class Banner extends AbstractDb {
|
|
protected function _construct() {
|
|
// 2 args of _init function is table name and primary column name
|
|
$this->_init("banner_ipsupply", "id");
|
|
}
|
|
} |