Index.php 731 B

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