mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
25 lines
681 B
PHP
25 lines
681 B
PHP
<?php namespace App\Ninja\Import\Harvest;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
class ContactTransformer extends BaseTransformer
|
|
{
|
|
public function transform($data)
|
|
{
|
|
if ( ! $this->hasClient($data->client)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'client_id' => $this->getClientId($data->client),
|
|
'first_name' => $data->first_name,
|
|
'last_name' => $data->last_name,
|
|
'email' => $data->email,
|
|
'phone' => $data->office_phone ?: $data->mobile_phone,
|
|
];
|
|
});
|
|
}
|
|
}
|