Executes the plugin.
Overrides ExecutableInterface::execute
public function execute($account = NULL) {
// Skip unblocking user if they are already unblocked.
if ($account !== FALSE && $account->status->value == 0) {
$account->status = 1;
$account
->save();
}
}