在输出客户区页面时执行。以下是所有页面通用的模板变量列表。其他变量将根据正在呈现的页面而有所不同。
参数
变量 | 类型 | 注意 |
---|---|---|
companyname | string | |
logo | string | |
systemurl | string | |
charset | string | |
pagetitle | string | |
filename | string | |
template | string | |
language | string | |
LANG | array | 活动语言翻译字符串 |
todaysdate | string | 今天日期的人性化格式化版本 |
date_day | string | 每月的当前日期 |
date_month | string | 这个月 |
date_year | string | 今年 |
WEB_ROOT | string | WHMCS 文档根目录的 Web 路径 |
BASE_PATH_CSS | string | |
BASE_PATH_JS | string | |
BASE_PATH_FONTS | string | |
BASE_PATH_IMG | string | |
token | string | CSRF 代币值 |
servedOverSsl | bool | 如果页面是通过 https:// 加载的,则为真 |
响应
返回要在页面输出的 body 标记顶部输出的 HTML。
示例代码
<?php
add_hook('ClientAreaHeaderOutput', 1, function($vars) {
$return = '';
if (
$vars['filename'] == 'index.php'
&& isset($_REQUEST['m'])
&& $_REQUEST['m'] == 'project_management'
) {
$return = '<b>This is a custom output on the header when in the client area for Project Management</b>';
}
return $return;
});
相关用法
- PHP WHMCS ClientAreaHeadOutput用法及代码示例
- PHP WHMCS ClientAreaHomepagePanels用法及代码示例
- PHP WHMCS ClientAreaHomepage用法及代码示例
- PHP WHMCS ClientAreaPageDownloads用法及代码示例
- PHP WHMCS ClientAreaPageSupportTickets用法及代码示例
- PHP WHMCS ClientAreaPageDomainDNSManagement用法及代码示例
- PHP WHMCS ClientAreaPageAffiliates用法及代码示例
- PHP WHMCS ClientAreaPageViewInvoice用法及代码示例
- PHP WHMCS ClientAreaPageProductsServices用法及代码示例
- PHP WHMCS ClientAreaPageDomainRegisterNameservers用法及代码示例
- PHP WHMCS ClientAreaPageUnsubscribe用法及代码示例
- PHP WHMCS ClientAreaPageConfigureSSL用法及代码示例
- PHP WHMCS ClientAreaPageDomainDetails用法及代码示例
- PHP WHMCS ClientAreaPageAddonModule用法及代码示例
- PHP WHMCS ClientAreaPageContact用法及代码示例
- PHP WHMCS ClientAreaPageSecurity用法及代码示例
- PHP WHMCS ClientAreaPage用法及代码示例
- PHP WHMCS ClientAreaProductDetailsOutput用法及代码示例
- PHP WHMCS ClientAreaDomainDetailsOutput用法及代码示例
- PHP WHMCS ClientAreaPageDomainEmailForwarding用法及代码示例
- PHP WHMCS ClientAreaPageDomainAddons用法及代码示例
- PHP WHMCS ClientAreaPageAddFunds用法及代码示例
- PHP WHMCS ClientAreaPageBulkDomainManagement用法及代码示例
- PHP WHMCS ClientAreaRegister用法及代码示例
- PHP WHMCS ClientAreaPaymentMethods用法及代码示例
注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 ClientAreaHeaderOutput。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。