theme_list.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class Theme_List extends oxAdminList
00010 {
00011 
00017     public function render()
00018     {
00019         $oTheme = oxNew('oxtheme');
00020 
00021         parent::render();
00022 
00023         // assign our list
00024         $this->_aViewData['mylist'] = $oTheme->getList();
00025 
00026         return 'theme_list.tpl';
00027     }
00028 }