Book Image

Magento 2 Development Cookbook

Book Image

Magento 2 Development Cookbook

Overview of this book

With the challenges of growing an online business, Magento 2 is an open source e-commerce platform with innumerable functionalities that gives you the freedom to make on-the-fly decisions. It allows you to customize multiple levels of security permissions and enhance the look and feel of your website, and thus gives you a personalized experience in promoting your business.
Table of Contents (18 chapters)
Magento 2 Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Writing an adapter model


In the previous recipe, we enabled a new module with the settings for a new shipping method. This was a preparation for the business part, which we will do in this recipe.

We will add a model with the business logic for the shipping method. The model is called an adapter class because Magento requires an adapter class for each shipping method.

The adapter class will be used for the following things:

  • Making the shipping method available

  • Calculating the shipping costs

  • Setting the title in the frontend of the shipping methods

Getting ready

Ensure that you have installed the module that we created in the previous recipe because we need this for creating the adapter class.

How to do it...

The following steps describe how you can write an adapter class for a shipping method:

  1. Create the app/code/Packt/Shipme/Model/Carrier/ folder if it doesn't already exist.

  2. In this folder, create a file called Shipme.php with the following content:

    <?php
    namespace Packt\Shipme\Model\Carrier;
    use...