You are here

public function Framework::hookUserPresave in Realistic Dummy Content 3.x

Same name and namespace in other branches
  1. 8.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::hookUserPresave()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::hookUserPresave()

Hook called in D7 when a user is saved.

Overrides FrameworkInterface::hookUserPresave

1 method overrides Framework::hookUserPresave()
Drupal8::hookUserPresave in api/src/Framework/Drupal8.php
Hook called in D7 when a user is saved.

File

api/src/Framework/Framework.php, line 252

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function hookUserPresave(&$edit, $account, $category) {
  return $this
    ->implementor()
    ->hookUserPresave($edit, $account, $category);
}