1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Ninja/Import/Ronin/ClientTransformer.php

39 lines
942 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Import\Ronin;
2015-12-10 14:35:40 +01:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 20:40:43 +01:00
* Class ClientTransformer.
*/
2015-12-10 14:35:40 +01:00
class ClientTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 20:40:43 +01:00
*
* @return bool|Item
*/
2015-12-10 14:35:40 +01:00
public function transform($data)
{
if ($this->hasClient($data->company)) {
return false;
}
return new Item($data, function ($data) {
return [
2016-01-06 08:52:26 +01:00
'name' => $this->getString($data, 'company'),
'work_phone' => $this->getString($data, 'phone'),
2015-12-10 14:35:40 +01:00
'contacts' => [
[
'first_name' => $this->getFirstName($data->name),
'last_name' => $this->getLastName($data->name),
2016-01-06 08:52:26 +01:00
'email' => $this->getString($data, 'email'),
2015-12-10 14:35:40 +01:00
],
],
];
});
}
}