当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP WHMCS AdminAreaClientSummaryPage用法及代码示例


允许返回输出以显示在客户端摘要页面上。

参数

变量 类型 注意
userid int 显示的用户id

响应

返回要在页面上输出的 HTML。

示例代码

<?php

add_hook('AdminAreaClientSummaryPage', 1, function($vars) {
    return 'This message will be output on the Client Summary page. I can add HTML here';
});

相关用法


注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 AdminAreaClientSummaryPage。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。