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

114 lines
2.8 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Presenters;
2015-11-12 21:36:28 +01:00
2017-09-12 23:20:18 +02:00
use Utils;
/**
2017-01-30 20:40:43 +01:00
* Class TaskPresenter.
*/
class TaskPresenter extends EntityPresenter
{
/**
* @return string
*/
2015-11-12 21:36:28 +01:00
public function client()
{
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
}
/**
* @return mixed
*/
2015-11-12 21:36:28 +01:00
public function user()
{
return $this->entity->user->getDisplayName();
}
2016-09-18 21:28:37 +02:00
public function description()
{
return substr($this->entity->description, 0, 40) . (strlen($this->entity->description) > 40 ? '...' : '');
}
public function project()
{
return $this->entity->project ? $this->entity->project->name : '';
}
/**
* @param $account
2017-01-30 20:49:42 +01:00
* @param mixed $showProject
2017-01-30 20:40:43 +01:00
*
* @return mixed
*/
public function invoiceDescription($account, $showProject)
2015-12-13 21:12:54 +01:00
{
$str = '';
if ($showProject && $project = $this->project()) {
2017-01-16 10:30:31 +01:00
$str .= "## {$project}\n\n";
}
if ($description = trim($this->entity->description)) {
$str .= $description . "\n\n";
}
2015-12-13 21:12:54 +01:00
$parts = json_decode($this->entity->time_log) ?: [];
$times = [];
foreach ($parts as $part) {
$start = $part[0];
2017-01-30 20:40:43 +01:00
if (count($part) == 1 || ! $part[1]) {
2015-12-13 21:12:54 +01:00
$end = time();
} else {
$end = $part[1];
}
2017-07-27 20:12:34 +02:00
$start = $account->formatDateTime('@' . intval($start));
$end = $account->formatTime('@' . intval($end));
2015-12-13 21:12:54 +01:00
2015-12-31 09:04:12 +01:00
$times[] = "### {$start} - {$end}";
2015-12-13 21:12:54 +01:00
}
return $str . implode("\n", $times);
2015-12-13 21:12:54 +01:00
}
2017-09-12 12:43:59 +02:00
2017-09-12 23:20:18 +02:00
public function calendarEvent($subColors = false)
2017-09-12 12:43:59 +02:00
{
$data = parent::calendarEvent();
$task = $this->entity;
2017-09-12 22:25:41 +02:00
$account = $task->account;
$date = $account->getDateTime();
2017-09-12 12:43:59 +02:00
$data->title = trans('texts.task');
if ($project = $this->project()) {
$data->title .= ' | ' . $project;
}
2017-09-12 23:20:18 +02:00
if ($description = $this->description()) {
$data->title .= ' | ' . $description;
2017-09-18 07:27:40 +02:00
}
2017-09-12 12:43:59 +02:00
$data->allDay = false;
2017-09-12 23:20:18 +02:00
if ($subColors && $task->project_id) {
$data->borderColor = $data->backgroundColor = Utils::brewerColor($task->project->public_id);
} else {
2017-09-18 07:27:40 +02:00
$data->borderColor = $data->backgroundColor = '#a87821';
2017-09-12 23:20:18 +02:00
}
2017-09-12 12:43:59 +02:00
$parts = json_decode($task->time_log) ?: [];
if (count($parts)) {
$first = $parts[0];
$start = $first[0];
2017-09-12 22:25:41 +02:00
$date->setTimestamp($start);
$data->start = $date->format('Y-m-d H:i:m');
2017-09-12 12:43:59 +02:00
$last = $parts[count($parts) - 1];
$end = count($last) == 2 ? $last[1] : $last[0];
2017-09-12 22:25:41 +02:00
$date->setTimestamp($end);
$data->end = $date->format('Y-m-d H:i:m');
2017-09-12 12:43:59 +02:00
}
return $data;
}
2016-05-23 11:26:08 +02:00
}