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::offsetGet

Implements ArrayAccess::offsetGet().

Overrides DrupalCacheArray::offsetGet

Archivo

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

Class

ThemeRegistry
Builds the run-time theme registry.

Código

public function offsetGet($offset) {
  // If the offset is set but empty, it is a registered theme hook that has
  // not yet been requested. Offsets that do not exist at all were not
  // registered in hook_theme().
  if (isset($this->storage[$offset])) {
    return $this->storage[$offset];
  }
  elseif (array_key_exists($offset, $this->storage)) {
    return $this->resolveCacheMiss($offset);
  }
}