SchemaIndexDefinitionEventArgs
extends SchemaEventArgs
in package
Event Arguments used when the portable index definition is generated inside {@see AbstractSchemaManager}.
Tags
Table of Contents
Properties
- $_emptyEventArgsInstance : EventArgs|null
- Single instance of EventArgs.
- $connection : Connection
- $index : Index|null
- $preventDefault : bool
- $table : string
- $tableIndex : array<string|int, mixed>
- Raw index data as fetched from the database.
Methods
- __construct() : mixed
- getConnection() : Connection
- getEmptyInstance() : EventArgs
- Gets the single, empty and immutable EventArgs instance.
- getIndex() : Index|null
- getTable() : string
- getTableIndex() : array<string|int, mixed>
- isDefaultPrevented() : bool
- preventDefault() : SchemaEventArgs
- setIndex() : SchemaIndexDefinitionEventArgs
- Allows to clear the index which means the index will be excluded from tables index list.
Properties
$_emptyEventArgsInstance
Single instance of EventArgs.
private
static EventArgs|null
$_emptyEventArgsInstance
$connection
private
Connection
$connection
$index
private
Index|null
$index
= null
$preventDefault
private
bool
$preventDefault
= false
$table
private
string
$table
$tableIndex
Raw index data as fetched from the database.
private
array<string|int, mixed>
$tableIndex
Methods
__construct()
public
__construct(array<string|int, mixed> $tableIndex, string $table, Connection $connection) : mixed
Parameters
- $tableIndex : array<string|int, mixed>
- $table : string
- $connection : Connection
getConnection()
public
getConnection() : Connection
Return values
ConnectiongetEmptyInstance()
Gets the single, empty and immutable EventArgs instance.
public
static getEmptyInstance() : EventArgs
This instance will be used when events are dispatched without any parameter, like this: EventManager::dispatchEvent('eventname');
The benefit from this is that only one empty instance is instantiated and shared (otherwise there would be instances for every dispatched in the abovementioned form).
Tags
Return values
EventArgsgetIndex()
public
getIndex() : Index|null
Return values
Index|nullgetTable()
public
getTable() : string
Return values
stringgetTableIndex()
public
getTableIndex() : array<string|int, mixed>
Return values
array<string|int, mixed>isDefaultPrevented()
public
isDefaultPrevented() : bool
Return values
boolpreventDefault()
public
preventDefault() : SchemaEventArgs
Return values
SchemaEventArgssetIndex()
Allows to clear the index which means the index will be excluded from tables index list.
public
setIndex([Index|null $index = null ]) : SchemaIndexDefinitionEventArgs
Parameters
- $index : Index|null = null