mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-04 00:24:29 +08:00
17 lines
259 B
PHP
17 lines
259 B
PHP
<?php
|
|
|
|
namespace app\common\tools;
|
|
|
|
use think\facade\View;
|
|
|
|
class PostBlock
|
|
{
|
|
public static function copyright($model_post)
|
|
{
|
|
|
|
return View::fetch(__DIR__ . '/post_block/copyright.html', [
|
|
'post' => $model_post
|
|
]);
|
|
}
|
|
}
|