From dfa3bffd39ccdd3755e4e4ec4615850619cd29ff Mon Sep 17 00:00:00 2001 From: liyang Date: Thu, 21 Nov 2024 11:25:25 +0800 Subject: [PATCH] * [task#132866] add inactive control method. --- module/system/control.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/module/system/control.php b/module/system/control.php index 3bbbfece49..96454e8a8e 100644 --- a/module/system/control.php +++ b/module/system/control.php @@ -645,4 +645,16 @@ class system extends control $this->loadModel('action')->create('system', $id, 'active'); $this->sendSuccess(array('load' => true)); } + + /** + * 下架应用。 + * Inactive application. + * + * @param int $id + * @access public + * @return void + */ + public function inactive(int $id) + { + } }