There are four types of classes related to loading and storing data in Magento.
- Models: stored directly in the module's Model/ directory: these are classes with getters and setters to store data. An instantiated class would represent one row in the database. This model is initialized with a reference to the Resource Model. Example: \Magento\Cms\Model\Page.
- Resource models: stored in the module's Model/ResourceModel/ directory, these classes are responsible for saving and loading data. These classes almost always inherit
The primary methods in this class are aptly named: load, save and delete. Please see the examples in the sample project for how to configure this class. However, the resource model is the place to put any custom selects (using the Magento ORM, and NOT writing direct SQL).\Magento\Framework\Model\ResourceModel\Db\AbstractDb
- Collections: stored in the module's Model/ResourceModel/[Model Name]/Collection.php file, this class loads multiple models. This class is initialized with a reference to the Model and Resource Model. If you wish to utilize a CMS Page collection in one of your classes, you must use a Factory (
) and instantiate that collection ($this->collectionFactory->create()) instead of injecting the collection class itself.Magento\Cms\Model\ResourceModel\Page\CollectionFactory
Comments