issue 151 add filebox manager view

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9025 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2011-09-05 07:20:41 +00:00
parent 34cbe1eb82
commit b4cc9a1345
5 changed files with 113 additions and 4 deletions

View file

@ -210,5 +210,16 @@
// Set a template file
$this->setTemplateFile('module_langcode');
}
function dispModuleAdminFileBox(){
$oModuleModel = &getModel('module');
$output = $oModuleModel->getModuleFileBoxList();
$page = Context::get('page');
$page = $page?$page:1;
Context::set('filebox_list', $output->data);
Context::set('page_navigation', $output->page_navigation);
Context::set('page', $page);
$this->setTemplateFile('adminFileBox');
}
}
?>