AbstractProvider implements ProviderInterface
Abstract provider is a base class for context menu item providers
Table of Contents
Interfaces
- ProviderInterface
- Interface for context menu items providers
Properties
- $backendUser : BackendUserAuthentication
- $clipboard : Clipboard
- $context : string
- Context - from where the click menu was triggered (e.g. 'tree')
- $disabledItems : array<string|int, mixed>
- Click menu items disabled by TSConfig
- $identifier : string
- $itemsConfiguration : array<string|int, mixed>
- Array of items the class is providing
- $languageService : LanguageService
- Language Service property. Used to access localized labels
- $table : string
- Current table name
Methods
- __construct() : mixed
- addItems() : array<string|int, mixed>
- Adds new items to the given array or modifies existing items
- canHandle() : bool
- Whether this provider can handle given request (usually a check based on table, uid and context)
- getPriority() : int
- Returns the provider priority which is used for determining the order in which providers are adding items to the result array. Highest priority means provider is evaluated first.
- setContext() : void
- Initialize the current context.
- canRender() : bool
- Checks whether certain item can be rendered (e.g. check for disabled items or permissions)
- getAdditionalAttributes() : array<string|int, mixed>
- Returns an array of additional attributes for given item. Additional attributes are used to pass item specific data to the JS. E.g. message for the delete confirmation dialog
- getIdentifier() : string
- Returns a clicked record identifier
- initClipboard() : mixed
- Initialize clipboard object - necessary for all copy/cut/paste operations
- initDisabledItems() : mixed
- Fills $this->disabledItems with the values from TSConfig.
- initialize() : mixed
- Provider initialization, heavy stuff
- prepareItems() : array<string|int, mixed>
- Converts item configuration (from $this->itemsConfiguration) into an array ready for returning by controller
Properties
$backendUser
protected
BackendUserAuthentication
$backendUser
$clipboard
protected
Clipboard
$clipboard
$context
Context - from where the click menu was triggered (e.g. 'tree')
protected
string
$context
= ''
$disabledItems
Click menu items disabled by TSConfig
protected
array<string|int, mixed>
$disabledItems
= []
$identifier
protected
string
$identifier
= ''
clicked record identifier (usually uid or file combined identifier)
$itemsConfiguration
Array of items the class is providing
protected
array<string|int, mixed>
$itemsConfiguration
= []
$languageService
Language Service property. Used to access localized labels
protected
LanguageService
$languageService
$table
Current table name
protected
string
$table
= ''
Methods
__construct()
public
__construct() : mixed
addItems()
Adds new items to the given array or modifies existing items
public
addItems(array<string|int, mixed> $items) : array<string|int, mixed>
Parameters
- $items : array<string|int, mixed>
Return values
array<string|int, mixed>canHandle()
Whether this provider can handle given request (usually a check based on table, uid and context)
public
canHandle() : bool
Return values
boolgetPriority()
Returns the provider priority which is used for determining the order in which providers are adding items to the result array. Highest priority means provider is evaluated first.
public
getPriority() : int
Return values
intsetContext()
Initialize the current context.
public
setContext(string $table, string $identifier[, string $context = '' ]) : void
This method is called directly after fetching the provider from the container.
Parameters
- $table : string
- $identifier : string
- $context : string = ''
canRender()
Checks whether certain item can be rendered (e.g. check for disabled items or permissions)
protected
canRender(string $itemName, string $type) : bool
Parameters
- $itemName : string
- $type : string
Return values
boolgetAdditionalAttributes()
Returns an array of additional attributes for given item. Additional attributes are used to pass item specific data to the JS. E.g. message for the delete confirmation dialog
protected
getAdditionalAttributes(string $itemName) : array<string|int, mixed>
Parameters
- $itemName : string
Return values
array<string|int, mixed>getIdentifier()
Returns a clicked record identifier
protected
getIdentifier() : string
Return values
stringinitClipboard()
Initialize clipboard object - necessary for all copy/cut/paste operations
protected
initClipboard() : mixed
initDisabledItems()
Fills $this->disabledItems with the values from TSConfig.
protected
initDisabledItems() : mixed
Disabled items can be set separately for each context.
initialize()
Provider initialization, heavy stuff
protected
initialize() : mixed
prepareItems()
Converts item configuration (from $this->itemsConfiguration) into an array ready for returning by controller
protected
prepareItems(array<string|int, mixed> $itemsConfiguration) : array<string|int, mixed>
Parameters
- $itemsConfiguration : array<string|int, mixed>