You are here

public function Module::module_invoke_all in AmazonS3 7.2

Same name in this branch
  1. 7.2 tests/DrupalAdapter/Module.php \Drupal\amazons3Test\DrupalAdapter\Module::module_invoke_all()
  2. 7.2 src/DrupalAdapter/Module.php \Drupal\amazons3\DrupalAdapter\Module::module_invoke_all()

Parameters

string $hook:

Return value

array

See also

module_invoke_all()

File

tests/DrupalAdapter/Module.php, line 21

Class

Module
Stub for module.inc functions, with a call counter to log each call.

Namespace

Drupal\amazons3Test\DrupalAdapter

Code

public function module_invoke_all($hook) {
  $this
    ->logCall(__FUNCTION__ . ':' . $hook);
  return array();
}