PHP code example of ikuzostudio / sendinblue-plugin
1. Go to this page and download the library: Download ikuzostudio/sendinblue-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/ */
ikuzostudio / sendinblue-plugin example snippets
return [
// ...
Ikuzo\SyliusSendinbluePlugin\IkuzoSyliusSendinbluePlugin::class => ['all' => true],
];
// [...]
use Sylius\Component\Core\Model\Channel as BaseChannel;
use Ikuzo\SyliusSendinbluePlugin\Model\SendinblueChannelInterface;
use Ikuzo\SyliusSendinbluePlugin\Model\SendinblueChannelTrait;
/**
* @ORM\Table(name="sylius_channel")
* @ORM\Entity()
*/
class Channel extends BaseChannel implements SendinblueChannelInterface
{
use SendinblueChannelTrait;
}