mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
29 lines
704 B
PHP
29 lines
704 B
PHP
<?php namespace App\Ninja\Import\FreshBooks;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
/*
|
|
class TaskTransformer extends BaseTransformer
|
|
{
|
|
|
|
public function transform($data)
|
|
{
|
|
// start by converting to seconds
|
|
$seconds = ($data->hours * 3600);
|
|
$timeLogFinish = strtotime($data->date);
|
|
$timeLogStart = intval($timeLogFinish - $seconds);
|
|
$timeLog[] = [];
|
|
$timelog[] = $timeLogStart;
|
|
$timelog[] = $timeLogFinish;
|
|
$timeLog = json_encode(array($timelog));
|
|
|
|
return [
|
|
'action' => 'stop',
|
|
'time_log' => $timeLog,
|
|
'description' => $data->task,
|
|
];
|
|
}
|
|
|
|
}
|
|
*/ |