76 lines
2.3 KiB
PHP
76 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of webman.
|
|
*
|
|
* Licensed under The MIT License
|
|
* For full copyright and license information, please see the MIT-LICENSE.txt
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @author walkor<walkor@workerman.net>
|
|
* @copyright walkor<walkor@workerman.net>
|
|
* @link http://www.workerman.net/
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
*/
|
|
|
|
namespace support;
|
|
|
|
use think\Template;
|
|
use Webman\View;
|
|
use function app_path;
|
|
use function array_merge;
|
|
use function base_path;
|
|
use function config;
|
|
use function is_array;
|
|
use function ob_get_clean;
|
|
use function ob_start;
|
|
use function request;
|
|
use function runtime_path;
|
|
|
|
/**
|
|
* Class Blade
|
|
* @package support\view
|
|
*/
|
|
class ThinkPHP extends \support\view\ThinkPHP implements View
|
|
{
|
|
/**
|
|
* Assign.
|
|
* @param string|array $name
|
|
* @param mixed $value
|
|
*/
|
|
public static function assign(string|array $name, mixed $value = null): void
|
|
{
|
|
$request = request();
|
|
$request->_view_vars = array_merge((array) $request->_view_vars, is_array($name) ? $name : [$name => $value]);
|
|
}
|
|
|
|
/**
|
|
* Render.
|
|
* @param string $template
|
|
* @param array $vars
|
|
* @param string|null $app
|
|
* @param string|null $plugin
|
|
* @return false|string
|
|
*/
|
|
public static function render(string $template, array $vars, string $app = null, string $plugin = null): string
|
|
{
|
|
$request = request();
|
|
$plugin = $plugin === null ? ($request->plugin ?? '') : $plugin;
|
|
$app = $app === null ? $request->app : $app;
|
|
$configPrefix = $plugin ? "plugin.$plugin." : '';
|
|
$viewSuffix = config("{$configPrefix}view.options.view_suffix", 'html');
|
|
$baseViewPath = $plugin ? base_path() . "/plugin/$plugin/app" : app_path();
|
|
$viewPath = $app === '' ? "$baseViewPath/view/" : "$baseViewPath/$app/view/";
|
|
$defaultOptions = [
|
|
'view_path' => $viewPath,
|
|
'cache_path' => runtime_path() . '/views/',
|
|
'view_suffix' => $viewSuffix
|
|
];
|
|
$options = array_merge($defaultOptions, config("{$configPrefix}view.options", []));
|
|
$views = new Template($options);
|
|
ob_start();
|
|
$vars = array_merge((array) $request->_view_vars, $vars);
|
|
$views->fetch($template, $vars);
|
|
return ob_get_clean();
|
|
}
|
|
}
|