From 458b50cde2f67f0694692d13a7fd673b45d6edeb Mon Sep 17 00:00:00 2001 From: liyang Date: Wed, 7 Aug 2024 09:16:42 +0800 Subject: [PATCH] + [task#125044 start, 0.5h. 1.5h] Add instruction method. --- module/zanode/control.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/module/zanode/control.php b/module/zanode/control.php index 76f9e68a3c..d79cbcfe71 100644 --- a/module/zanode/control.php +++ b/module/zanode/control.php @@ -11,6 +11,17 @@ */ class zanode extends control { + /** + * 执行节点介绍页。 + * View ZenAgent Node instruction. + * + * @access public + * @return void + */ + public function instruction() + { + $this->display(); + } /** * 执行节点列表页。 @@ -57,6 +68,7 @@ class zanode extends control $this->view->title = $this->lang->zanode->common; $this->view->users = $this->loadModel('user')->getPairs('noletter|nodeleted'); $this->view->nodeList = $this->zanode->getListByQuery($browseType, $queryID, $orderBy, $pager); + $this->view->hiddenHost = $this->zahost->hiddenHost(); $this->view->pager = $pager; $this->view->param = $param; $this->view->orderBy = $orderBy;