public UpdateProcessor::__construct(ConfigFactoryInterface $config_factory, QueueFactory $queue_factory, UpdateFetcherInterface $update_fetcher, StateInterface $state_store, PrivateKey $private_key, KeyValueFactoryInterface $key_value_factory, KeyValueFactoryInterface $key_value_expirable_factory)
Constructs a UpdateProcessor.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.
\Drupal\Core\Queue\QueueFactory $queue_factory: The queue factory
\Drupal\update\UpdateFetcherInterface $update_fetcher: The update fetcher service
\Drupal\Core\State\StateInterface $state_store: The state service.
\Drupal\Core\PrivateKey $private_key: The private key factory service.
\Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value_factory: The key/value factory.
\Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value_expirable_factory: The expirable key/value factory.
File
- core/modules/update/src/UpdateProcessor.php, line 98
Class
- UpdateProcessor
- Process project update information.
Namespace
Drupal\update
Code
1 2 3 4 5 6 7 8 9 10 11 12 | public function __construct(ConfigFactoryInterface $config_factory , QueueFactory $queue_factory , UpdateFetcherInterface $update_fetcher , StateInterface $state_store , PrivateKey $private_key , KeyValueFactoryInterface $key_value_factory , KeyValueFactoryInterface $key_value_expirable_factory ) { $this ->updateFetcher = $update_fetcher ; $this ->updateSettings = $config_factory ->get( 'update.settings' ); $this ->fetchQueue = $queue_factory ->get( 'update_fetch_tasks' ); $this ->tempStore = $key_value_expirable_factory ->get( 'update' ); $this ->fetchTaskStore = $key_value_factory ->get( 'update_fetch_task' ); $this ->availableReleasesTempStore = $key_value_expirable_factory ->get( 'update_available_releases' ); $this ->stateStore = $state_store ; $this ->privateKey = $private_key ; $this ->fetchTasks = array (); $this ->failed = array (); } |
Please login to continue.