1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/app/Ninja/Import/Harvest/ContactTransformer.php

35 lines
886 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Import\Harvest;
2015-12-08 11:10:20 +01:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 20:40:43 +01:00
* Class ContactTransformer.
*/
2015-12-08 11:10:20 +01:00
class ContactTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 20:40:43 +01:00
*
* @return bool|Item
*/
2015-12-08 11:10:20 +01:00
public function transform($data)
{
2017-01-30 17:05:31 +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'),
];
});
}
}