Closed (fixed)
Project:
Drupal core
Version:
8.0.x-dev
Component:
config.module
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
24 May 2013 at 20:31 UTC
Updated:
29 Jul 2014 at 22:25 UTC
Jump to comment: Most recent file
Comments
Comment #1
ebeyrent commentedComment #2
ebeyrent commentedComment #3
dawehnerThis could be just $this->container->get('config.factory')
Comment #5
alexander.ilivanov commenteddrupal_container() replaced
Patch attached.
Comment #6
tstoecklerLooks good.
Comment #8
dawehnerThis should use the $source_storage.
Comment #9
jeroentreplaced drupal_container with Drupal::service.
Comment #11
ddrozdik commentedPlease use \Drupal::service('config.factory'); in clases.
Comment #12
jeroentMade changes as suggested by DmitryDrozdik.
Comment #13
ebeyrent commentedNeed to remove the backslash when in module code.
Should be:
Drupal::service('config.storage.staging');
Drupal::service('config.storage');
Comment #14
jeroentmade changes as suggested by ebeyrent.
Comment #15
ebeyrent commentedRTBC
Comment #16
webchickCommitted and pushed to 8.x. Thanks!
Comment #17
ddrozdik commented