You are here

public function Framework::hookUserInsert 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::hookUserInsert()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::hookUserInsert()

Hook called in D7 when a user is inserted.

Overrides FrameworkInterface::hookUserInsert

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

File

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

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

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