You are here

public static function WebformElementBase::trustedCallbacks in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElementBase.php \Drupal\webform\Plugin\WebformElementBase::trustedCallbacks()

Lists the trusted callbacks provided by the implementing class.

Trusted callbacks are public methods on the implementing class and can be invoked via \Drupal\Core\Security\DoTrustedCallbackTrait::doTrustedCallback().

Return value

string[] List of method names implemented by the class that can be used as trusted callbacks.

Overrides TrustedCallbackInterface::trustedCallbacks

See also

\Drupal\Core\Security\DoTrustedCallbackTrait::doTrustedCallback()

1 call to WebformElementBase::trustedCallbacks()
TextFormat::trustedCallbacks in src/Plugin/WebformElement/TextFormat.php
Lists the trusted callbacks provided by the implementing class.
1 method overrides WebformElementBase::trustedCallbacks()
TextFormat::trustedCallbacks in src/Plugin/WebformElement/TextFormat.php
Lists the trusted callbacks provided by the implementing class.

File

src/Plugin/WebformElementBase.php, line 3736

Class

WebformElementBase
Provides a base class for a webform element.

Namespace

Drupal\webform\Plugin

Code

public static function trustedCallbacks() {
  return [
    'preRenderFixStatesWrapper',
    'preRenderFixFlexboxWrapper',
    'preRenderWebformCompositeFormElement',
  ];
}