You are here

public function TfaSetup::begin in Two-factor Authentication (TFA) 7.2

Run any begin setup processes.

File

./tfa.inc, line 345
TFA module classes.

Class

TfaSetup
Class TfaSetup.

Code

public function begin() {

  // Invoke begin method on setup plugin.
  if (method_exists($this->setupPlugin, 'begin')) {
    $this->setupPlugin
      ->begin();
  }
}