Issue 2380: Admin UI Refactoring - Advanced - Layouts

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11610 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-10-08 05:48:02 +00:00
parent 2d4b235146
commit b8eb83cd94
16 changed files with 219 additions and 1313 deletions

View file

@ -240,38 +240,6 @@
$this->setTemplateFile('layout_modify');
}
/**
* The first page of the layout admin
* @deprecated
* @return void|Object (void : success, Object : fail)
**/
function dispLayoutAdminContent() {
$path = Context::get('path');
if (!$path) return $this->stop('msg_invalid_request');
$oLayoutModel = &getModel('layout');
$columnList = array('layout_srl', 'layout', 'module_srl', 'title', 'regdate');
$layout_list = $oLayoutModel->getLayoutList(0, 'P', $columnList);
Context::set('layout_list', $layout_list);
$this->setTemplateFile('index');
}
/**
* The first page of the mobile layout admin
* @deprecated
* @return void
**/
function dispLayoutAdminMobileContent() {
$oLayoutModel = &getModel('layout');
$columnList = array('layout_srl', 'layout', 'module_srl', 'title', 'regdate');
$layout_list = $oLayoutModel->getLayoutList(0, 'M', $columnList);
Context::set('layout_list', $layout_list);
$this->setTemplateFile('mindex');
}
/**
* Edit layout codes
* @return void