1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/Presenters/EntityPresenter.php

178 lines
3.2 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models\Presenters;
use App\Utils\Traits\MakesHash;
use Hashids\Hashids;
use Laracasts\Presenter\Presenter;
use URL;
use Utils;
use stdClass;
2019-01-27 00:22:57 +01:00
/**
* Class EntityPresenter
* @package App\Models\Presenters
*/
class EntityPresenter extends Presenter
{
use MakesHash;
2019-01-27 00:22:57 +01:00
/**
* @return string
*/
public function id()
{
return $this->encodePrimaryKey($this->entity->id);
}
2019-01-27 00:22:57 +01:00
/**
*
*/
public function url()
{
}
2019-01-27 00:22:57 +01:00
/**
*
*/
public function path()
{
}
2019-01-27 00:22:57 +01:00
/**
*
*/
public function editUrl()
{
}
2019-01-27 00:22:57 +01:00
/**
* @param bool $label
*/
public function statusLabel($label = false)
{
}
2019-01-27 00:22:57 +01:00
/**
*
*/
public function statusColor()
{
}
2019-01-27 00:22:57 +01:00
/**
*
*/
public function link()
{
}
2019-01-27 00:22:57 +01:00
/**
*
*/
public function titledName()
{
}
2019-01-27 00:22:57 +01:00
/**
* @param bool $subColors
*/
public function calendarEvent($subColors = false)
{
}
public function getCityState()
{
$client = $this->entity;
$swap = $client->country && $client->country->swap_postal_code;
$city = e($client->city);
$state = e($client->state);
$postalCode = e($client->postal_code);
if ($city || $state || $postalCode) {
return $this->cityStateZip($city, $state, $postalCode, $swap);
} else {
return false;
}
}
2019-08-29 06:07:04 +02:00
public function getShippingCityState()
{
$client = $this->entity;
$swap = $client->shipping_country && $client->shipping_country->swap_postal_code;
$city = e($client->shipping_city);
$state = e($client->shipping_state);
$postalCode = e($client->shipping_postal_code);
if ($city || $state || $postalCode) {
return $this->cityStateZip($city, $state, $postalCode, $swap);
} else {
return false;
}
}
public function cityStateZip($city, $state, $postalCode, $swap)
{
$str = $city;
if ($state) {
if ($str) {
$str .= ', ';
}
$str .= $state;
}
if ($swap) {
return $postalCode . ' ' . $str;
} else {
return $str . ' ' . $postalCode;
}
}
public function clientName()
{
return $this->client->present()->name();
}
public function address()
{
return $this->client->present()->address();
}
public function shippingAddress()
{
return $this->client->present()->shipping_address();
}
public function companyLogo()
{
return $this->company->logo;
}
public function clientLogo()
{
return $this->client->logo;
}
public function companyName()
{
return $this->company->present()->name();
}
public function companyAddress()
{
return $this->company->present()->address();
}
}