2019-04-19 11:09:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
|
|
|
use App\Models\ClientContact;
|
|
|
|
|
|
|
|
class ClientContactObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle the client contact "created" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\ClientContact $clientContact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "updated" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\ClientContact $clientContact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "deleted" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\ClientContact $clientContact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(ClientContact $clientContact)
|
|
|
|
{
|
2020-08-07 00:13:15 +02:00
|
|
|
$clientContact->invoice_invitations()->delete();
|
|
|
|
$clientContact->quote_invitations()->delete();
|
|
|
|
$clientContact->credit_invitations()->delete();
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "restored" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\ClientContact $clientContact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(ClientContact $clientContact)
|
|
|
|
{
|
2020-08-07 00:13:15 +02:00
|
|
|
$clientContact->invoice_invitations()->restore();
|
|
|
|
$clientContact->quote_invitations()->restore();
|
|
|
|
$clientContact->credit_invitations()->restore();
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client contact "force deleted" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\ClientContact $clientContact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(ClientContact $clientContact)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|