* Add search tab.

This commit is contained in:
caoyanyi
2023-02-14 14:01:16 +08:00
parent 00e30d7351
commit dff2e8a00c
8 changed files with 42 additions and 5 deletions

View File

@@ -83,15 +83,16 @@ class dev extends control
}
/**
* LangItem.
* Lang item.
*
* @param string $type
* @access public
* @return void
*/
public function langItem()
public function langItem($type = 'common')
{
$this->view->title = $this->lang->langItem;
$this->view->title = $this->lang->langItem;
$this->view->type = $type;
$this->display();
}
}