public BlockBase::blockForm($form, FormStateInterface $form_state)
Returns the configuration form elements specific to this block plugin.
Blocks that need to add form elements to the normal block configuration form should implement this method.
Parameters
array $form: The form definition array for the block configuration form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array $form The renderable form array representing the entire configuration form.
Overrides BlockPluginInterface::blockForm
File
- core/lib/Drupal/Core/Block/BlockBase.php, line 190
Class
- BlockBase
- Defines a base block implementation that most blocks plugins will extend.
Namespace
Drupal\Core\Block
Code
public function blockForm($form, FormStateInterface $form_state) { return array(); }
Please login to continue.