PHP code example of bsidev / bitrix-event-dispatcher
1. Go to this page and download the library: Download bsidev/bitrix-event-dispatcher 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/ */
bsidev / bitrix-event-dispatcher example snippets
use Bsi\EventDispatcher\EventSubscriberInterface;
class MySubscriber implements EventSubscriberInterface
{
public function onProlog(): void
{
// Code here...
}
public function onIblockElementAfterAdd(&$fields): void
{
// Code here...
}
public static function getSubscribedEvents(): array
{
return [
'main' => [
'OnProlog' => ['onProlog', 1],
],
'iblock' => [
'OnAfterIBlockElementAdd' => 'onIblockElementAfterAdd',
],
];
}
}
// local/php_interface/init.php
$dispatcher = new Bsi\EventDispatcher\EventDispatcher();
$dispatcher->addSubscriber(new MySubscriber());