Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Bookmark.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Bookmark extends AbstractDb
14 {
19  public function __construct(
20  \Magento\Framework\Model\ResourceModel\Db\Context $context,
21  $connectionName = null
22  ) {
23  parent::__construct($context, $connectionName);
24  }
25 
31  protected function _construct()
32  {
33  $this->_init('ui_bookmark', 'bookmark_id');
34  }
35 }
__construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, $connectionName=null)
Definition: Bookmark.php:19