PHP code example of lexik / data-layer-bundle
1. Go to this page and download the library: Download lexik/data-layer-bundle 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' );
lexik / data-layer-bundle example snippets
namespace AppBundle \Listener ;
use Lexik \Bundle \DataLayerBundle \Manager \DataLayerManager ;
class UserEventListener
{
protected $manager;
public function __construct (DataLayerManager $manager)
{
$this ->manager = $manager;
}
public function onUserRegistration ()
{
$this ->manager->add(['registration' => true ]);
}
}
namespace Lexik \Bundle \DataLayerBundle \Collector ;
use Symfony \Component \Security \Core \Authentication \Token \Storage \TokenStorageInterface ;
use Symfony \Component \Security \Core \User \UserInterface ;
class UserIdCollector implements CollectorInterface
{
protected $tokenStorage;
public function __construct (TokenStorageInterface $tokenStorage)
{
$this ->tokenStorage = $tokenStorage;
}
public function handle (&$data)
{
$token = $this ->tokenStorage->getToken();
if ($token->getUser() && $token->getUser() instanceof UserInterface) {
$data[] = ['user_id' => md5($token->getUser()->getUsername())];
}
}
}
php
public function registerBundles ()
{
return array (
new Lexik\Bundle\DataLayerBundle\LexikDataLayerBundle(),
);
}