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

Creating the block and template files


In the previous recipe, you learned how to configure an extra widget type to Magento. Now, it is time to display the widget.

We will extend the widget configuration with the option to select two different templates to render the widget in the frontend.

The second thing that we will do is create a custom Block class where we can write our own specific methods for the widget.

Getting ready

We will work further on the widget module that we created in the previous recipes. Ensure that you have the right code installed.

How to do it...

Using the following steps, you will learn how we can configure a custom Block class with custom templates for a widget instance:

  1. The first thing that we will do is create the Block class for the widget. The Block class will extend Magento\Catalog\Block\Product\List class because we need the functionality of that class in our widget type. Create a file called ProductSlider.php in the app/code/Packt/ProductSlider/Block/Catalog/Product...