1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Ninja/Import/Harvest/ContactTransformer.php
2015-12-08 12:10:20 +02:00

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,
];
});
}
}