123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Index.php UTF-8
- * 实名认证view组件
- *
- * @date : 2019/3/25 21:58
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : chengshibin <csb@huosdk.com>
- * @version : HUOSDK 8.0
- */
- namespace huoIdentify\view;
- use cmf\view\Filter;
- use huolib\constant\GameConst;
- class Index {
- /**
- * 设置切换页面页面样式
- *
- * @param int $auth_status 目前认证状态
- *
- * @return string
- */
- public static function selectIdentify($auth_status) {
- $_identify_msg = GameConst::getIdentifyMsg();
- $_identify_select = Filter::radioCommon($_identify_msg, 'is_auth', $auth_status);
- return $_identify_select;
- }
- }
|