1. Go to this page and download the library: Download wemea/sylius-menu-plugin 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/ */
declare(strict_types=1);
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Wemea\SyliusMenuPlugin\Entity\MenuLink as BaseMenuLink;
/**
* @ORM\Entity
* @ORM\Table(name="wemea_menu_link")
*/
class MenuLink extends BaseMenuLink
{
//Add your new property
/**
* @var Brand|null $brand
* @ORM\ManyToOne(targetEntity="Brand")
* @ORM\JoinColumn(name="brand_id", referencedColumnName="id")
*/
protected $brand;
//add this property name to know properties
public static function getLinkProperties() : array{
return array_merge(
parent::getLinkProperties(),
['brand'] // your property name
);
}
}