signup

Triggered upon order completion if customer entered a password to sign up for a permanent account.

Shop-Script

Input (passed by reference)

$contact waContact Instance of a contact class instance corresponding to signed up customer.
… your plugin code …

Output

Shop-Script

Plugin code example

PHP

public function signup( waContact $contact)
{
    waLog::log(
        sprintf('Contact %s (%d)', $contact->getName(), $contact->getId()),
        'shop/plugins/' . $this->id . '/signup.log'
    );
}