mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
28 lines
670 B
PHP
28 lines
670 B
PHP
|
<?php namespace App\Ninja\Import\FreshBooks;
|
||
|
|
||
|
use App\Ninja\Import\BaseTransformer;
|
||
|
|
||
|
/*
|
||
|
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,
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|
||
|
*/
|