PHP code example of abenmada / sylius-media-plugin
1. Go to this page and download the library: Download abenmada/sylius-media-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/ */
abenmada / sylius-media-plugin example snippets
return [
//..
Abenmada\MediaPlugin\MediaPlugin::class => ['all' => true],
]
declare(strict_types=1);
namespace App\Entity\Channel;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Abenmada\MediaPlugin\Model\Channel\ChannelTrait as AbenmadaMediaChannelTrait;
use Sylius\Component\Core\Model\Channel as BaseChannel;
/**
* @ORM\Entity
* @ORM\Table(name="sylius_channel")
*/
class Channel extends BaseChannel
{
use AbenmadaMediaChannelTrait;
public function __construct()
{
$this->medias = new ArrayCollection();
parent::__construct();
}
}