You are here

public static function RenderCache::drupal_process_attached in Render cache 7.2

Overrides drupal_process_attached().

See also

drupal_process_attached()

File

lib/RenderCache.php, line 203
Contains RenderCache

Class

RenderCache
Static Service Container wrapper wrapping Drupal class.

Code

public static function drupal_process_attached($elements, $group = JS_DEFAULT, $dependency_check = FALSE, $every_page = NULL) {
  if (!static::$renderStack) {
    return static::callOriginalFunction('drupal_process_attached', func_get_args());
  }
  return static::$renderStack
    ->drupal_process_attached($elements, $group, $dependency_check, $every_page);
}