You are here

public static function SocialFollowTagLazyBuilder::trustedCallbacks in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_follow_taxonomy/modules/social_follow_tag/src/SocialFollowTagLazyBuilder.php \Drupal\social_follow_tag\SocialFollowTagLazyBuilder::trustedCallbacks()
  2. 10.0.x modules/social_features/social_follow_taxonomy/modules/social_follow_tag/src/SocialFollowTagLazyBuilder.php \Drupal\social_follow_tag\SocialFollowTagLazyBuilder::trustedCallbacks()
  3. 10.1.x modules/social_features/social_follow_taxonomy/modules/social_follow_tag/src/SocialFollowTagLazyBuilder.php \Drupal\social_follow_tag\SocialFollowTagLazyBuilder::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()

File

modules/social_features/social_follow_taxonomy/modules/social_follow_tag/src/SocialFollowTagLazyBuilder.php, line 203

Class

SocialFollowTagLazyBuilder
Provide service for lazy rendering.

Namespace

Drupal\social_follow_tag

Code

public static function trustedCallbacks() {
  return [
    'lazyBuild',
    'popupLazyBuild',
  ];
}