NewHome/func/_bar.php

16 lines
517 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* func/_bar.php —— 功能区子页公共头部条(需先引入 includes/layout.php
* 仅包含函数,不直接输出。
*/
function func_bar(string $title): void
{
echo '<div class="func-bar">';
echo '<div class="wrap func-bar-inner">';
echo '<a class="btn btn-sm" href="index.php">← 返回功能区首页</a>';
echo '<span class="func-bar-title">' . he($title) . '</span>';
echo '<a class="btn btn-sm" href="../index.php">首页</a>';
echo '</div></div>' . "\n";
}