Move remainder of usable actions to respective controller classes

This commit is contained in:
Kijin Sung 2022-12-27 22:43:39 +09:00
parent 01b408fb6b
commit 7f0753454f
7 changed files with 310 additions and 330 deletions

View file

@ -1,13 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* adminAdminView class
* Admin view class of admin module
*
* @author NAVER (developers@xpressengine.com)
* @package /modules/admin
* @version 0.1
* Preserved for backward compatibility
*
* @deprecated
*/
class AdminAdminView extends Admin
{
@ -30,17 +26,4 @@ class AdminAdminView extends Admin
{
throw new Rhymix\Framework\Exceptions\FeatureDisabled;
}
/**
* Display Admin Menu Configuration(settings) page
*/
public function dispAdminSetup()
{
$oMenuAdminModel = getAdminModel('menu');
$output = $oMenuAdminModel->getMenuByTitle($this->getAdminMenuName());
Context::set('menu_srl', $output->menu_srl);
Context::set('menu_title', $output->title);
$this->setTemplateFile('admin_setup');
}
}