PHP code example of mage2sk / module-slick-slider

1. Go to this page and download the library: Download mage2sk/module-slick-slider library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mage2sk / module-slick-slider example snippets


/**
 * Mage2sk Use Slick slider in Magento 2
 *
 * @package      Mage2sk_SlickSlider
 * @author       Kishan Savaliya <[email protected]>
 */
\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Mage2sk_SlickSlider',
    __DIR__
);
~~~

### Step - 4 - Enable `Mage2sk_SlickSlider` module.

- By finish above step, you have created an empty module. Now we will enable it in Magento environment.
- Before enable the module, we must check to make sure Magento has recognize our module or not by enter the following at the command line:

~~~ 
php bin/magento module:status
~~~

If you follow above step, you will see this in the result:

~~~
List of disabled modules:
Mage2sk_SlickSlider
~~~

This means the module has recognized by the system but it is still disabled. Run this command to enable it:

~~~
php bin/magento module:enable Mage2sk_SlickSlider
~~~

The module has enabled successfully if you saw this result:

~~~
The following modules has been enabled:
- Mage2sk_SlickSlider
~~~

This’s the first time you enable this module so Magento ` file

Now create `_module.less` file here..

> `app/code/Mage2sk/SlickSlider/view/frontend/web/css/source/_module.less`

This is important file to run slick slider properly in Magento 2 without any issues.

Content for this file is..

~~~
@import 'slick.less';
@import 'slick-theme.less';
~~~

- We will display all sliders in one custom action in this module.

### Step - 9 - Create frontend router

- Create `routes.xml` file here..

> app/code/Mage2sk/SlickSlider/etc/frontend/routes.xml

Content for this file is ..

~~~
<?xml version="1.0"

/**
 * Mage2sk Use Slick slider in Magento 2
 *
 * @package      Mage2sk_SlickSlider
 * @author       Kishan Savaliya <[email protected]>
 */

namespace Mage2sk\SlickSlider\Controller\Index;

class Index extends \Magento\Framework\App\Action\Action
{
    protected $resultPageFactory;

    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        \Magento\Framework\View\Result\PageFactory $resultPageFactory
    ){
        $this->resultPageFactory = $resultPageFactory;
        return parent::__construct($context);
    }
     
    public function execute()
    {
        $resultPage = $this->resultPageFactory->create();
        $resultPage->getConfig()->getTitle()->prepend(__('Mage2sk Slick slider demo'));
 
        return $resultPage;
    }
}
~~~

### Step - 11 - Create layout and template files

- Create layout file here..

> app/code/Mage2sk/SlickSlider/view/frontend/layout/magehelper_slickslider_index_index.xml

Content for this file is ...

~~~
<?xml version="1.0"