blob: a8361d3d5a5750ceae30107d6c028a1281157e1e [file] [log] [blame]
<?php
namespace BaclucEventPackage\NextEvent;
use BaclucC5Crud\View\ViewActionDefinition;
use BaclucC5Crud\View\ViewActionRegistry;
use BaclucEventPackage\EventActionRegistryFactory;
class ViewActionRegistryFactory
{
public function createActionRegistry(): ViewActionRegistry
{
$actions = [
new ViewActionDefinition(EventActionRegistryFactory::SHOW_CANCEL_EVENT_FORM,
"cancel-event",
"cancel",
"cancel",
"fa-sign-out"),
];
return new ViewActionRegistry($actions);
}
}