Issue #2014013 by kgoel | DmitryDrozdik: Replace drupal_container() with Drupal::service() in the statistics module.

8.0.x
webchick 2013-06-17 01:17:42 -05:00
parent f5cc5ac72c
commit 7b9974f56b
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ class StatisticsSettingsForm extends SystemConfigFormBase {
// The popular statistics block is dependent on these settings, so clear the
// block plugin definitions cache.
if ($this->moduleHandler->moduleExists('block')) {
drupal_container()->get('plugin.manager.block')->clearCachedDefinitions();
\Drupal::service('plugin.manager.block')->clearCachedDefinitions();
}
parent::submitForm($form, $form_state);

View File

@ -174,7 +174,7 @@ function statistics_get($nid) {
* A string as a link, truncated to the width, linked to the given $path.
*/
function _statistics_link($path, $width = 35) {
$title = drupal_container()->get('path.alias_manager')->getPathAlias($path);
$title = Drupal::service('path.alias_manager')->getPathAlias($path);
$title = truncate_utf8($title, $width, FALSE, TRUE);
return l($title, $path);
}