Mensaje de error

Warning: count(): Parameter must be an array or an object that implements Countable en _api_make_match_member_link() (línea 1230 de /home/u295177857/domains/app01.inkastattoonewjersey.com/public_html/profiles/drupalapi/modules/contrib/api/api.formatting.inc).

public function ThemeRegistry::offsetExists

Implements ArrayAccess::offsetExists().

Overrides DrupalCacheArray::offsetExists

Archivo

drupal-7.x/includes/theme.inc, line 416
The theme system, which controls the output of Drupal.

Class

ThemeRegistry
Builds the run-time theme registry.

Código

public function offsetExists($offset) {
  // Since the theme registry allows for theme hooks to be requested that
  // are not registered, just check the existence of the key in the registry.
  // Use array_key_exists() here since a NULL value indicates that the theme
  // hook exists but has not yet been requested.
  return array_key_exists($offset, $this->storage);
}