123456789101112131415161718192021222324252627 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | tester 体验者设置
- |--------------------------------------------------------------------------
- */
- namespace Wechat_component\Applet\Src;
- use Dever;
- use Token\Lib\Wechat;
- use Wechat_component\Src\Core;
- class Tester extends Core
- {
- public $table = 'wechat_component_applet/tester';
- public function handle($oauth, $info, $delete, $user, $wechat)
- {
- $oauth['wechatid'] = $info['value'];
- if ($delete == true) {
- $oauth['method'] = 'applet_untester';
- } else {
- $oauth['method'] = 'applet_tester';
- }
- return $oauth;
- }
- }
|