mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
40 lines
926 B
PHP
40 lines
926 B
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Utils;
|
|
|
|
use App\Models\Client;
|
|
|
|
class Helpers
|
|
{
|
|
public static function sharedEmailVariables(?Client $client, array $settings = null): array
|
|
{
|
|
if(!$client){
|
|
|
|
$elements['signature'] = '';
|
|
$elements['settings'] = new \stdClass;
|
|
$elements['whitelabel'] = true;
|
|
|
|
return $elements;
|
|
|
|
}
|
|
|
|
$_settings = is_null($settings) ? $client->getMergedSettings() : $settings;
|
|
|
|
$elements['signature'] = $_settings->email_signature;
|
|
$elements['settings'] = $_settings;
|
|
$elements['whitelabel'] = $client->user->account->isPaid() ? true : false;
|
|
|
|
return $elements;
|
|
}
|
|
}
|