lb_grid_cta-1.0.1/src/EventSubscriber/WSStyleGroupAlter.php
src/EventSubscriber/WSStyleGroupAlter.php
<?php
namespace Drupal\lb_grid_cta\EventSubscriber;
use Drupal\y_lb\WSStyleGroupAlterAbstract;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* An event subscriber to alter available WS Style groups for a component.
*/
class WSStyleGroupAlter extends WSStyleGroupAlterAbstract implements EventSubscriberInterface {
/**
* {@inheritdoc}
*/
protected function getAllowedStyleGroups() {
return [
'inline_block:lb_grid_cta' => [
'button_fill_component',
],
];
}
}
