Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/demo.vapecompany.com.bd/vendor/facade/ignition/src/ErrorPage/ |
Upload File : |
<?php namespace Facade\Ignition\ErrorPage; use Exception; use Facade\Ignition\Exceptions\ViewException; class Renderer { /** @var string */ protected $viewPath; public function __construct(string $viewPath) { $this->viewPath = $this->formatPath($viewPath); } public function render(string $viewName, array $_data): string { ob_start(); $viewFile = "{$this->viewPath}/{$viewName}.php"; try { extract((array) $_data, EXTR_OVERWRITE); include $viewFile; } catch (Exception $exception) { $viewException = new ViewException($exception->getMessage()); $viewException->setView($viewFile); $viewException->setViewData($_data); throw $viewException; } return ob_get_clean(); } protected function formatPath(string $path): string { return preg_replace('/(?:\/)+$/u', '', $path).'/'; } }