UserActionsEvent.php in Filebrowser 8.2
File
src/Events/UserActionsEvent.php
View source
<?php
namespace Drupal\filebrowser\Events;
use Symfony\Component\EventDispatcher\Event;
class UserActionsEvent extends Event {
protected $actions;
protected $fileData;
public function __construct($actions, $fileData) {
$this->actions = $actions;
$this->fileData = $fileData;
}
public function getActions() {
return $this->actions;
}
public function setActions($actions) {
$this->actions = $actions;
}
public function getFileData() {
return $this->fileData;
}
}