Constructs a new NodeBulkForm object.
Overrides BulkFormBase::__construct
public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityManager $manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $manager);
// Filter the actions to only include those for the 'node' entity type.
$this->actions = array_filter($this->actions, function ($action) {
return $action
->getType() == 'node';
});
}