1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 18:27:10 +02:00
invoiceninja/app/Ninja/Import/Harvest/ContactTransformer.php

25 lines
781 B
PHP
Raw Normal View History

<?php namespace App\Ninja\Import\Harvest;
2015-12-08 11:10:20 +01:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
2015-12-08 11:10:20 +01:00
class ContactTransformer extends BaseTransformer
{
2015-12-08 11:10:20 +01:00
public function transform($data)
{
2015-12-08 11:10:20 +01:00
if ( ! $this->hasClient($data->client)) {
return false;
}
2015-12-08 11:10:20 +01:00
return new Item($data, function ($data) {
return [
2015-12-08 11:10:20 +01:00
'client_id' => $this->getClientId($data->client),
2016-01-06 08:52:26 +01:00
'first_name' => $this->getString($data, 'first_name'),
'last_name' => $this->getString($data, 'last_name'),
'email' => $this->getString($data, 'email'),
'phone' => $this->getString($data, 'office_phone') ?: $this->getString($data, 'mobile_phone'),
];
});
}
}