You are here

public function ActionAjaxTest::defaultConfiguration in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/action/tests/action_form_ajax_test/src/Plugin/Action/ActionAjaxTest.php \Drupal\action_form_ajax_test\Plugin\Action\ActionAjaxTest::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurableActionBase::defaultConfiguration

File

core/modules/action/tests/action_form_ajax_test/src/Plugin/Action/ActionAjaxTest.php, line 24

Class

ActionAjaxTest
Plugin used for testing AJAX in action config entity forms.

Namespace

Drupal\action_form_ajax_test\Plugin\Action

Code

public function defaultConfiguration() {
  return [
    'party_time' => '',
  ];
}