You are here

public static function AjaxFormTrait::getAjaxButtonAttributes in Chaos Tool Suite (ctools) 8.3

Gets attributes for use with an add button AJAX modal.

Return value

array

File

src/Form/AjaxFormTrait.php, line 33

Class

AjaxFormTrait
Provides helper methods for using an AJAX modal.

Namespace

Drupal\ctools\Form

Code

public static function getAjaxButtonAttributes() {
  return NestedArray::mergeDeep(AjaxFormTrait::getAjaxAttributes(), [
    'class' => [
      'button',
      'button--small',
      'button-action',
    ],
  ]);
}