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).
  • 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).
  • 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).
  • 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 DrupalCacheArray::offsetGet

Implements ArrayAccess::offsetGet().

2 calls to DrupalCacheArray::offsetGet()
DrupalCacheArray::offsetExists in drupal-7.x/includes/bootstrap.inc
Implements ArrayAccess::offsetExists().
DrupalCacheArray::offsetExists in drupal-7.x/includes/bootstrap.inc
Implements ArrayAccess::offsetExists().
1 method overrides DrupalCacheArray::offsetGet()
ThemeRegistry::offsetGet in drupal-7.x/includes/theme.inc
Implements ArrayAccess::offsetGet().

Archivo

drupal-7.x/includes/bootstrap.inc, line 355
Functions that need to be loaded on every Drupal request.

Class

DrupalCacheArray
Provides a caching wrapper to be used in place of large array structures.

Código

public function offsetGet($offset) {
  if (isset($this->storage[$offset]) || array_key_exists($offset, $this->storage)) {
    return $this->storage[$offset];
  }
  else {
    return $this->resolveCacheMiss($offset);
  }
}