2019-11-20 06:41:49 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-11-20 06:41:49 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-11-20 06:41:49 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
2020-03-07 07:31:26 +01:00
|
|
|
use App\Designs\Designer;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Exception;
|
2020-02-10 10:53:02 +01:00
|
|
|
use Illuminate\Support\Facades\App;
|
2019-11-20 06:41:49 +01:00
|
|
|
use Illuminate\Support\Facades\Blade;
|
2020-03-25 03:50:08 +01:00
|
|
|
use Illuminate\Support\Facades\File;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\View\Factory;
|
2019-11-20 06:41:49 +01:00
|
|
|
use Symfony\Component\Debug\Exception\FatalThrowableError;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Throwable;
|
2019-11-20 06:41:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class MakesInvoiceHtml.
|
|
|
|
*/
|
|
|
|
trait MakesInvoiceHtml
|
|
|
|
{
|
2020-03-29 14:22:14 +02:00
|
|
|
|
2020-03-07 07:31:26 +01:00
|
|
|
private function parseLabelsAndValues($labels, $values, $section) :string
|
|
|
|
{
|
2020-04-15 02:30:52 +02:00
|
|
|
$section = strtr($section, $labels);
|
|
|
|
$section = strtr($section, $values);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-07 07:31:26 +01:00
|
|
|
return $section;
|
|
|
|
}
|
|
|
|
|
2019-11-20 06:41:49 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Parses the blade file string and processes the template variables.
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param string $string The Blade file string
|
|
|
|
* @param array $data The array of template variables
|
2019-11-20 06:41:49 +01:00
|
|
|
* @return string The return HTML string
|
2020-10-28 11:10:49 +01:00
|
|
|
* @throws FatalThrowableError
|
2019-11-20 06:41:49 +01:00
|
|
|
*/
|
2020-03-07 07:31:26 +01:00
|
|
|
public function renderView($string, $data = []) :string
|
2019-11-20 06:41:49 +01:00
|
|
|
{
|
2020-10-28 11:10:49 +01:00
|
|
|
$data['__env'] = app(Factory::class);
|
2019-11-20 06:41:49 +01:00
|
|
|
|
|
|
|
$php = Blade::compileString($string);
|
|
|
|
|
|
|
|
$obLevel = ob_get_level();
|
|
|
|
ob_start();
|
|
|
|
extract($data, EXTR_SKIP);
|
|
|
|
|
|
|
|
try {
|
2020-09-06 11:38:10 +02:00
|
|
|
eval('?'.'>'.$php);
|
2020-10-28 11:10:49 +01:00
|
|
|
} catch (Exception $e) {
|
2019-11-20 06:41:49 +01:00
|
|
|
while (ob_get_level() > $obLevel) {
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
|
|
|
|
throw $e;
|
2020-10-28 11:10:49 +01:00
|
|
|
} catch (Throwable $e) {
|
2019-11-20 06:41:49 +01:00
|
|
|
while (ob_get_level() > $obLevel) {
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new FatalThrowableError($e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
2020-03-25 03:50:08 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the base template we will be using.
|
|
|
|
*/
|
|
|
|
public function getTemplate(string $template = 'plain')
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return File::get(resource_path('views/email/template/'.$template.'.blade.php'));
|
2020-03-25 03:50:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTemplatePath(string $template = 'plain')
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return 'email.template.'.$template;
|
2020-03-25 03:50:08 +01:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|