UserExportPluginManager.php in Open Social 10.1.x
Same filename and directory in other branches
- 8.9 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 10.0.x modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
- 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.php
Namespace
Drupal\social_user_export\PluginFile
modules/social_features/social_user_export/src/Plugin/UserExportPluginManager.phpView source
<?php
namespace Drupal\social_user_export\Plugin;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\social_user_export\Annotation\UserExportPlugin;
/**
* Provides the User export plugin plugin manager.
*/
class UserExportPluginManager extends DefaultPluginManager {
/**
* Constructs a new UserExportPluginManager object.
*
* @param \Traversable $namespaces
* An object that implements \Traversable which contains the root paths
* keyed by the corresponding namespace to look for plugin implementations.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* Cache backend instance to use.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler to invoke the alter hook with.
*/
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/UserExportPlugin', $namespaces, $module_handler, UserExportPluginInterface::class, UserExportPlugin::class);
$this
->alterInfo('social_user_export_plugin_info');
$this
->setCacheBackend($cache_backend, 'social_user_export_user_export_plugin_plugins');
}
}
Classes
Name | Description |
---|---|
UserExportPluginManager | Provides the User export plugin plugin manager. |