theme_list.php

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