Triggered when a payment profile is saved to the database.
The event is triggered regardless of whether the customer profile is new or existing.
Example:
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onCustomerProfileSave', $this, 'on_profile_save');
}
public function on_profile_save($profile)
{
// Do something
}