Bulkx
extends Component
in package
Table of Contents
- $actions : array<string|int, mixed>
- Key value pair for action and lable All actions has to be POST
- $id : string
- Conetxt id
- $pathParameters : string|array<string|int, mixed>
- Additional path parameters
- $recordTableId : string
- Id of record table
- $routePrefix : string
- Route prefix
- __construct() : void
- Create a new component instance.
- render() : View|string
- Get the view / contents that represent the component.
Properties
$actions
Key value pair for action and lable All actions has to be POST
public
array<string|int, mixed>
$actions
$id
Conetxt id
public
string
$id
$pathParameters
Additional path parameters
public
string|array<string|int, mixed>
$pathParameters
$recordTableId
Id of record table
public
string
$recordTableId
$routePrefix
Route prefix
public
string
$routePrefix
Methods
__construct()
Create a new component instance.
public
__construct(string $routePrefix, array<string|int, mixed> $actions[, string $recordTableId = 'records-table' ][, string|array<string|int, mixed> $pathParameters = null ]) : void
Parameters
- $routePrefix : string
- $actions : array<string|int, mixed>
- $recordTableId : string = 'records-table'
- $pathParameters : string|array<string|int, mixed> = null
Return values
void —render()
Get the view / contents that represent the component.
public
render() : View|string