public static function DashboardBlockBase::getBasicConfigStructure in Content Planner 8
Get basic configuration structure for the block configuration.
Return value
array The basic configuration structure.
1 call to DashboardBlockBase::getBasicConfigStructure()
- DashboardSettingsForm::submitForm in src/
Form/ DashboardSettingsForm.php - Form submission handler.
File
- src/
DashboardBlockBase.php, line 102
Class
- DashboardBlockBase
- Implements DashboardBlockBase.
Namespace
Drupal\content_plannerCode
public static function getBasicConfigStructure() {
return [
'plugin_id' => NULL,
'title' => NULL,
'weight' => 0,
'configured' => FALSE,
'plugin_specific_config' => [],
];
}