FrxFormatterPluginManager.php in Forena Reports 8
File
src/FrxFormatterPluginManager.php
View source
<?php
namespace Drupal\forena;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
class FrxFormatterPluginManager extends DefaultPluginManager {
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
$subdir = 'FrxPlugin/FieldFormatter';
$plugin_interface = 'Drupal\\forena\\FrxPlugin\\FeildFormatter\\FormatterInterface';
$plugin_definition_annotation_name = 'Drupal\\forena\\Annotation\\FrxFormatter';
parent::__construct($subdir, $namespaces, $module_handler, $plugin_interface, $plugin_definition_annotation_name);
$this
->alterInfo('frx_formatter_info');
$this
->setCacheBackend($cache_backend, 'frx_formatter_info');
}
}