OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
theme_list.php
Go to the documentation of this file.
1 <?php
2 
9 class Theme_List extends oxAdminList
10 {
16  public function render()
17  {
18  $oTheme = oxNew('oxtheme');
19 
21 
22  // assign our list
23  $this->_aViewData['mylist'] = $oTheme->getList();
24 
25  return 'theme_list.tpl';
26  }
27 }