mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:47:30 -04:00 
			
		
		
		
	- New Helpers.php with sharedEmailVariables - Merged settings from TemplateEngine - @isset check for $whitelabel in the master.blade
		
			
				
	
	
		
			30 lines
		
	
	
		
			741 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			741 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
 | |
|     {
 | |
|         $_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;
 | |
|     }
 | |
| }
 |