public function GridStackLayoutDeprecated::__construct in GridStack 8
Constructs a \Drupal\Component\Plugin\PluginBase object.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin_id for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
Overrides PluginBase::__construct
File
- src/
Layout/ GridStackLayoutDeprecated.php, line 30
Class
- GridStackLayoutDeprecated
- Provides a GridStack class for Layout plugins.
Namespace
Drupal\gridstack\LayoutCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, AccountInterface $current_user, GridStackManagerInterface $manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->currentUser = $current_user;
$this->manager = $manager;
}