EclipseGc

bootstrap.inc additions

Feb 3rd, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. function drupal_container($class = 'Drupal\\Core\\DependencyInjection\\DrupalPimpleContainer') {
  2.   static $container;
  3.   if (!empty($container)) {
  4.     return $container;
  5.   }
  6.   $container = new $class();
  7.   return $container;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment