aliapp.account.class.php 651 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. defined('IN_IA') or exit('Access Denied');
  7. class AliappAccount extends WeAccount {
  8. protected $tablename = 'account_aliapp';
  9. protected $menuFrame = 'wxapp';
  10. protected $type = ACCOUNT_TYPE_ALIAPP_NORMAL;
  11. protected $typeName = '支付宝小程序';
  12. protected $typeTempalte = '-aliapp';
  13. protected $typeSign = ALIAPP_TYPE_SIGN;
  14. protected $supportVersion = STATUS_ON;
  15. protected function getAccountInfo($uniacid) {
  16. return table('account_aliapp')->getAccount($uniacid);
  17. }
  18. }