mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
/**
|
|
* Class CompanyPresenter
|
|
* @package App\Models\Presenters
|
|
*/
|
|
class CompanyPresenter extends EntityPresenter
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function name()
|
|
{
|
|
return $this->entity->name ?: ctrans('texts.untitled_account');
|
|
}
|
|
|
|
public function logo()
|
|
{
|
|
return strlen($this->entity->logo > 0) ? $this->entity->logo : 'https://www.invoiceninja.com/wp-content/uploads/2019/01/InvoiceNinja-Logo-Round-300x300.png';
|
|
}
|
|
|
|
public function address()
|
|
{
|
|
$str = '';
|
|
$company = $this->entity;
|
|
|
|
if ($address1 = $company->address1) {
|
|
$str .= e($address1) . '<br/>';
|
|
}
|
|
if ($address2 = $company->address2) {
|
|
$str .= e($address2) . '<br/>';
|
|
}
|
|
if ($cityState = $this->getCityState()) {
|
|
$str .= e($cityState) . '<br/>';
|
|
}
|
|
if ($country = $company->country) {
|
|
$str .= e($country->name) . '<br/>';
|
|
}
|
|
if ($company->work_phone) {
|
|
$str .= ctrans('texts.work_phone') . ": ". e($company->work_phone) .'<br/>';
|
|
}
|
|
if ($company->work_email) {
|
|
$str .= ctrans('texts.work_email') . ": ". e($company->work_email) .'<br/>';
|
|
}
|
|
|
|
return $str;
|
|
}
|
|
|
|
}
|