From 66eaf312902478a43e1c847408a829f76acbc91f Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 6 Nov 2024 17:15:12 +0800 Subject: [PATCH] 1 --- webapp/controller/ToolsController.class.php | 34 --------------------- 1 file changed, 34 deletions(-) diff --git a/webapp/controller/ToolsController.class.php b/webapp/controller/ToolsController.class.php index b8d08769..6e978f35 100644 --- a/webapp/controller/ToolsController.class.php +++ b/webapp/controller/ToolsController.class.php @@ -522,40 +522,6 @@ class ToolsController extends BaseController { BattleBoxService::set($phase, $day); } - public function includeAndroid() - { - mt\Robot::traverse(function ($meta) { - $row = SqlHelper::ormSelectOne - ($this->_getMysql(''), - 't_user', - array( - 'name' => $meta['name'] - ) - ); - if ($row) { - echo json_encode($meta); - } - return true; - }); - } - - public function excludeAndroid() - { - mt\Robot::traverse(function ($meta) { - $row = SqlHelper::ormSelectOne - ($this->_getMysql(''), - 't_user', - array( - 'name' => $meta['name'] - ) - ); - if (!$row) { - echo json_encode($meta); - } - return true; - }); - } - public function genAndroid() { mt\Robot::traverse(function ($meta) {